修改意见

master
xy 1 year ago
parent 58d00da7db
commit ec4477b200

@ -367,7 +367,7 @@ export default {
},
{
label: "区域",
prop: 'villate',
prop: 'village',
width: 200,
customFn: row => {
return (

@ -81,6 +81,17 @@
</div>
</template>
<template #remark>
<div class="xy-table-item" >
<div class="xy-table-item-label">
备注
</div>
<div class="xy-table-item-content">
<el-input v-model="form.remark" style="width: 300px;" type="textarea" :autosize="{ minRows: 2 }"></el-input>
</div>
</div>
</template>
<template v-slot:upload_list>
<div class="xy-table-item">
<div class="xy-table-item-label">
@ -179,6 +190,7 @@
lat: "",
lng: "",
type: "",
remark: "",
upload_list: [],
created_at:''
},

@ -545,6 +545,20 @@ export default {
minWidth: 220,
align:'left'
},
{
label: "区域",
prop: 'village',
width: 200,
customFn: row => {
return (
<span>
{
row.customer?.village?.reduce((pre, cur, index) => (pre + (index === 0 ? "" : "/") + cur.village_name),"")
}
</span>
)
}
},
{
prop:'customer.area_detail.value',
label:'区',

@ -145,6 +145,20 @@ export default {
align:'left',
prop:'product.name'
},
{
label: "区域",
prop: 'village',
width: 200,
customFn: row => {
return (
<span>
{
row.customer?.village?.reduce((pre, cur, index) => (pre + (index === 0 ? "" : "/") + cur.village_name),"")
}
</span>
)
}
},
{
label:'上门区域',
width: 200,

Loading…
Cancel
Save