Commit 2071d271 authored by youjie's avatar youjie

no message

parent 0e0c6f16
...@@ -363,8 +363,23 @@ ...@@ -363,8 +363,23 @@
}else{ }else{
this.titleName = '编辑' this.titleName = '编辑'
// this.form = {
// Id: row.Id,
// Name: row.Name,
// Address: row.Address,
// LinkMan: row.LinkMan,
// LinkTel: row.LinkTel,
// LinkDuties: row.LinkDuties,
// FinanceMan: row.FinanceMan,
// FinanceTel: row.FinanceTel,
// FinanceDuties: row.FinanceDuties,
// GroundingType: row.GroundingType,
// ContractUrl: row.ContractUrl,
// LineInfo: row.LineInfo,
// LineId: row.LineInfo.split(',').map(x=>{ return Number(x) }),
// }
this.form = JSON.parse(JSON.stringify(row)) this.form = JSON.parse(JSON.stringify(row))
this.form.LineId = row.LineInfo.split(',').map(x=>{ return Number(x) }) this.$set(this.form, 'LineId', row.LineInfo.split(',').map(x=>{ return Number(x) }))
} }
this.showVisible = true this.showVisible = true
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment