|
@@ -402,7 +402,7 @@
|
|
|
size="small"
|
|
|
/>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="录入时间" align="center" width="150">
|
|
|
+ <el-table-column label="录入时间" align="center" width="195">
|
|
|
<el-input
|
|
|
slot-scope="scope"
|
|
|
v-model="scope.row.createTime"
|
|
@@ -1000,6 +1000,17 @@ export default {
|
|
|
getAgreement(this.approval.billId).then(response => {
|
|
|
this.deptName = response.data.dept?response.data.dept.deptName: ''
|
|
|
this.form = response.data.tWarehouseAgreement
|
|
|
+ this.TFformdata(response.data.tWarehouseAgreement);
|
|
|
+ if (response.data.tWarehouseAgreement.tPackages) {
|
|
|
+ // this.form.tPackages = this.form.tPackages
|
|
|
+ // .replace(/\[|]/g, "")
|
|
|
+ // .replace(/\"/g, "")
|
|
|
+ // .split(",");
|
|
|
+ this.form.tPackages = JSON.parse(this.form.tPackages)
|
|
|
+ }
|
|
|
+ if (response.data.tWarehouseAgreement.fWarehouseid) {
|
|
|
+ this.form.fWarehouseid = JSON.parse(this.form.fWarehouseid)
|
|
|
+ }
|
|
|
//--
|
|
|
// this.fMblnoOptions = response.data.corps
|
|
|
this.agreementitemsList = response.data.tWarehouseAgreementitems
|