|
@@ -43,8 +43,8 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="24" :lg="24">
|
|
|
- <el-form-item label="备注" prop="remark">
|
|
|
- <el-input v-model="mainForm.remark" placeholder="请输入备注"></el-input>
|
|
|
+ <el-form-item label="备注" prop="headerRemark">
|
|
|
+ <el-input v-model="mainForm.headerheaderRemark" placeholder="请输入备注"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="8" :lg="8">
|
|
@@ -85,9 +85,9 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="已申请数量" prop="alreadyInvoiceNum" min-width="100" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column align="center" label="未申请数量" prop="canApply" min-width="100" show-overflow-tooltip> </el-table-column>
|
|
|
- <el-table-column align="center" label="备注" prop="remark" min-width="160" show-overflow-tooltip>
|
|
|
+ <el-table-column align="center" label="备注" prop="headerRemark" min-width="160" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input v-model="scope.row.remark" size="small"></el-input>
|
|
|
+ <el-input v-model="scope.row.headerRemark" size="small"></el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="操作" width="100" fixed="right">
|
|
@@ -222,7 +222,7 @@ export default {
|
|
|
date: '',
|
|
|
jxsNum: '',
|
|
|
jxsName: '',
|
|
|
- remark: '',
|
|
|
+ headerRemark: '',
|
|
|
createMan: '',
|
|
|
},
|
|
|
mainFormRules: {
|
|
@@ -279,7 +279,7 @@ export default {
|
|
|
this.mainForm.jxsNum = data.customerNumber;
|
|
|
this.mainForm.jxsName = data.customerName;
|
|
|
this.mainForm.createMan = data.createBy;
|
|
|
- this.mainForm.remark = data.remark;
|
|
|
+ this.mainForm.headerRemark = data.headerRemark;
|
|
|
this.screenForm.warehouse = data.correspondId;
|
|
|
this.fileList = data.fileUrl ? [{
|
|
|
url: data.fileUrl,
|
|
@@ -482,7 +482,8 @@ export default {
|
|
|
let correspondName = this.warehouseList[findElem(this.warehouseList, 'id', this.screenForm.warehouse)].name;
|
|
|
let params = {
|
|
|
id: this.listItem ? this.listItem.id : '',
|
|
|
- remark: this.mainForm.remark,
|
|
|
+ headerRemark: this.mainForm.headerRemark,
|
|
|
+ remark:this.mainForm.headerRemark,
|
|
|
fileUrl: this.fileList && this.fileList.length > 0 ? this.fileList[0].url : '',
|
|
|
fileName: this.fileList && this.fileList.length > 0 ? this.fileList[0].name : '',
|
|
|
// orderType: 1, // 1零售单 2家用工程 3商用工程
|