|
|
@ -378,6 +378,7 @@ export default {
|
|
|
|
/**纸制提交 */
|
|
|
|
/**纸制提交 */
|
|
|
|
submitForm() {
|
|
|
|
submitForm() {
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
|
|
|
|
if (valid) {
|
|
|
|
let data = {
|
|
|
|
let data = {
|
|
|
|
courierCompanies: this.form.courierCompanies,
|
|
|
|
courierCompanies: this.form.courierCompanies,
|
|
|
|
id: this.form.id,
|
|
|
|
id: this.form.id,
|
|
|
@ -387,6 +388,9 @@ export default {
|
|
|
|
recordsId: this.form.recordsId,
|
|
|
|
recordsId: this.form.recordsId,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
this.subIssue(data);
|
|
|
|
this.subIssue(data);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
//发放
|
|
|
|
//发放
|
|
|
|