'123'
This commit is contained in:
parent
84081de6e6
commit
0b80976496
|
@ -869,6 +869,85 @@ export default {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
/** 清空表单 */
|
||||||
|
reset(){
|
||||||
|
this.form = {
|
||||||
|
quotJsqrCode: null,
|
||||||
|
quotCode: null,
|
||||||
|
quotJsxzStandard: null,
|
||||||
|
quotJsxzChapter: null,
|
||||||
|
quotJsxzGroup: null,
|
||||||
|
quotCustomerName: null,
|
||||||
|
quotSalesmanName: null,
|
||||||
|
quotProject: null,
|
||||||
|
quotJsxzTechnicalRequirement: null,
|
||||||
|
|
||||||
|
quotJsqrTlApprovalStatus: null,
|
||||||
|
quotJsqrTlOperateState: null,
|
||||||
|
quotJsqrTlCheckState: null,
|
||||||
|
quotJsqrTlLeaderState: null,
|
||||||
|
quotJsqrTlRemark: null,
|
||||||
|
quotJsqrTlOperateUserName: null,
|
||||||
|
quotJsqrTlOperateTime: null,
|
||||||
|
quotJsqrTlCheckUserName: null,
|
||||||
|
quotJsqrTlCheckTime: null,
|
||||||
|
quotJsqrTlCheckRemark: null,
|
||||||
|
quotJsqrTlLeaderUserName: null,
|
||||||
|
quotJsqrTlLeaderTime: null,
|
||||||
|
quotJsqrTlLeaderRemark: null,
|
||||||
|
|
||||||
|
quotJsqrDyApprovalStatus: null,
|
||||||
|
quotJsqrDyOperateState: null,
|
||||||
|
quotJsqrDyCheckState: null,
|
||||||
|
quotJsqrDyLeaderState: null,
|
||||||
|
quotJsqrDyRemark: null,
|
||||||
|
quotJsqrDyOperateUserName: null,
|
||||||
|
quotJsqrDyOperateTime: null,
|
||||||
|
quotJsqrDyCheckUserName: null,
|
||||||
|
quotJsqrDyCheckTime: null,
|
||||||
|
quotJsqrDyCheckRemark: null,
|
||||||
|
quotJsqrDyLeaderUserName: null,
|
||||||
|
quotJsqrDyLeaderTime: null,
|
||||||
|
quotJsqrDyLeaderRemark: null,
|
||||||
|
|
||||||
|
quotJsqrZyApprovalStatus: null,
|
||||||
|
quotJsqrZyOperateState: null,
|
||||||
|
quotJsqrZyCheckState: null,
|
||||||
|
quotJsqrZyLeaderState: null,
|
||||||
|
quotJsqrZyRemark: null,
|
||||||
|
quotJsqrZyOperateUserName: null,
|
||||||
|
quotJsqrZyOperateTime: null,
|
||||||
|
quotJsqrZyCheckUserName: null,
|
||||||
|
quotJsqrZyCheckTime: null,
|
||||||
|
quotJsqrZyCheckRemark: null,
|
||||||
|
quotJsqrZyLeaderUserName: null,
|
||||||
|
quotJsqrZyLeaderTime: null,
|
||||||
|
quotJsqrZyLeaderRemark: null,
|
||||||
|
|
||||||
|
quotJsqrQtApprovalStatus: null,
|
||||||
|
quotJsqrQtOperateState: null,
|
||||||
|
quotJsqrQtCheckState: null,
|
||||||
|
quotJsqrQtLeaderState: null,
|
||||||
|
quotJsqrQtRemark: null,
|
||||||
|
quotJsqrQtOperateUserName: null,
|
||||||
|
quotJsqrQtOperateTime: null,
|
||||||
|
quotJsqrQtCheckUserName: null,
|
||||||
|
quotJsqrQtCheckTime: null,
|
||||||
|
quotJsqrQtCheckRemark: null,
|
||||||
|
quotJsqrQtLeaderUserName: null,
|
||||||
|
quotJsqrQtLeaderTime: null,
|
||||||
|
quotJsqrQtLeaderRemark: null
|
||||||
|
};
|
||||||
|
|
||||||
|
this.quotJsgfFileList = [];
|
||||||
|
this.quotJsqrFileList = [];
|
||||||
|
|
||||||
|
this.showTl = false;
|
||||||
|
this.showDy = false;
|
||||||
|
this.showZy = false;
|
||||||
|
this.showQt = false;
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
/** 查询报价单-技术确认单列表 */
|
/** 查询报价单-技术确认单列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
@ -902,6 +981,7 @@ export default {
|
||||||
|
|
||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
const quotJsqrId = row.quotJsqrId || this.ids
|
const quotJsqrId = row.quotJsqrId || this.ids
|
||||||
getJsqr(quotJsqrId).then(response => {
|
getJsqr(quotJsqrId).then(response => {
|
||||||
this.form = response.data;
|
this.form = response.data;
|
||||||
|
|
Loading…
Reference in New Issue