+
-
-
-
+
+
+
@@ -36,81 +36,113 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
+
+ v-model="dynamic.startIssueTime"
+ type="date"
+ size="mini"
+ :picker-options="pickerBeginDateBefore"
+ format="yyyy-MM-dd"
+ placeholder="选择开始时间">
+
+
+
+
+ v-model="dynamic.startXCXSSRQ"
+ type="date"
+ size="mini"
+ :picker-options="XCXSSRQDateBefore"
+ format="yyyy-MM-dd"
+ placeholder="选择开始时间">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ v-model="dynamic.startZCCSSRQ"
+ type="date"
+ size="mini"
+ :picker-options="ZCCSSRQDateBefore"
+ format="yyyy-MM-dd"
+ placeholder="选择开始时间">
+
+
+
+
+ style="margin: 6px 8px 0 0"
+ type="primary"
+ size="mini"
+ @click="searchBtnClick"
+ class="common-button-primary">
查询
+ style="margin: 6px 0 0 0"
+ size="mini"
+ @click="clearBtnClick"
+ class="common-button-primary">
清空
@@ -121,21 +153,21 @@
导出Excel
-
+
+ type="selection"
+ width="55"
+ align="center">
@@ -173,7 +205,9 @@
align="center">
- {{ scope.row.termsConditions.replace(/<[^>]+>/g, '').slice(0,20) + '...' }}
+ {{
+ scope.row.termsConditions.replace(/<[^>]+>/g, '').slice(0, 20) + '...'
+ }}
@@ -199,23 +233,23 @@
-
- 取消预警
-
-
-
+
+ 取消预警
+
+
+
handlePageChange('page', page)"
- @pageSizeChange="pageSize => handlePageSizeChange('pageSize', pageSize)">
+ style="position: static;"
+ :page="pageConfig.page"
+ :pageSize="pageConfig.pageSize"
+ :total="pageConfig.total"
+ autoSize
+ @pageChange="page => handlePageChange('page', page)"
+ @pageSizeChange="pageSize => handlePageSizeChange('pageSize', pageSize)">
@@ -241,7 +275,7 @@
title="条款内容"
:visible.sync="detailTextDialog"
width="50%">
-
+
@@ -261,13 +295,25 @@ export default {
selectedList: [],
exportName: '',
exportModelFlag: false,
- warningTableDatas:[],
+ warningTableDatas: [],
warningTableHeight: '',
applyArcticOptions: [], // 适用车型下拉框
isShowBtn: true,
activeName: "STANDARD", //tab 默认选中值
// 头部搜索框
dynamic: {
+ // 发布日期
+ startIssueTime: '',
+ endIssueTime: '',
+ // 实施日期
+ startSSRQ: '',
+ endSSRQ: '',
+ //新车型实施日期
+ startXCXSSRQ: '',
+ endXCXSSRQ: '',
+ // 在产车实施日期
+ startZCCSSRQ: '',
+ endZCCSSRQ: '',
//标准编号
standCode: "",
//标准名称
@@ -306,7 +352,75 @@ export default {
},
warningTableLoading: false,
// 记录当前分页器是哪个预警信息触发
- field: ''
+ field: '',
+
+ // 发布日期当前日期之前不可选择
+ pickerBeginDateBefore: {
+ disabledDate: (time) => {
+ let beginDateVal = this.dynamic.endIssueTime;
+ if (beginDateVal) {
+ return time.getTime() > beginDateVal;
+ }
+ }
+ },
+ pickerBeginDateAfter: {
+ disabledDate: (time) => {
+ let beginDateVal = this.dynamic.startIssueTime;
+ if (beginDateVal) {
+ return time.getTime() < beginDateVal;
+ }
+ }
+ },
+
+ SSRQDateBefore: {
+ disabledDate: (time) => {
+ let beginDateVal = this.dynamic.endSSRQ;
+ if (beginDateVal) {
+ return time.getTime() > beginDateVal;
+ }
+ }
+ },
+ SSRQDateAfter: {
+ disabledDate: (time) => {
+ let beginDateVal = this.dynamic.startSSRQ;
+ if (beginDateVal) {
+ return time.getTime() < beginDateVal;
+ }
+ }
+ },
+
+ XCXSSRQDateBefore: {
+ disabledDate: (time) => {
+ let beginDateVal = this.dynamic.endXCXSSRQ;
+ if (beginDateVal) {
+ return time.getTime() > beginDateVal;
+ }
+ }
+ },
+ XCXSSRQDateAfter: {
+ disabledDate: (time) => {
+ let beginDateVal = this.dynamic.startXCXSSRQ;
+ if (beginDateVal) {
+ return time.getTime() < beginDateVal;
+ }
+ }
+ },
+ ZCCSSRQDateBefore: {
+ disabledDate: (time) => {
+ let beginDateVal = this.dynamic.endZCCSSRQ;
+ if (beginDateVal) {
+ return time.getTime() > beginDateVal;
+ }
+ }
+ },
+ ZCCSSRQDateAfter: {
+ disabledDate: (time) => {
+ let beginDateVal = this.dynamic.startZCCSSRQ;
+ if (beginDateVal) {
+ return time.getTime() < beginDateVal;
+ }
+ }
+ },
};
},
methods: {
@@ -316,20 +430,20 @@ export default {
},
//确认导出
exportExcel() {
- console.log('293',this.selectedList)
+ console.log('293', this.selectedList)
const exportURL = interfaceUrl + 'sys/EarlyWarning/exportWarning?' +
- '&ids=' + this.selectedList.join(',') + '&exportName=' + this.exportName
+ '&ids=' + this.selectedList.join(',') + '&exportName=' + this.exportName
window.open(exportURL)
this.$message.success('导出信息成功')
this.exportModelFlag = false
},
- exportExcelBtn(){
- console.log('302',this.selectedList)
+ exportExcelBtn() {
+ console.log('302', this.selectedList)
this.exportName = ''
this.exportModelFlag = true
},
- selectChange(alldata){
- console.log('307',alldata)
+ selectChange(alldata) {
+ console.log('307', alldata)
this.selectedList = []
for (let i = 0; i < alldata.length; i++) {
this.selectedList.push(alldata[i]['id'])
@@ -499,17 +613,17 @@ export default {
//标准名称
standName: this.dynamic.standName,
//发布日期
- startIssueTime: this.dynamic.putTime[0],
- endIssueTime: this.dynamic.putTime[1],
+ startIssueTime: this.dynamic.startIssueTime ? this.$moment(this.dynamic.startIssueTime).format('YYYY-MM-DD') : '',
+ endIssueTime: this.dynamic.endIssueTime ? this.$moment(this.dynamic.endIssueTime).format('YYYY-MM-DD') : '',
//实施日期
- startSSRQ: this.dynamic.SSRQ[0],
- endSSRQ: this.dynamic.SSRQ[1],
+ startSSRQ: this.dynamic.startSSRQ ? this.$moment(this.dynamic.startSSRQ).format('YYYY-MM-DD') : '',
+ endSSRQ: this.dynamic.endSSRQ ? this.$moment(this.dynamic.endSSRQ).format('YYYY-MM-DD') : '',
//新车型实施日期
- startXCXSSRQ: this.dynamic.XCXSSRQ[0],
- endXCXSSRQ: this.dynamic.XCXSSRQ[1],
+ startXCXSSRQ: this.dynamic.startXCXSSRQ ? this.$moment(this.dynamic.startXCXSSRQ).format('YYYY-MM-DD') : '',
+ endXCXSSRQ: this.dynamic.endXCXSSRQ ? this.$moment(this.dynamic.endXCXSSRQ).format('YYYY-MM-DD') : '',
//在产车实施日期
- startZCCSSRQ: this.dynamic.ZCCSSRQ[0],
- endZCCSSRQ: this.dynamic.ZCCSSRQ[1],
+ startZCCSSRQ: this.dynamic.startZCCSSRQ ? this.$moment(this.dynamic.startZCCSSRQ).format('YYYY-MM-DD') : '',
+ endZCCSSRQ: this.dynamic.endZCCSSRQ ? this.$moment(this.dynamic.endZCCSSRQ).format('YYYY-MM-DD') : '',
//适用车型
applyType: this.dynamic.applyType
}, {
@@ -534,7 +648,7 @@ export default {
if ((this.warningTableDatas.length === 0 || this.warningTableDatas === []) && this.pageConfig.page !== 1) {
this.warningTableLoading = true
this.handlePageChange('page', 1)
- }else {
+ } else {
this.warningTableLoading = false
}
this.pageConfig.pageSize = res.data.size
@@ -573,16 +687,16 @@ export default {
roundButton: false
}).then(() => {
this.$http.get('sys/EarlyWarning/ChangePermissions', {
- id: row.id,
- }, {}, res => {
- if (res.ok === true) {
- this.pageConfig.page = 1
- this.pageConfig.newPolicyPage = 1
- this.pageConfig.oldPolicyPage = 1
- this.searchBtnClick()
- this.getEarlyDate()
- }
+ id: row.id,
+ }, {}, res => {
+ if (res.ok === true) {
+ this.pageConfig.page = 1
+ this.pageConfig.newPolicyPage = 1
+ this.pageConfig.oldPolicyPage = 1
+ this.searchBtnClick()
+ this.getEarlyDate()
}
+ }
)
}).catch(() => {
this.$message.warning('取消事件')
@@ -660,7 +774,7 @@ export default {
handlePageChange(field, page) {
this.pageConfig.page = page
this.searchBtnClick()
- console.log('735',this.warningTableDatas)
+ console.log('735', this.warningTableDatas)
this.activeName === 'STANDARD' ? this.getEarlyDate() : this.getPolicyDate()
this.field = field
},
@@ -670,7 +784,7 @@ export default {
// this.pageConfig[_pageSize] = pageSize
this.pageConfig.pageSize = pageSize
this.searchBtnClick()
- console.log('771',this.warningTableDatas)
+ console.log('771', this.warningTableDatas)
// this.activeName === 'STANDARD' ? this.getEarlyDate() : this.getPolicyDate()
// this.field = field
},
@@ -679,7 +793,7 @@ export default {
openDialog(text) {
this.detailText = text
this.detailTextDialog = true
- }
+ },
},
props: {
reload: {
@@ -870,6 +984,7 @@ export default {
.container {
height: calc(100% - 139px);
+
/deep/ .el-tabs__header {
height: 50px;
}
@@ -909,13 +1024,14 @@ export default {
align-items: center;
justify-content: center;
+
/deep/ .el-input__inner {
width: 185px;
}
.choose-time-area {
/deep/ .el-input__inner {
- width: 210px;
+ width: 180px;
}
}
@@ -1075,11 +1191,16 @@ export default {
margin: 24px 0;
}
}
+
.textDialog {
/deep/ .el-dialog__body {
height: 400px;
overflow-y: auto;
}
}
+
+ /deep/ .el-date-editor.el-input {
+ width: 180px;
+ }
}
diff --git a/src/pages/processCenter/pages/creatProcess/bzpg/step3.vue b/src/pages/processCenter/pages/creatProcess/bzpg/step3.vue
index 235b1ed63..96b83d483 100644
--- a/src/pages/processCenter/pages/creatProcess/bzpg/step3.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzpg/step3.vue
@@ -407,7 +407,6 @@ export default {
mounted() {
this.getData();
this.processTable();
- this.getProductData();
/**
* 获取项目群筛选项的值
*/
@@ -457,6 +456,7 @@ export default {
delete item.termsConditions
})
})
+ this.getProductData();
});
},
choiceZRRS(row, type, index) {
@@ -481,7 +481,7 @@ export default {
_this: this
}, res => {
this.productData = res.data.records;
- this.totalNo = res.data.count;
+ this.totalNo = res.data.total;
});
},
//查询项目按钮
@@ -533,6 +533,7 @@ export default {
this.projectModel = false;
},
okProject() {
+ console.log(this.selectProjectList);
if (this.selectProjectList.length) {
let addFlag = true;
let projectNumbers = "";
@@ -548,8 +549,10 @@ export default {
});
}
if (addFlag) {
- let projectNames = "", projectNumbers = "";
+ let projectNames = "", projectNumbers = "", projectIds = "";
this.selectProjectList.forEach(items => {
+ projectIds += items.id;
+ projectIds += ',';
projectNames += items.projectName;
projectNames += ",";
projectNumbers += items.projectNumber;
@@ -558,6 +561,7 @@ export default {
this.dataList.push({
projectName: projectNames,
projectNumber: projectNumbers,
+ projectIds: projectIds,
managementHostName: this.selectProjectList[0].managementHostName,
developmentHostName: this.selectProjectList[0].developmentHostName,
categoryName: this.selectProjectList[0].categoryName,
diff --git a/src/pages/processCenter/pages/creatProcess/bzpg/step5.vue b/src/pages/processCenter/pages/creatProcess/bzpg/step5.vue
index 82d9cc9c1..188779b39 100644
--- a/src/pages/processCenter/pages/creatProcess/bzpg/step5.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzpg/step5.vue
@@ -158,25 +158,26 @@
align="center">
+ min-width="180"
+ prop="projectGroup"
+ label="项目群">
@@ -187,6 +188,17 @@
align="center"
label="条款名称">
+
+
+
+ 查看条款内容
+
+
+
@@ -420,6 +432,15 @@
@checkedRole="checkedTransferRole"
:nodeList="nodeList"
>
+
+
+
+ 关闭
+
+
{
+ this.itermsConditionsTitle = res.data[0].termsConditions.replace(/''/g, '\'')
+ })
+ this.itermsConditionsFlag = true
+ },
//点击查看详情
handlePreview(item){
let routeUrl = this.$router.resolve({
@@ -722,44 +760,14 @@ export default {
* @description: 动态表单读取
*/
getFormFieldList(item) {
- console.log(item);
this.$nextTick(() => {
this.listForm = JSON.parse(JSON.stringify(item));
if (item.form === undefined) {
- if (item.fenFlag === undefined) {
- item.step3DTOS.forEach(item => {
- item.implementerId = this.$store.getters.userInfo.userId;
- item.implementer = this.$store.getters.userInfo.userName;
- });
- // this.commentText = ''
- this.dataList = item.step3DTOS;
- this.dataList.forEach(item => {
- this.$set(item,'complianceReasons', '')
- this.$set(item,'noCompliance', '')
- this.$set(item,'countermeasures', '')
- this.$set(item,'completionTime', '')
- })
- } else {
- this.dataList = item.dataList;
- // this.commentText = ''
- this.dataList.forEach(item => {
- item.implementerId = this.$store.getters.userInfo.userId;
- item.implementer = this.$store.getters.userInfo.userName;
- });
- }
- // this.getLocalTime()
- this.listForm.prcNum = this.prcNum;
- this.listForm.prcName = this.prcName;
- this.listForm["id"] = item.id;
- this.listForm.standName = item.step3DTOS[0].standName;
- this.listForm.standNumber = item.step3DTOS[0].standNumber;
- this.listForm.id = item.step3DTOS[0].id;
- this.listForm.qualityEngineerName = item.step3DTOS[0].qualityEngineerName;
- this.listForm.certifiedEngineerName = item.step3DTOS[0].certifiedEngineerName;
- this.listForm.itemsName = item.step3DTOS[0].itemsName;
- this.listForm.itemNum = item.step3DTOS[0].itemNum;
- this.listForm.responsibleUnit = item.step3DTOS[0].responsibleUnit;
- this.listForm.responsibleEngineer = item.step3DTOS[0].responsibleEngineer;
+ this.fileType = item.fileType
+ this.listForm.prcNum = this.prcNum
+ this.listForm.prcName = this.prcName
+ this.listForm['id'] = item.id
+ this.dataList = item.dataList
} else {
this.listForm = item.form;
this.dataList = item.form.dataList;
@@ -827,27 +835,32 @@ export default {
this.$message.warning('请填写完整的不符合项信息')
this.comFlag = 0
}else{
- this.listForm.prcCreateUser = this.$store.getters.userInfo.userId;
- this.listForm.commentText = this.commentText;
- this.listForm.approvalOpinion = "";
- this.listForm.signFlag = "";
- this.listForm.dataList = this.dataList;
- const json = JSON.stringify(this.listForm);
- this.isSubmit = true
- this.$http.post("lawss/activiti/completeTask", {
- taskIds: this.taskIds,
- userId: this.userId,
- json: json
- }, {
- _this: this
- }, res => {
- if (res.success) {
- this.$message.success(res.message);
- this.$router.push("/processCenter");
- }
- this.isSubmit = false;
- }, e => {
+ this.$confirm("请确认表单数据是否填写完整", "提示", {
+ confirmButtonText: "确认",
+ confirmButtonClass: "common-button-primary",
+ cancelButtonText: "取消",
+ type: "warning"
+ }).then(() => {
+ this.listForm.commentText = this.commentText;
+ this.listForm.dataList = this.dataList;
+ const json = JSON.stringify(this.listForm);
+ this.isSubmit = true
+ this.$http.post("lawss/activiti/completeTask", {
+ taskIds: this.taskIds,
+ userId: this.userId,
+ json: json
+ }, {
+ _this: this
+ }, res => {
+ if (res.success) {
+ this.$message.success(res.message);
+ this.$router.push("/processCenter");
+ }
+ this.isSubmit = false;
+ }, e => {
+ });
+ }).catch(() => {
});
}
}
@@ -872,7 +885,7 @@ export default {
saveBatchEditForm() {
this.dataList.forEach(item => {
this.selectList.forEach(items => {
- if (item.itemNum === items.itemNum && item.projectName === items.projectName) {
+ if (item.itemsNum === items.itemsNum && item.projectName === items.projectName) {
item.complianceReasons = this.batchEditForm.complianceReasons;
//不合规
item.noCompliance = this.batchEditForm.noCompliance;
@@ -904,7 +917,7 @@ export default {
this.searchData();
},
pageSizeChange(pageSize) {
- this.pageSize = this.$store.getters.userInfo.configContent;
+ this.pageSize = pageSize;
this.searchData();
}
},
diff --git a/src/pages/processCenter/pages/creatProcess/bzpg/step6.vue b/src/pages/processCenter/pages/creatProcess/bzpg/step6.vue
index face62e72..86e5cb9a8 100644
--- a/src/pages/processCenter/pages/creatProcess/bzpg/step6.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzpg/step6.vue
@@ -1,13 +1,766 @@
+
+
+
+ 标准合规评估流程
+ 项目经理审核
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
隐藏基础信息
+
展开基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 填写信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查看条款内容
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.completionTime ? $moment(scope.row.completionTime).format("YYYY-MM-DD") : "" }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.createTime ? $moment(scope.row.createTime).format("YYYY-MM-DD HH:mm:ss") : "" }}
+
+
+
+
+ {{ scope.row.endTime ? $moment(scope.row.endTime).format("YYYY-MM-DD HH:mm:ss") : "" }}
+
+
+
+
+ {{ scope.row.commentText }}
+
+
+
+
+ {{ scope.row.endTime ? "已完成" : "未完成" }}
+
+
+
+ 流程列表加载中
+
+
+
+
+
+
+
+
+
+ 关闭
+
+
+
-
diff --git a/src/pages/processCenter/pages/creatProcess/bzpg/step7.vue b/src/pages/processCenter/pages/creatProcess/bzpg/step7.vue
index f5307e9a6..471af52e5 100644
--- a/src/pages/processCenter/pages/creatProcess/bzpg/step7.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzpg/step7.vue
@@ -1,13 +1,737 @@
+
+
+
+ 标准合规评估流程
+ 项目负责人审核
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
隐藏基础信息
+
展开基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 填写信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查看条款内容
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.completionTime ? $moment(scope.row.completionTime).format("YYYY-MM-DD") : "" }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.createTime ? $moment(scope.row.createTime).format("YYYY-MM-DD HH:mm:ss") : "" }}
+
+
+
+
+ {{ scope.row.endTime ? $moment(scope.row.endTime).format("YYYY-MM-DD HH:mm:ss") : "" }}
+
+
+
+
+ {{ scope.row.commentText }}
+
+
+
+
+ {{ scope.row.endTime ? "已完成" : "未完成" }}
+
+
+
+ 流程列表加载中
+
+
+
+
+
+
+
+
+
+ 关闭
+
+
+
-
diff --git a/src/pages/processCenter/pages/creatProcess/bzpg/step8.vue b/src/pages/processCenter/pages/creatProcess/bzpg/step8.vue
index 1ad204b53..a8264ba86 100644
--- a/src/pages/processCenter/pages/creatProcess/bzpg/step8.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzpg/step8.vue
@@ -1,13 +1,737 @@
+
+
+
+ 标准合规评估流程
+ 标准法规部部长审批
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
隐藏基础信息
+
展开基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 填写信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查看条款内容
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.completionTime ? $moment(scope.row.completionTime).format("YYYY-MM-DD") : "" }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.createTime ? $moment(scope.row.createTime).format("YYYY-MM-DD HH:mm:ss") : "" }}
+
+
+
+
+ {{ scope.row.endTime ? $moment(scope.row.endTime).format("YYYY-MM-DD HH:mm:ss") : "" }}
+
+
+
+
+ {{ scope.row.commentText }}
+
+
+
+
+ {{ scope.row.endTime ? "已完成" : "未完成" }}
+
+
+
+ 流程列表加载中
+
+
+
+
+
+
+
+
+
+ 关闭
+
+
+
-
diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
index d07f72008..0c86eb228 100644
--- a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
@@ -2274,7 +2274,8 @@ export default {
getListTree(bringData) {
this.$http.get('sarResource/ts-resource/getListStand', {
sorDivide: bringData.standInData === '0' ? 'INLAND_STAND' : 'FOREIGN_STAND',
- userId: this.$store.getters.userInfo.userId
+ userId: this.$store.getters.userInfo.userId,
+ isFlow: 'flow'
}, {}, res => {
if (res.ok) {
this.treeListOptions = res.data
diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue
index 50b17a121..e5f5eaa95 100644
--- a/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue
@@ -2597,7 +2597,8 @@ export default {
getListTree(bringData) {
this.$http.get('sarResource/ts-resource/getListStand', {
sorDivide: bringData.standInData === '0' ? 'INLAND_STAND' : 'FOREIGN_STAND',
- userId: this.$store.getters.userInfo.userId
+ userId: this.$store.getters.userInfo.userId,
+ isFlow: 'flow'
}, {}, res => {
if (res.ok) {
this.treeListOptions = res.data
diff --git a/src/pages/processCenter/pages/creatProcess/qbzxdlx/step1.vue b/src/pages/processCenter/pages/creatProcess/qbzxdlx/step1.vue
new file mode 100644
index 000000000..56a377757
--- /dev/null
+++ b/src/pages/processCenter/pages/creatProcess/qbzxdlx/step1.vue
@@ -0,0 +1,509 @@
+
+
+
+ 企标制修订立项计划流程
+ 发起流程
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+
+
+ 点击上传
+
+
+
+
+
+ 新增
+ 上传
+ 模板下载
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 流程发起人
+
+
+
+
+
+
+
+
+
+
+ 责任人
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/processCenter/pages/creatProcess/qbzxdlx/step2.vue b/src/pages/processCenter/pages/creatProcess/qbzxdlx/step2.vue
new file mode 100644
index 000000000..0f498ab5b
--- /dev/null
+++ b/src/pages/processCenter/pages/creatProcess/qbzxdlx/step2.vue
@@ -0,0 +1,231 @@
+
+
+
+ 企标制修订立项计划流程
+ 发起流程
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+ {{ '-' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/processCenter/pages/newProcess/index.vue b/src/pages/processCenter/pages/newProcess/index.vue
index 1e32ad45f..9f30935f0 100644
--- a/src/pages/processCenter/pages/newProcess/index.vue
+++ b/src/pages/processCenter/pages/newProcess/index.vue
@@ -574,6 +574,12 @@
name: 'qbzxdjhgkStep1'
})
break
+ // 企标制修订立项计划流程
+ case '26':
+ this.$router.push({
+ name: 'qbzxdlxStep1'
+ })
+ break
}
},
checkPermission(permissionIdArray) {
diff --git a/src/pages/processCenter/pages/processList/tabComponents/newProcess/index.vue b/src/pages/processCenter/pages/processList/tabComponents/newProcess/index.vue
index 9b9d45fad..055a2f4ae 100644
--- a/src/pages/processCenter/pages/processList/tabComponents/newProcess/index.vue
+++ b/src/pages/processCenter/pages/processList/tabComponents/newProcess/index.vue
@@ -264,7 +264,21 @@