|
@@ -1808,11 +1808,15 @@ export default {
|
|
|
},
|
|
|
//选择地址客户带出地址
|
|
|
withAddress(row, scope) {
|
|
|
- this.tableData[scope.$index].contacts = row.attn
|
|
|
- this.tableData[scope.$index].tel = row.tel
|
|
|
- this.tableData[scope.$index].address = row.storageAddr
|
|
|
+ this.$set(this.tableData[scope.$index],'contacts',row.attn)
|
|
|
+ this.$set(this.tableData[scope.$index],'tel',row.tel)
|
|
|
+ this.$set(this.tableData[scope.$index],'address',row.storageAddr)
|
|
|
+ // this.tableData[scope.$index].contacts = row.attn
|
|
|
+ // this.tableData[scope.$index].tel = row.tel
|
|
|
+ // this.tableData[scope.$index].address = row.storageAddr
|
|
|
if (!scope.row.key) scope.row.key = 0
|
|
|
- this.tableData[scope.$index].corpName = row.cname
|
|
|
+ this.$set(this.tableData[scope.$index],'corpName',row.cname)
|
|
|
+ // this.tableData[scope.$index].corpName = row.cname
|
|
|
if (row.belongtoarea) {
|
|
|
addressList(row.belongtoarea.split(',')[0]).then(res => {
|
|
|
this.tableData[scope.$index].region = [res.data.data.provinceCode, res.data.data.parentId, res.data.data.districtCode]
|