|
@@ -30,7 +30,6 @@
|
|
<el-col :span="6">
|
|
<el-col :span="6">
|
|
<el-form-item
|
|
<el-form-item
|
|
label="客户名称"
|
|
label="客户名称"
|
|
- :rules="[{ required: true, message: '', trigger: 'blur' }]"
|
|
|
|
prop="fCorpid"
|
|
prop="fCorpid"
|
|
>
|
|
>
|
|
<el-select
|
|
<el-select
|
|
@@ -718,17 +717,11 @@ export default {
|
|
fDestportid: this.form.fDestportid,
|
|
fDestportid: this.form.fDestportid,
|
|
fLoadportid: this.form.fLoadportid,
|
|
fLoadportid: this.form.fLoadportid,
|
|
fStatementNo: this.form.fStatementNo,
|
|
fStatementNo: this.form.fStatementNo,
|
|
|
|
+ fMblno:this.form.tMblno,
|
|
fFromDate: this.form.date ? this.form.date[0] : null,
|
|
fFromDate: this.form.date ? this.form.date[0] : null,
|
|
fToDate: this.form.date ? this.form.date[1] : null,
|
|
fToDate: this.form.date ? this.form.date[1] : null,
|
|
};
|
|
};
|
|
- this.$refs["form"].validate((valid) => {
|
|
|
|
- if (valid) {
|
|
|
|
- this.$refs.addOrUpdate.init(data, this.tableData);
|
|
|
|
- } else {
|
|
|
|
- this.$message.error("请选择客户名称");
|
|
|
|
- return false;
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
|
|
+ this.$refs.addOrUpdate.init(data, this.tableData);
|
|
},
|
|
},
|
|
imporData(rows) {
|
|
imporData(rows) {
|
|
this.tableData = this.tableData.concat(rows);
|
|
this.tableData = this.tableData.concat(rows);
|