diff --git a/src/api/processManagement/processManagement.js b/src/api/processManagement/processManagement.js
index 3a0d090..9c2180d 100644
--- a/src/api/processManagement/processManagement.js
+++ b/src/api/processManagement/processManagement.js
@@ -84,5 +84,12 @@ export const getAuthorityFieldList = data => createAPI(`/plm/request/getAuthorit
*/
export const saveAuthorityList = data => createAPI(`/plm/request/saveAuthorityList`,'post',data)
+/**
+ * 修改节点
+ * @param data
+ * @returns {*}
+ */
+export const editNodeInfo = data => createAPI(`/plm/request/editNodeInfo`,'post',data)
+
diff --git a/src/api/quotation/quotationInformation.js b/src/api/quotation/quotationInformation.js
index 7ca3c83..b8a38c1 100644
--- a/src/api/quotation/quotationInformation.js
+++ b/src/api/quotation/quotationInformation.js
@@ -121,3 +121,9 @@ export const closeModalDeleteFile = data => createAPI(`/plm/quotationInformation
* @returns {*}
*/
export const searchQuotationByQuotationNo = data => createAPI(`/plm/quotationInformation/searchQuotationByQuotationNo`,'post',data)
+/**
+ * 提交
+ * @param data
+ * @returns {*}
+ */
+export const submitChange = data => createAPI(`/plm/quotationInformation/submitChange`,'post',data)
diff --git a/src/views/modules/changeManagement/changeRecord.vue b/src/views/modules/changeManagement/changeRecord.vue
index 3792112..5bb87ab 100644
--- a/src/views/modules/changeManagement/changeRecord.vue
+++ b/src/views/modules/changeManagement/changeRecord.vue
@@ -269,7 +269,9 @@
保存
关闭
- 提交
+ 同意
+ 驳回
+
@@ -364,7 +366,8 @@
保存
关闭
- 提交
+ 同意
+ 驳回
@@ -512,7 +515,8 @@
保存
关闭
- 提交
+ 同意
+ 驳回
@@ -564,7 +568,8 @@
保存
关闭
- 提交
+ 同意
+ 驳回
@@ -1001,6 +1006,7 @@
searchData: {
site: this.$store.state.user.site,
changeNo: '',
+ menuId: this.$route.meta.menuId,
page: 1,
limit: 10
},
@@ -1055,7 +1061,8 @@
nodeConclusion: '',
stepId: '',
rejectFlag: '',
- rejectStepId: ''
+ rejectStepId: '',
+ isReject: ''
},
costImpactData: {
site: this.$store.state.user.site,
@@ -2353,7 +2360,8 @@
nodeConclusion: '',
stepId: row.stepId,
rejectFlag: row.rejectFlag,
- rejectStepId: row.rejectStepId
+ rejectStepId: row.rejectStepId,
+ isReject: row.isReject
}
this.changeTitle = '变更申请-' + this.modalData.changeNo
// 查选择的ECN种类
@@ -2403,17 +2411,41 @@
this.submitModalFlag = true
},
- // 提交
- submitData () {
- if (this.modalData.nodeConclusion == null || this.modalData.nodeConclusion === '') {
- this.$message.warning('请选择节点结论!')
- return
- }
+ // 同意提交
+ agreeSubmit () {
this.$confirm(`是否确认提交?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
+ this.modalData.nodeConclusion = 'Y'
+ this.submitData()
+ })
+ },
+
+ // 驳回提交
+ rejectSubmit () {
+ this.$confirm(`是否确认驳回?`, '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning'
+ }).then(() => {
+ this.modalData.nodeConclusion = 'N'
+ this.submitData()
+ })
+ },
+
+ // 提交
+ submitData () {
+ // if (this.modalData.nodeConclusion == null || this.modalData.nodeConclusion === '') {
+ // this.$message.warning('请选择节点结论!')
+ // return
+ // }
+ // this.$confirm(`是否确认提交?`, '提示', {
+ // confirmButtonText: '确定',
+ // cancelButtonText: '取消',
+ // type: 'warning'
+ // }).then(() => {
let tempData = {
site: this.modalData.site,
userName: this.$store.state.user.name,
@@ -2433,7 +2465,7 @@
})
}
})
- })
+ // })
},
// 获取选择的ECN种类
diff --git a/src/views/modules/processManagement/processBindingInfo.vue b/src/views/modules/processManagement/processBindingInfo.vue
index e3adaf7..59c3ac0 100644
--- a/src/views/modules/processManagement/processBindingInfo.vue
+++ b/src/views/modules/processManagement/processBindingInfo.vue
@@ -171,9 +171,10 @@
fixed="right"
header-align="center"
align="center"
- width="130"
+ width="160"
label="操作">
+ 编辑
出口配置
权限配置
@@ -279,11 +280,6 @@
:value = "i.tableId">
-
-
-
-
-
+
+
+
+
+