|
|
|
@ -216,7 +216,7 @@ |
|
|
|
</el-tab-pane> |
|
|
|
</el-tabs> |
|
|
|
<el-dialog |
|
|
|
width="800px" v-drag |
|
|
|
width="600px" v-drag |
|
|
|
:title="'处理信息'" |
|
|
|
:close-on-click-modal="false" |
|
|
|
:visible.sync="modelFlag"> |
|
|
|
@ -224,36 +224,36 @@ |
|
|
|
<el-row :gutter="15" v-if="this.currentRow.statusCode==='50'"> |
|
|
|
<el-col :span="6"> |
|
|
|
<el-form-item label="IFS PR编号" > |
|
|
|
<el-input v-model="modelData.prNo" readonly></el-input> |
|
|
|
<el-input v-model="modelData.prNo" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="18"> |
|
|
|
<el-form-item label="备注" > |
|
|
|
<el-input v-model="modelData.remark1" readonly></el-input> |
|
|
|
<el-input v-model="modelData.remark1" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row :gutter="15" style="margin-top: 20px" v-if="this.currentRow.statusCode==='60'"> |
|
|
|
<el-col :span="6"> |
|
|
|
<el-form-item label="采购订单号" > |
|
|
|
<el-input v-model="modelData.poNo" readonly ></el-input> |
|
|
|
<el-input v-model="modelData.poNo" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6"> |
|
|
|
<el-form-item label="厂商名称" > |
|
|
|
<el-input v-model="modelData.supplierName" readonly></el-input> |
|
|
|
<el-input v-model="modelData.supplierName" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="6"> |
|
|
|
<el-form-item label="总成本(元)" > |
|
|
|
<el-input v-model="modelData.allCost" type="number" readonly></el-input> |
|
|
|
<el-input v-model="modelData.allCost" type="number" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row :gutter="15" style="margin-top: 0px"> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item label="备注" > |
|
|
|
<el-input v-model="modelData.remark2" readonly></el-input> |
|
|
|
<el-input v-model="modelData.remark2" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
@ -1003,7 +1003,7 @@ |
|
|
|
}) |
|
|
|
return false; |
|
|
|
} |
|
|
|
this.modalData={ |
|
|
|
this.modelData={ |
|
|
|
site:this.currentRow.site, |
|
|
|
applyNo:this.currentRow.applyNo, |
|
|
|
prNo:this.currentRow.prNo, |
|
|
|
@ -1021,15 +1021,15 @@ |
|
|
|
cancelButtonText:'取消', |
|
|
|
type:'warning' |
|
|
|
}).then(()=>{ |
|
|
|
saveHeaderMessage(this.modalData).then(({data}) => { |
|
|
|
saveHeaderMessage(this.modelData).then(({data}) => { |
|
|
|
if (data && data.code == 0) { |
|
|
|
this.modelFlag=false; |
|
|
|
this.currentRow.prNo=this.modalData.prNo |
|
|
|
this.currentRow.remark1=this.modalData.remark1 |
|
|
|
this.currentRow.poNo=this.modalData.poNo |
|
|
|
this.currentRow.supplierName=this.modalData.supplierName |
|
|
|
this.currentRow.allCost=this.modalData.allCost |
|
|
|
this.currentRow.remark2=this.modalData.remark2 |
|
|
|
this.currentRow.prNo=this.modelData.prNo |
|
|
|
this.currentRow.remark1=this.modelData.remark1 |
|
|
|
this.currentRow.poNo=this.modelData.poNo |
|
|
|
this.currentRow.supplierName=this.modelData.supplierName |
|
|
|
this.currentRow.allCost=this.modelData.allCost |
|
|
|
this.currentRow.remark2=this.modelData.remark2 |
|
|
|
this.$message({ |
|
|
|
message: '操作成功', |
|
|
|
type: 'success', |
|
|
|
|