|
|
|
@ -294,30 +294,75 @@
|
|
|
|
|
</el-row> |
|
|
|
|
<el-dialog v-model="dialogFormCustomer" title="修改客户信息"> |
|
|
|
|
<el-form :model="formCustomer"> |
|
|
|
|
<el-form-item label="姓名" :label-width="formLabelWidth"> |
|
|
|
|
<el-input v-model="formCustomer.consignee" autocomplete="off"/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="电话" :label-width="formLabelWidth"> |
|
|
|
|
<el-input v-model="formCustomer.deliveryPhone" autocomplete="off"/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="地址" :label-width="formLabelWidth"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="formCustomer.deliveryAddress" |
|
|
|
|
:rows="2" |
|
|
|
|
type="textarea" |
|
|
|
|
placeholder="请填写地址" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="加急" :label-width="formLabelWidth"> |
|
|
|
|
<el-radio-group v-model="formCustomer.isUrgent" > |
|
|
|
|
<el-radio |
|
|
|
|
:label="'1'" :value="'1'"> 否 |
|
|
|
|
</el-radio> |
|
|
|
|
<el-radio |
|
|
|
|
:label="'2'" :value="'2'" > 是 |
|
|
|
|
</el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-row> |
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="姓名" :label-width="formLabelWidth"> |
|
|
|
|
<el-input v-model="formCustomer.consignee" autocomplete="off"/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="是否加急" :label-width="formLabelWidth"> |
|
|
|
|
<el-radio-group v-model="formCustomer.isUrgent" > |
|
|
|
|
<el-radio |
|
|
|
|
:label="'1'" :value="'1'"> 否 |
|
|
|
|
</el-radio> |
|
|
|
|
<el-radio |
|
|
|
|
:label="'2'" :value="'2'" > 是 |
|
|
|
|
</el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="电话" :label-width="formLabelWidth"> |
|
|
|
|
<el-input v-model="formCustomer.deliveryPhone" autocomplete="off"/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="配送方式" :label-width="formLabelWidth"> |
|
|
|
|
<!-- v-for="item in this.deliveryWayData"--> |
|
|
|
|
<el-radio-group v-model="formCustomer.deliveryWay"> |
|
|
|
|
<el-radio :label="'10'" |
|
|
|
|
:value="'10'">送货  |
|
|
|
|
</el-radio> |
|
|
|
|
<el-radio :label="'20'" |
|
|
|
|
:value="'20'">送货上楼 |
|
|
|
|
</el-radio> |
|
|
|
|
<el-radio :label="'30'" |
|
|
|
|
:value="'30'">送装一体 |
|
|
|
|
</el-radio> |
|
|
|
|
<el-radio :label="'40'" |
|
|
|
|
:value="'40'">装 |
|
|
|
|
</el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="地址" :label-width="formLabelWidth"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="formCustomer.deliveryAddress" |
|
|
|
|
:rows="1" |
|
|
|
|
type="textarea" |
|
|
|
|
placeholder="请填写地址" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<!-- <el-col :span="10">--> |
|
|
|
|
<!-- <el-form-item label="其他费用" :label-width="formLabelWidth">--> |
|
|
|
|
<!-- <el-input v-model="formCustomer.otherFee" autocomplete="off"/>--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
<!-- </el-col>--> |
|
|
|
|
</el-row> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-form-item label="加急:" prop="serveType" >--> |
|
|
|
|
<!-- <!– v-for="item in this.deliveryWayData"–>--> |
|
|
|
|
<!-- <el-radio-group v-model="form.isUrgent" v-for="item in this.whetherData">--> |
|
|
|
@ -530,6 +575,12 @@
|
|
|
|
|
search: true, |
|
|
|
|
width: '100px' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '收货单位', |
|
|
|
|
prop: 'receivingUnit', |
|
|
|
|
search: true, |
|
|
|
|
width: '100px' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '订单自编号', |
|
|
|
|
prop: 'orderIds', |
|
|
|
@ -611,7 +662,6 @@
|
|
|
|
|
search: true |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
label: '收货电话', |
|
|
|
|
prop: 'deliveryPhone', |
|
|
|
@ -1254,6 +1304,8 @@
|
|
|
|
|
this.formCustomer.deliveryPhone = row.deliveryPhone; |
|
|
|
|
this.formCustomer.deliveryAddress = row.deliveryAddress; |
|
|
|
|
this.formCustomer.remarks = row.remarks; |
|
|
|
|
this.formCustomer.otherFee = row.otherFee; |
|
|
|
|
this.formCustomer.deliveryWay = row.deliveryWay; |
|
|
|
|
if (row.isUrgentName === '否' || row.isUrgentName === '1'){ |
|
|
|
|
this.formCustomer.isUrgent = '1' |
|
|
|
|
}else { |
|
|
|
|