Compare commits

...

12 Commits

Author SHA1 Message Date
105269a62e 调整收费套餐页面 2024-12-03 10:04:11 +08:00
a65e254c17 调整收费套餐页面 2024-12-02 20:59:12 +08:00
094294af4a 调整收费套餐页面 2024-11-28 17:56:21 +08:00
6cd03185f5 运营区不分页 2024-11-13 10:50:55 +08:00
e592878ab6 调整 2024-11-12 16:42:53 +08:00
6ae2be2f19 Merge branch 'refs/heads/master' into tx 2024-11-08 17:42:02 +08:00
tx
23862df83a 细节优化 2024-11-08 17:41:31 +08:00
4c73c90241 Merge branch 'refs/heads/tx' 2024-11-08 17:29:59 +08:00
tx
b38b35154f 细节修改 2024-11-08 17:28:51 +08:00
1a87471bc6 Merge branch 'refs/heads/tx'
# Conflicts:
#	src/views/system/device/index.vue
2024-11-08 17:26:58 +08:00
tx
f7c300ab8f 新需求添加 2024-11-08 09:54:02 +08:00
tx
03aca53ea4 111 2024-11-08 09:38:40 +08:00
16 changed files with 404 additions and 156 deletions

View File

@ -5,10 +5,10 @@ VUE_APP_TITLE = 共享电动车管理系统
ENV = 'development' ENV = 'development'
# 共享电动车管理系统/开发环境 # 共享电动车管理系统/开发环境
VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api' # VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
# VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api' # VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
# VUE_APP_BASE_API = 'http://localhost:8088' VUE_APP_BASE_API = 'http://localhost:8088'
# 路由懒加载 # 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true VUE_CLI_BABEL_TRANSPILE_MODULES = true

View File

@ -5,7 +5,7 @@ NODE_ENV = production
# 测试环境配置 # 测试环境配置
ENV = 'staging' ENV = 'staging'
# VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api' VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api' # VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
# 共享电动车管理系统/测试环境 # 共享电动车管理系统/测试环境
# VUE_APP_BASE_API = 'https://dianche.chuantewulian.cn/stage-api' # VUE_APP_BASE_API = 'https://dianche.chuantewulian.cn/stage-api'

View File

@ -236,6 +236,10 @@ export default {
classify: null, classify: null,
title: null, title: null,
}, },
queryParams2: {
pageNum: 1,
pageSize: 999
},
// //
form: {}, form: {},
// //
@ -321,7 +325,7 @@ export default {
/** 新增按钮操作 */ /** 新增按钮操作 */
handleAdd() { handleAdd() {
this.reset(); this.reset();
listArea(this.queryParams).then(response => { listArea(this.queryParams2).then(response => {
this.areaOptions = response.rows; this.areaOptions = response.rows;
this.open = true; this.open = true;
this.title = "添加文章"; this.title = "添加文章";

View File

@ -359,7 +359,7 @@
import { updateWithdraw } from '@/api/system/withdraw' import { updateWithdraw } from '@/api/system/withdraw'
import { MessageBox } from 'element-ui' import { MessageBox } from 'element-ui'
import { listDept2 } from '@/api/system/dept' import { listDept2 } from '@/api/system/dept'
export default { export default {
name: "Order", name: "Order",
@ -495,7 +495,9 @@ export default {
console.log("当前用户信息:",this.$store.state.user.name) console.log("当前用户信息:",this.$store.state.user.name)
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.queryParams.statusList = '7'; this.queryParams.statusList = '7';
this.getDeptList() if(this.userName === 'admin'){
this.getDeptList();
}
this.reset(); this.reset();
this.reset2(); this.reset2();
this.getList(); this.getList();

View File

@ -50,25 +50,28 @@
<!-- {{detail.limitRefundReason | defaultValue}}--> <!-- {{detail.limitRefundReason | defaultValue}}-->
<!-- </el-descriptions-item>--> <!-- </el-descriptions-item>-->
<el-descriptions-item label="服务费"> <el-descriptions-item label="服务费">
{{ detail.platformServiceFee }}% {{ detail.platformServiceFee }}%
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="充值手续费"> <el-descriptions-item label="充值手续费">
{{ detail.handlingCharge }}% {{ detail.handlingCharge }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="提现手续费"> <el-descriptions-item label="提现手续费" v-if="detail.handlingChargeType==1">
{{ detail.withdrawHandlingCharge }}% {{ detail.withdrawHandlingCharge }}
</el-descriptions-item>
<el-descriptions-item label="提现手续费" v-else>
每笔 {{ detail.withdrawHandlingCharge }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="已提现"> <el-descriptions-item label="已提现">
{{ deptInfo.withdraw }} {{ deptInfo.withdraw }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="待结算"> <el-descriptions-item label="待结算">
{{ deptInfo.settlementAmount }} {{ deptInfo.settlementAmount }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="营收"> <el-descriptions-item label="营收">
{{ deptInfo.todayIncome }} | {{ deptInfo.totalIncome }} {{ deptInfo.todayIncome }} | {{ deptInfo.totalIncome }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="订单数"> <el-descriptions-item label="订单数">
{{ deptInfo.todayOrderCount}} | {{ deptInfo.totalOrderCount }} {{ deptInfo.todayOrderCount }} | {{ deptInfo.totalOrderCount }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="订单金额"> <el-descriptions-item label="订单金额">
{{ deptInfo.todayOrderFee }} | {{ deptInfo.totalOrderFee }} {{ deptInfo.todayOrderFee }} | {{ deptInfo.totalOrderFee }}
@ -83,47 +86,112 @@
</div> </div>
<el-tabs> <el-tabs>
<el-tab-pane label="车辆信息"> <el-tab-pane label="车辆信息(单位:辆)">
<el-descriptions :column="3"> <el-descriptions :column="3">
<el-descriptions-item label="车辆"> <el-descriptions-item label="总数">
{{ deptInfo.vehicleVo.offlineDevices.length}} | {{ deptInfo.vehicleVo.allNum}} <span
:style="{ color: deptInfo.vehicleVo.allOfflineNum > 0 ? 'red' : 'gray' }">
{{ deptInfo.vehicleVo.allOfflineNum }}
</span> |
<span >
{{ deptInfo.vehicleVo.allNum }}
</span>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="仓库"> <el-descriptions-item label="仓库">
{{deptInfo.offlineStatusCount.inStashNum }} | {{ deptInfo.vehicleVo.inStashNum }} <span
</el-descriptions-item> :style="{ color: deptInfo.vehicleVo.allOfflineNum-deptInfo.vehicleVo.offlineNum > 0 ? 'red' : 'gray' }">
<el-descriptions-item label=" 投放" > {{ deptInfo.vehicleVo.allOfflineNum-deptInfo.vehicleVo.offlineNum }}
<template> </span> |
<!-- <pre></pre> --> <span
<div @click="noline">{{ deptInfo.vehicleVo.offlineDevices.length-deptInfo.offlineStatusCount.inStashNum}} | {{ deptInfo.vehicleVo.inOperation}}</div> >
</template> {{ deptInfo.vehicleVo.inStashNum }}
</span>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="投放">
<div @click="noline">
<span
:style="{ color: (deptInfo.vehicleVo.offlineDevices.length - deptInfo.offlineStatusCount.inStashNum) > 0 ? 'red' : 'gray' }">
{{ deptInfo.vehicleVo.offlineDevices.length -
deptInfo.offlineStatusCount.inStashNum }}
</span> |
<span
>
{{ deptInfo.vehicleVo.inOperation }}
</span>
</div>
</el-descriptions-item>
<el-descriptions-item label="订单"> <el-descriptions-item label="订单">
{{ deptInfo.offlineStatusCount.ridingNum +deptInfo.offlineStatusCount.temporarilyLockNum}} | {{deptInfo.vehicleVo.ridingNum+ deptInfo.vehicleVo.temporarilyLockNum}} <span
:style="{ color: (deptInfo.offlineStatusCount.ridingNum + deptInfo.offlineStatusCount.temporarilyLockNum) > 0 ? 'red' : 'gray' }">
{{ deptInfo.offlineStatusCount.ridingNum +
deptInfo.offlineStatusCount.temporarilyLockNum }}
</span> |
<span
>
{{ deptInfo.vehicleVo.ridingNum + deptInfo.vehicleVo.temporarilyLockNum
}}
</span>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="骑行"> <el-descriptions-item label="骑行">
{{ deptInfo.offlineStatusCount.ridingNum }} | {{ deptInfo.vehicleVo.ridingNum }} <span
:style="{ color: deptInfo.offlineStatusCount.ridingNum > 0 ? 'red' : 'gray' }">
{{ deptInfo.offlineStatusCount.ridingNum }}
</span> |
<span >
{{ deptInfo.vehicleVo.ridingNum }}
</span>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="锁车 ">
{{ deptInfo.offlineStatusCount.temporarilyLockNum }} | {{ deptInfo.vehicleVo.temporarilyLockNum}} <el-descriptions-item label="锁车">
<span
:style="{ color: deptInfo.offlineStatusCount.temporarilyLockNum > 0 ? 'red' : 'gray' }">
{{ deptInfo.offlineStatusCount.temporarilyLockNum }}
</span> |
<span
>
{{ deptInfo.vehicleVo.temporarilyLockNum }}
</span>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="待租"> <el-descriptions-item label="待租">
{{ deptInfo.offlineStatusCount.normalNum }} | {{ deptInfo.vehicleVo.normalNum}} <span
:style="{ color: deptInfo.offlineStatusCount.normalNum > 0 ? 'red' : 'gray' }">
{{ deptInfo.offlineStatusCount.normalNum }}
</span> |
<span >
{{ deptInfo.vehicleVo.normalNum }}
</span>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label=" 预约">
{{ deptInfo.offlineStatusCount.inAppointmentNum }} | {{ deptInfo.vehicleVo.inAppointmentNum }} <el-descriptions-item label="预约">
<span
:style="{ color: deptInfo.offlineStatusCount.inAppointmentNum > 0 ? 'red' : 'gray' }">
{{ deptInfo.offlineStatusCount.inAppointmentNum }}
</span> |
<span
>
{{ deptInfo.vehicleVo.inAppointmentNum }}
</span>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="禁用 ">
{{ deptInfo.offlineStatusCount.offlineNum }} | {{ deptInfo.vehicleVo.disabledNum}} <el-descriptions-item label="禁用">
<span
:style="{ color: deptInfo.offlineStatusCount.offlineNum > 0 ? 'red' : 'gray' }">
{{ deptInfo.offlineStatusCount.offlineNum }}
</span> |
<span
>
{{ deptInfo.vehicleVo.disabledNum }}
</span>
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>
</el-card> </el-card>
@ -153,7 +221,7 @@
<!-- <recharge :query="{deptId: detail.deptId}" :view="views.user"/> --> <!-- <recharge :query="{deptId: detail.deptId}" :view="views.user"/> -->
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="车辆列表" lazy name="车辆列表"> <el-tab-pane label="车辆列表" lazy name="车辆列表">
<device ref="deviceComponent" :deptId="detail.deptId" v-if="detail.deptId" /> <device ref="deviceComponent" :deptId="detail.deptId" v-if="detail.deptId" />
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="订单" lazy> <el-tab-pane label="订单" lazy>
@ -179,6 +247,9 @@
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="管理员列表" lazy>
<user :deptId="detail.deptId" v-if="detail.deptId" />
</el-tab-pane>
</el-tabs> </el-tabs>
</el-card> </el-card>
@ -186,7 +257,7 @@
<el-empty v-else description="用户不存在" /> <el-empty v-else description="用户不存在" />
<!--用户设置--> <!--用户设置-->
<user-config-dialog :show.sync="showConfigDialog" :deptId="detail.deptId" v-if="detail.deptId" /> <user-config-dialog :show.sync="showConfigDialog" :deptId="detail.deptId" v-if="detail.deptId" />
</div> </div>
</template> </template>
@ -224,7 +295,7 @@ import refund from "@/views/system/refund/index";
import audit from "@/views/system/audit/index"; import audit from "@/views/system/audit/index";
import flow from "@/views/system/flow/index"; import flow from "@/views/system/flow/index";
import withdraw from "@/views/system/withdrawAudit/index"; import withdraw from "@/views/system/withdrawAudit/index";
import user from "@/views/system/user/index";
// import Withdraw from '@/views/system/withdraw/index.vue' // import Withdraw from '@/views/system/withdraw/index.vue'
// import RealName from '@/views/ss/realName/index.vue' // import RealName from '@/views/ss/realName/index.vue'
@ -236,7 +307,7 @@ import withdraw from "@/views/system/withdrawAudit/index";
export default { export default {
name: 'User/:deptId', name: 'User/:deptId',
mixins: [$view, $serviceType], mixins: [$view, $serviceType],
components: { Area, Fees, Model, device, order, partner, refund, audit, flow, withdraw, BooleanTag, Recharge, UserRechargeReport, UserConfigDialog, UserAccount, UserDevice, LineChart }, components: { Area, Fees,user, Model, device, order, partner, refund, audit, flow, withdraw, BooleanTag, Recharge, UserRechargeReport, UserConfigDialog, UserAccount, UserDevice, LineChart },
dicts: ['sys_normal_disable', 'sys_yes_no'], dicts: ['sys_normal_disable', 'sys_yes_no'],
computed: { computed: {
SmUserType() { SmUserType() {
@ -246,7 +317,7 @@ export default {
return (type) => { return (type) => {
return type === '2' ? '元' : '%'; return type === '2' ? '元' : '%';
} }
} }
}, },
data() { data() {
return { return {
@ -254,7 +325,7 @@ export default {
loading: false, loading: false,
showConfigDialog: false, showConfigDialog: false,
deptInfo: {}, deptInfo: {},
defaultValue:0, defaultValue: 0,
activeTab: '运营区', // activeTab: '运营区', //
} }
}, },
@ -283,46 +354,47 @@ export default {
getDeptInfo(this.$route.params.deptId).then(response => { getDeptInfo(this.$route.params.deptId).then(response => {
this.deptInfo = response.data; this.deptInfo = response.data;
// 线 // 线
this.deptInfo.offlineStatusCount = { this.deptInfo.offlineStatusCount = {
inStashNum: 0, // inStashNum: 0, //
normalNum: 0, // normalNum: 0, //
inAppointmentNum: 0, // inAppointmentNum: 0, //
ridingNum: 0, // ridingNum: 0, //
temporarilyLockNum: 0, // temporarilyLockNum: 0, //
dispatchingNum: 0, // dispatchingNum: 0, //
offlineNum: 0 // 线 offlineNum: 0 // 线
}; };
// status // status
this.deptInfo.vehicleVo.offlineDevices.forEach(device => { this.deptInfo.vehicleVo.offlineDevices.forEach(device => {
switch (device.status) { switch (device.status) {
case 0: case '0':
this.deptInfo.offlineStatusCount.inStashNum += 1; this.deptInfo.offlineStatusCount.inStashNum += 1;
break; break;
case 1: case '1':
this.deptInfo.offlineStatusCount.normalNum += 1; this.deptInfo.offlineStatusCount.normalNum += 1;
break; break;
case 2: case '2':
this.deptInfo.offlineStatusCount.inAppointmentNum += 1; this.deptInfo.offlineStatusCount.inAppointmentNum += 1;
break; break;
case 3: case '3':
this.deptInfo.offlineStatusCount.ridingNum += 1; this.deptInfo.offlineStatusCount.ridingNum += 1;
break; break;
case 4: case '4':
this.deptInfo.offlineStatusCount.temporarilyLockNum += 1; this.deptInfo.offlineStatusCount.temporarilyLockNum += 1;
break; break;
case 6: case '6':
this.deptInfo.offlineStatusCount.dispatchingNum += 1; this.deptInfo.offlineStatusCount.dispatchingNum += 1;
break; break;
case 8: case '8':
this.deptInfo.offlineStatusCount.offlineNum += 1; this.deptInfo.offlineStatusCount.offlineNum += 1;
break; break;
} }
}); });
}).finally(() => { // console.log(this.deptInfo.vehicleVo,'this.deptInfo.offlineStatusCountthis.deptInfo.offlineStatusCount');
// }).finally(() => {
}); //
});
}, },
} }
} }

View File

@ -1037,6 +1037,11 @@ export default {
hardwareVersion: null, hardwareVersion: null,
deptId:this.deptId deptId:this.deptId
}, },
//
queryParams2: {
pageNum: 1,
pageSize: 999
},
// //
columns: [ columns: [
{ key: 0, label: `代理商`, visible: true }, { key: 0, label: `代理商`, visible: true },
@ -1117,7 +1122,7 @@ export default {
listDept2({ status: "0", pageNum: 1, pageSize: 999 }).then((response) => { listDept2({ status: "0", pageNum: 1, pageSize: 999 }).then((response) => {
this.deptOptions = response.rows; this.deptOptions = response.rows;
}); });
listArea(this.queryParams).then((response) => { listArea(this.queryParams2).then((response) => {
this.areaOptions = response.rows; this.areaOptions = response.rows;
}); });
} }
@ -1448,7 +1453,7 @@ export default {
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;
}); });
listModel(this.queryParams).then((response) => { listModel(this.queryParams2).then((response) => {
this.modelOptions = response.rows; this.modelOptions = response.rows;
}); });
}, },
@ -1495,10 +1500,10 @@ export default {
); );
} }
// console.log(33333333333) // console.log(33333333333)
listModel(this.queryParams).then((response) => { listModel(this.queryParams2).then((response) => {
this.modelOptions = response.rows; this.modelOptions = response.rows;
}); });
listArea(this.queryParams).then((response) => { listArea(this.queryParams2).then((response) => {
this.areaOptions = response.rows; this.areaOptions = response.rows;
}); });
}, },
@ -1513,13 +1518,9 @@ export default {
} }
); );
} }
// console.log(88888888888888); listArea(this.queryParams2).then((response) => {
// listModel(this.queryParams).then((response) => { this.areaOptions = response.rows;
// this.modelOptions = response.rows; });
// });
// listArea(this.queryParams).then((response) => {
// this.areaOptions = response.rows;
// });
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
@ -1542,6 +1543,11 @@ export default {
this.reset(); this.reset();
this.open = true; this.open = true;
this.title = "添加设备"; this.title = "添加设备";
this.$nextTick(() => {
if(this.deptId){
this.form.deptId=this.deptId
}
})
}, },
/** 详情按钮 */ /** 详情按钮 */
handleView(row) { handleView(row) {
@ -1607,20 +1613,20 @@ export default {
const deviceId = row.deviceId || this.ids; const deviceId = row.deviceId || this.ids;
getDevice(deviceId).then((response) => { getDevice(deviceId).then((response) => {
this.form = response.data; this.form = response.data;
console.log("111111111111111111",this.form) // console.log("111111111111111111",this.form)
selectAreaListByDeptId(response.data.deptId).then((response) => { // selectAreaListByDeptId(response.data.deptId).then((response) => {
this.areaOptions = response.data.areaList; // this.areaOptions = response.data.areaList;
let areaOptions = response.data.areaList; // let areaOptions = response.data.areaList;
areaOptions.length > 0 // areaOptions.length > 0
? (this.form.areaId = areaOptions[0].areaId) // ? (this.form.areaId = areaOptions[0].areaId)
: (this.form.areaId = null); // : (this.form.areaId = null);
this.modelOptions = response.data.modelList; // this.modelOptions = response.data.modelList;
let modelOptions = response.data.modelList; // let modelOptions = response.data.modelList;
console.log("==============",this.modelOptions.length) // console.log("==============",this.modelOptions.length)
modelOptions.length > 0 // modelOptions.length > 0
? (this.form.modelId = modelOptions[0].modelId) // ? (this.form.modelId = modelOptions[0].modelId)
: (this.form.modelId = null); // : (this.form.modelId = null);
}); // });
this.open = true; this.open = true;
this.title = "修改设备"; this.title = "修改设备";
}); });

View File

@ -231,7 +231,7 @@
<span></span> <span></span>
</el-col> </el-col>
<el-col :span="2"> <el-col :span="2">
<el-input v-model="interval.start" :placeholder="'请输入'" /> <el-input v-model="interval.start" :placeholder="'请输入'" :disabled="true"/>
</el-col> </el-col>
<el-col :span="0.5" style="line-height: 32px;"> <el-col :span="0.5" style="line-height: 32px;">
~ ~
@ -267,7 +267,7 @@
<span>大于</span> <span>大于</span>
</el-col> </el-col>
<el-col :span="2"> <el-col :span="2">
<el-input placeholder="请输入" v-model="more.start" /> <el-input placeholder="请输入" v-model="more.start" disabled/>
</el-col> </el-col>
<el-col :span="3" style="line-height: 32px;"> <el-col :span="3" style="line-height: 32px;">
{{ timeUnit }} 之后 {{ timeUnit }} 之后
@ -356,6 +356,23 @@ export default {
'form.deptId': function(deptId) { 'form.deptId': function(deptId) {
this.getAreaListByDeptId(deptId); this.getAreaListByDeptId(deptId);
}, },
'rule': {
handler(newVal) {
newVal.forEach((interval, index) => {
//
if (index > 0) {
interval.start = newVal[index - 1].end || ''; // start
}
});
// more.start end
if (newVal.length > 0) {
this.more.start = newVal[newVal.length - 1].end || ''; // more.start
}
},
deep: true, //
immediate: true //
}
}, },
props: { props: {
// id // id
@ -387,6 +404,11 @@ export default {
name: null, name: null,
status: null, status: null,
}, },
//
queryParams2: {
pageNum: 1,
pageSize: 999
},
time1:'24', time1:'24',
time2:'', time2:'',
form: { form: {
@ -413,7 +435,7 @@ export default {
startingTime: '1', startingTime: '1',
timeoutPrice: '5', timeoutPrice: '5',
enablelnterval: false, enablelnterval: false,
rule: [{ start: '', end: '', eachUnit: '', fee: '' }], rule: [{ start: '0', end: '', eachUnit: '', fee: '' }],
more: { start: '', end: '9999', eachUnit: '', fee: '' }, more: { start: '', end: '9999', eachUnit: '', fee: '' },
timeUnit: '分钟', timeUnit: '分钟',
rules: { rules: {
@ -462,14 +484,6 @@ export default {
deptId: [ deptId: [
{ required: true, message: '请选择代理商', trigger: 'change' }, { required: true, message: '请选择代理商', trigger: 'change' },
] ]
// startingTime: [
// { required: true, message: '', trigger: 'blur' },
// { pattern: /^\d+$/, message: '', trigger: 'blur' }
// ],
// timeoutTime: [
// { required: true, message: '', trigger: 'blur' },
// { pattern: /^\d+$/, message: '', trigger: 'blur' }
// ],
}, },
}; };
}, },
@ -482,7 +496,7 @@ export default {
this.deptOptions = response.rows; this.deptOptions = response.rows;
}); });
} }
listArea(this.queryParams).then(response => { listArea(this.queryParams2).then(response => {
this.areaOptions = response.rows; this.areaOptions = response.rows;
}); });
}, },
@ -502,7 +516,7 @@ export default {
} }
}); });
}else{ }else{
listArea(this.queryParams).then(response => { listArea(this.queryParams2).then(response => {
this.areaOptions = response.rows; this.areaOptions = response.rows;
}); });
} }
@ -523,8 +537,105 @@ export default {
this.addInterval(); this.addInterval();
} }
}, },
validateMore() {
if(this.form.ridingRule == 2) {
const { start, end, eachUnit, fee } = this.more;
//
if (start === '' || end === '') {
this.$modal.msgError('区间计费:大于分钟数不能为空');
return false;
}
//
if (eachUnit === '') {
this.$modal.msgError('区间计费:大于每分钟数不能为空');
return false;
}
if (fee === '') {
this.$modal.msgError('区间计费:大于分钟之后的金额不能为空');
return false;
}
//
if (isNaN(Number(start)) || isNaN(Number(end))) {
this.$modal.msgError('区间计费:大于分钟数必须是数值');
return false;
}
//
if (isNaN(Number(eachUnit))) {
this.$modal.msgError('区间计费:大于每分钟数必须是数值');
return false;
}
if (isNaN(Number(fee))) {
this.$modal.msgError('区间计费:大于分钟之后的金额必须是数值');
return false;
}
return true; //
}
return true;
},
validateRules() {
if(this.form.ridingRule == 2 && this.rule.length > 0){
for (let i = 0; i < this.rule.length; i++) {
const { start, end, eachUnit, fee } = this.rule[i];
if (start === '' || end === '') {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的开始或结束值不能为空`);
return false;
}
if (eachUnit === '') {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的分钟数不能为空`);
return false;
}
if (fee === '') {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的金额不能为空`);
return false;
}
//
if (isNaN(Number(start)) || isNaN(Number(end))) {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的开始和结束值必须是数值`);
return false;
}
if (isNaN(Number(eachUnit))) {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的分钟数必须是数值`);
return false;
}
if (isNaN(Number(fee))) {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的金额必须是数值`);
return false;
}
if (parseFloat(start) >= parseFloat(end)) {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的结束值必须小于开始值`);
return false;
}
}
return true; //
}else {
return true; //
}
},
addInterval() { addInterval() {
this.rule.push({ start: '', end: '', eachUnit: '', fee: '' }); // this.rule.push({ start: '', end: '', eachUnit: '', fee: '' });
const lastInterval = this.rule[this.rule.length - 1];
const newInterval = { start: '', end: '', eachUnit: '', fee: '' };
// start end
if (lastInterval && lastInterval.end) {
newInterval.start = lastInterval.end;
}else{
this.$modal.msgError('请先设置上一条规则的结束值');
return;
}
this.rule.push(newInterval);
}, },
removeInterval(index) { removeInterval(index) {
this.rule.splice(index, 1); this.rule.splice(index, 1);
@ -558,8 +669,8 @@ export default {
areaId: null areaId: null
} }
this.enablelnterval = false, this.enablelnterval = false,
this.more = { start: '', end: '9999', eachUnit: '', fee: '' } this.more = { start: '', end: '9999', eachUnit: '', fee: '' }
this.rule = [{ start: '', end: '', eachUnit: '', fee: '' }], this.rule = [{ start: '0', end: '', eachUnit: '', fee: '' }],
this.timeoutTime = '60', this.timeoutTime = '60',
this.startingPrice = '5', this.startingPrice = '5',
this.startingTime = '60', this.startingTime = '60',
@ -583,6 +694,9 @@ export default {
this.reset(); this.reset();
this.open = true; this.open = true;
this.title = "添加收费方式"; this.title = "添加收费方式";
if(this.deptId){
this.form.deptId=this.deptId
}
}, },
handleUpdate(row) { handleUpdate(row) {
this.reset(); this.reset();
@ -625,6 +739,12 @@ export default {
}); });
}, },
submitForm() { submitForm() {
if(!this.validateRules()){
return
}
if (!this.validateMore()) {
return; //
}
this.$refs["form"].validate(valid => { this.$refs["form"].validate(valid => {
if (valid) { if (valid) {
// //
@ -637,7 +757,7 @@ export default {
return; return;
} }
// this.form.rule.push(this.more) // this.form.rule.push(this.more)
console.log(this.form,'mmmmmmmmmmmmm'); console.log(JSON.stringify(this.form),'mmmmmmmmmmmmm');
let data = { ...this.form }; // 使 this.form let data = { ...this.form }; // 使 this.form

View File

@ -114,7 +114,7 @@
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row> </el-row>
<el-table v-loading="loading" :data="flowList" @selection-change="handleSelectionChange"> <el-table v-loading="loading" :data="flowList" show-summary @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" /> <el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="流水id" align="center" prop="flowId" />--> <!-- <el-table-column label="流水id" align="center" prop="flowId" />-->
<el-table-column label="交易时间" align="center" prop="createTime" width="150"> <el-table-column label="交易时间" align="center" prop="createTime" width="150">
@ -131,7 +131,6 @@
</router-link> </router-link>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column label="关联订单号" width="180" align="center" prop="orderNo" />-->
<el-table-column align="center" label="关联订单号" width="180" prop="orderNo"> <el-table-column align="center" label="关联订单号" width="180" prop="orderNo">
<template slot-scope="scope"> <template slot-scope="scope">
<router-link :to="'/system/order/index/' + scope.row.orderNo" class="link-type"> <router-link :to="'/system/order/index/' + scope.row.orderNo" class="link-type">
@ -150,22 +149,8 @@
<dict-tag :options="dict.type.et_business_type" :value="scope.row.busType"/> <dict-tag :options="dict.type.et_business_type" :value="scope.row.busType"/>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column label="交易金额" align="center" prop="amount" :formatter="formatAmount"/>-->
<!-- <el-table-column label="支付手续费" align="center" prop="handlingCharge" :formatter="formatAmount"/>-->
<!-- <el-table-column label="平台服务费" align="center" prop="platformServiceFee" :formatter="formatAmount"/>-->
<el-table-column label="账变金额" align="left" prop="operatorDividend" :formatter="formatAmount2"/> <el-table-column label="账变金额" align="left" prop="operatorDividend" :formatter="formatAmount2"/>
<el-table-column label="代理商结余" align="center" prop="operatorBalance" :formatter="formatAmount"/> <el-table-column label="代理商结余" align="center" prop="operatorBalance" :formatter="formatAmount"/>
<!-- <el-table-column label="合伙人分账" align="center" prop="partnerDividend" :formatter="formatAmount"/>-->
<!-- <el-table-column label="支付方式" align="center" prop="payType">-->
<!-- <template slot-scope="scope">-->
<!-- <dict-tag :options="dict.type.et_pay_type" :value="scope.row.payType"/>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column label="状态" align="center" prop="status">-->
<!-- <template slot-scope="scope">-->
<!-- <dict-tag :options="dict.type.et_flow_status" :value="scope.row.status"/>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="车型" align="center" prop="model" /> <el-table-column label="车型" align="center" prop="model" />
</el-table> </el-table>
@ -316,7 +301,9 @@ export default {
this.getList(); this.getList();
this.getAreaList(); this.getAreaList();
this.getModelList(); this.getModelList();
this.getDeptList() if(this.userName === 'admin'){
this.getDeptList();
}
}, },
methods: { methods: {
getDeptList() { getDeptList() {

View File

@ -9,7 +9,7 @@
:label="item.deptName" :label="item.deptName"
:value="item.deptId" :value="item.deptId"
></el-option> ></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="车型" prop="model"> <el-form-item label="车型" prop="model">
<el-input <el-input
@ -251,6 +251,11 @@ export default {
operator: this.deptId, operator: this.deptId,
// operator:, // operator:,
}, },
//
queryParams2: {
pageNum: 1,
pageSize: 999
},
// //
form: { form: {
lowBatteryReminderSwitch: false, lowBatteryReminderSwitch: false,
@ -405,7 +410,7 @@ export default {
listFee(this.queryParams).then(response => { listFee(this.queryParams).then(response => {
this.ruleOptions = response.rows; this.ruleOptions = response.rows;
}); });
listArea(this.queryParams).then((response) => { listArea(this.queryParams2).then((response) => {
this.areaOptions = response.rows; this.areaOptions = response.rows;
}); });
}, },
@ -439,6 +444,9 @@ export default {
this.reset(); this.reset();
this.open = true; this.open = true;
this.title = "添加车辆型号"; this.title = "添加车辆型号";
if(this.deptId){
this.form.operator=this.deptId
}
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {

View File

@ -1112,13 +1112,39 @@ export default {
}, },
/** 提交退款 */ /** 提交退款 */
submitRefund(){ submitRefund(){
// console.log("=====submitRefund======="+this.form2) console.log("=====submitRefund======="+this.form2)
if(!this.refundValidate()){
return
}
refund(this.form2).then(response => { refund(this.form2).then(response => {
this.$modal.msgSuccess("退款成功"); this.$modal.msgSuccess("退款成功");
this.open2 = false; this.open2 = false;
this.getList(); this.getList();
}); });
}, },
refundValidate(){
//
const fields = [
this.form2.appointmentFee,
this.form2.ridingFee,
this.form2.dispatchFee,
this.form2.manageFee
];
//
const total = fields.reduce((sum, fee) => sum + (Number(fee) || 0), 0);
//
console.log('总和:', total);
// 0
if (total === 0) {
this.$modal.msgError("退款金额不能为0");
return false;
}
return true;
},
/** 提交按钮 */ /** 提交按钮 */
submitForm() { submitForm() {
this.$refs["form"].validate(valid => { this.$refs["form"].validate(valid => {

View File

@ -402,7 +402,9 @@ export default {
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.getList(); this.getList();
this.getDeptTree(); this.getDeptTree();
this.getDeptList() if(this.userName === 'admin'){
this.getDeptList();
}
this.getConfigKey("sys.user.initPassword").then(response => { this.getConfigKey("sys.user.initPassword").then(response => {
this.initPassword = response.msg; this.initPassword = response.msg;
}); });
@ -515,7 +517,11 @@ export default {
getUser().then(response => { getUser().then(response => {
this.postOptions = response.posts; this.postOptions = response.posts;
this.roleOptions = response.roles; this.roleOptions = response.roles;
this.areaOptions = response.areas; if (this.deptId) {
this.areaOptions = response.areas.filter(area => area.deptId === this.deptId);
} else {
this.areaOptions = response.areas;
}
this.open = true; this.open = true;
this.title = "添加合伙人"; this.title = "添加合伙人";
this.form.password = this.initPassword; this.form.password = this.initPassword;

View File

@ -176,7 +176,9 @@ export default {
created() { created() {
this.getList(); this.getList();
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.getDeptList() if(this.userName === 'admin'){
this.getDeptList();
}
}, },
methods: { methods: {
getDeptList() { getDeptList() {

View File

@ -42,7 +42,7 @@
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row> </el-row>
<el-table v-loading="loading" :data="refundList" show-summary="total" @selection-change="handleSelectionChange"> <el-table v-loading="loading" :data="refundList" show-summary @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" /> <el-table-column type="selection" width="55" align="center" />
<el-table-column label="时间" align="center" prop="day" /> <el-table-column label="时间" align="center" prop="day" />
<el-table-column label="代理商" align="center" prop="deptName" /> <el-table-column label="代理商" align="center" prop="deptName" />

View File

@ -185,10 +185,12 @@ export default {
created() { created() {
console.log("当前用户信息:",this.$store.state.user.name) console.log("当前用户信息:",this.$store.state.user.name)
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.getDeptList() if(this.userName === 'admin'){
this.getDeptList();
}
this.getList(); this.getList();
this.getAreaList(); this.getAreaList();
}, },
methods: { methods: {
getDeptList() { getDeptList() {

View File

@ -265,6 +265,13 @@ export default {
return this.userName === 'admin' ? 21 : 24; return this.userName === 'admin' ? 21 : 24;
} }
}, },
props: {
// id
deptId: {
type: Number,
default: null,
}
},
data() { data() {
return { return {
options: [], options: [],
@ -333,9 +340,13 @@ export default {
userName: undefined, userName: undefined,
phonenumber: undefined, phonenumber: undefined,
status: undefined, status: undefined,
deptId: undefined, deptId: this.deptId,
typeList: "00,03" typeList: "00,03"
}, },
queryParams2: {
pageNum: 1,
pageSize: 999
},
// //
columns: [ columns: [
{ key: 0, label: `用户编号`, visible: true }, { key: 0, label: `用户编号`, visible: true },
@ -403,7 +414,7 @@ export default {
copy(row) { copy(row) {
const account = `账号:${row.userName}`; // const account = `账号:${row.userName}`; //
const password = `密码:${row.initPassword}`; // const password = `密码:${row.initPassword}`; //
const fixedUrl = "https://dche.ccttiot.com/"; // const fixedUrl = "https://www.baidu.com/"; //
// //
const textToCopy = `${fixedUrl}\n${account}\n${password}`; const textToCopy = `${fixedUrl}\n${account}\n${password}`;
@ -510,7 +521,7 @@ export default {
this.loading = false; this.loading = false;
} }
); );
listArea(this.queryParams).then(response => { listArea(this.queryParams2).then(response => {
this.areaOptions = response.rows; this.areaOptions = response.rows;
}); });
}, },
@ -518,6 +529,7 @@ export default {
getDeptTree() { getDeptTree() {
deptTreeSelect().then(response => { deptTreeSelect().then(response => {
this.deptOptions = response.data; this.deptOptions = response.data;
}); });
}, },
// //
@ -611,6 +623,10 @@ export default {
this.open = true; this.open = true;
this.title = "添加用户"; this.title = "添加用户";
this.form.password = this.initPassword; this.form.password = this.initPassword;
if(this.deptId){
this.form.deptId=this.deptId
}
}); });
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */

View File

@ -285,12 +285,11 @@ export default {
return `${actual} `; return `${actual} `;
} }
}, },
data() { data() {
return { return {
// //
loading: true, loading: true,
deptOptions: [],
// //
ids: [], ids: [],
// //
@ -376,8 +375,6 @@ export default {
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.getList(); this.getList();
this.getAreaList(); this.getAreaList();
this.getDeptList()
if(this.userName === 'admin'){ if(this.userName === 'admin'){
listDept2({status: '0',pageNum:1,pageSize:999 }).then(response => { listDept2({status: '0',pageNum:1,pageSize:999 }).then(response => {
this.deptOptions = response.rows; this.deptOptions = response.rows;