master
xy 3 years ago
parent c374a7f434
commit d540d8cf96

@ -287,6 +287,13 @@
</div>
</div>
</template>
<template v-slot:extraFormBottom>
<div style="font-weight: 600;padding: 10px;">日志</div>
<xy-table :is-page="false" :height="240" style="width: 100%" :list="log" :table-item="logTable">
<template v-slot:btns><div></div></template>
</xy-table>
</template>
</xy-dialog>
</div>
</template>
@ -342,6 +349,27 @@ export default {
}
}
return {
//
log:[],
logTable:[
{
prop:'schedule_list.no',
label:'排班编号',
width:210
},
{
prop:'remark',
label:'备注',
minWidth:200,
align:'left'
},
{
prop:'created_at',
label:'时间',
width:180
}
],
flag:1,//step
id: '',
type: '',
@ -645,6 +673,7 @@ export default {
this.$integrateData(this.form, res)
this.form.customer_address_list = res.customer_address
this.form.area = [Number(res.city_id),Number(res.area_id),Number(res.street_id)]
this.log = res.schedule_list_update_logs
console.log(this.form)
},

Loading…
Cancel
Save