Merge branch 'refs/heads/tx'

# Conflicts:
#	src/views/system/device/index.vue
This commit is contained in:
邱贞招 2024-11-08 17:26:58 +08:00
commit 1a87471bc6
6 changed files with 177 additions and 82 deletions

View File

@ -53,10 +53,10 @@
{{ 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="提现手续费">
{{ detail.withdrawHandlingCharge }}% {{ detail.withdrawHandlingCharge }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="已提现"> <el-descriptions-item label="已提现">
{{ deptInfo.withdraw }} {{ deptInfo.withdraw }}
@ -68,7 +68,7 @@
{{ 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 +83,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.offlineDevices.length > 0 ? 'red' : 'gray' }">
{{ deptInfo.vehicleVo.offlineDevices.length }}
</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.offlineStatusCount.inStashNum > 0 ? 'red' : 'gray' }">
<el-descriptions-item label=" 投放" > {{ deptInfo.offlineStatusCount.inStashNum }}
<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>
@ -179,6 +244,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>
@ -224,7 +292,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 +304,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() {
@ -254,7 +322,7 @@ export default {
loading: false, loading: false,
showConfigDialog: false, showConfigDialog: false,
deptInfo: {}, deptInfo: {},
defaultValue:0, defaultValue: 0,
activeTab: '运营区', // activeTab: '运营区', //
} }
}, },
@ -297,29 +365,30 @@ export default {
// 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;
} }
}); });
// console.log(this.deptInfo.vehicleVo,'this.deptInfo.offlineStatusCountthis.deptInfo.offlineStatusCount');
}).finally(() => { }).finally(() => {
// //
}); });

View File

@ -1498,6 +1498,9 @@ export default {
listModel(this.queryParams).then((response) => { listModel(this.queryParams).then((response) => {
this.modelOptions = response.rows; this.modelOptions = response.rows;
}); });
// listModel(this.queryParams).then((response) => {
// this.modelOptions = response.rows;
// });
listArea(this.queryParams).then((response) => { listArea(this.queryParams).then((response) => {
this.areaOptions = response.rows; this.areaOptions = response.rows;
}); });
@ -1513,13 +1516,9 @@ export default {
} }
); );
} }
// console.log(88888888888888); listArea(this.queryParams).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 +1541,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) {

View File

@ -583,6 +583,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();

View File

@ -439,6 +439,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

@ -515,7 +515,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;
if (this.deptId) {
this.areaOptions = response.areas.filter(area => area.deptId === this.deptId);
} else {
this.areaOptions = response.areas; 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

@ -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,7 +340,7 @@ 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"
}, },
// //
@ -518,6 +525,7 @@ export default {
getDeptTree() { getDeptTree() {
deptTreeSelect().then(response => { deptTreeSelect().then(response => {
this.deptOptions = response.data; this.deptOptions = response.data;
}); });
}, },
// //
@ -611,6 +619,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
}
}); });
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */