|
|
|
@ -181,7 +181,7 @@
|
|
|
|
|
<el-form-item label="费用" prop="freightMark"> |
|
|
|
|
<el-checkbox-group v-model="form.freightMark" @change="handleCheckedCitiesChange"> |
|
|
|
|
<el-checkbox |
|
|
|
|
style="min-width: 16%; margin-bottom: 3%" |
|
|
|
|
style="min-width: 16%; margin-bottom: 8px;" |
|
|
|
|
v-for="(item, index) in clientType" |
|
|
|
|
:key="item.dictKey" |
|
|
|
|
:label="item.dictKey" |
|
|
|
@ -229,6 +229,14 @@
|
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-text |
|
|
|
|
v-if="slotProps.scope.row.isZero === '1'" |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
|
icon="el-icon-delete" |
|
|
|
|
@click="handleZeroOrder(slotProps.scope.row)" |
|
|
|
|
>操作</el-text |
|
|
|
|
> |
|
|
|
|
<el-text |
|
|
|
|
type="primary" |
|
|
|
|
text |
|
|
|
@ -455,6 +463,10 @@
|
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
<el-dialog v-model="dialogFormZeroOrderVisible" title="修改零担" style="width: 50%"> |
|
|
|
|
|
|
|
|
|
</el-dialog> |
|
|
|
|
</basic-container> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
@ -494,6 +506,7 @@ export default {
|
|
|
|
|
], |
|
|
|
|
dialogFormVisible: false, |
|
|
|
|
dialogFormOrderVisible: false, //订单详细 |
|
|
|
|
dialogFormZeroOrderVisible: false, // 零担订单弹出层 |
|
|
|
|
height: 0, |
|
|
|
|
// 弹框标题 |
|
|
|
|
title: '', |
|
|
|
@ -2420,6 +2433,12 @@ export default {
|
|
|
|
|
this.selectionClear(); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
// 修改零担订单 |
|
|
|
|
handleZeroOrder(row){ |
|
|
|
|
console.log('row :>> ', row); |
|
|
|
|
console.log('row.isZero', row.isZero) |
|
|
|
|
this.dialogFormZeroOrderVisible = true |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
clientType(newVal, oldVal) { |
|
|
|
@ -2463,4 +2482,8 @@ export default {
|
|
|
|
|
:deep(.el-date-editor.el-input, .el-date-editor.el-input__wrapper) { |
|
|
|
|
height: 100% !important; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-checkbox { |
|
|
|
|
margin-left: 0; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|