@@ -86,13 +87,17 @@
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}">
-
-
-
-
-
-
-
+
+
+
+
+
+ {{ scope.row.planCloseTime ? $moment(scope.row.planCloseTime).format('YYYY-MM-DD') : '' }}
+
+
+
+
+
{{scope.row.fileText}}
@@ -114,6 +119,73 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.createTime ? $moment(scope.row.createTime).format("YYYY-MM-DD") : "" }}
+
+
+
+
+ {{ scope.row.endTime ? $moment(scope.row.endTime).format("YYYY-MM-DD") : "" }}
+
+
+
+
+ {{ scope.row.commentText }}
+
+
+
+
+ {{ scope.row.endTime ? "已完成" : "未完成" }}
+
+
+
+ 流程列表加载中
+
+
{
+ this.detailData = res
+ }, e => {
+ });
+ },
getData() {
const params = {
taskIds: this.taskIds,
@@ -197,6 +290,7 @@ export default {
// 提交按钮
handleSubmit() {
+ this.isSubmit = true
var json = this.json
json.actionFlag = 0
json.commentText = this.commentText
@@ -209,13 +303,15 @@ export default {
this.$message.success('提交成功')
this.$router.push('/processCenter')
}
+ this.isSubmit = false
})
},
handleSubmitNo() {
if (this.commentText) {
- var json = this.json
- json.actionFlag = 1
- json.commentText = this.commentText
+ var json = {
+ actionFlag: 1,
+ commentText: this.commentText
+ }
this.$http.post('lawss/activiti/completeTask', {
json: JSON.stringify(json),
taskId: this.taskIds,
diff --git a/src/pages/processCenter/pages/processList/tabComponents/taskDraft/index.vue b/src/pages/processCenter/pages/processList/tabComponents/taskDraft/index.vue
index 280ae1e1c..fb39c7d87 100644
--- a/src/pages/processCenter/pages/processList/tabComponents/taskDraft/index.vue
+++ b/src/pages/processCenter/pages/processList/tabComponents/taskDraft/index.vue
@@ -303,6 +303,16 @@ export default {
}
})
break
+ case '8':
+ this.$router.push({
+ name: 'wfhxzgStep1',
+ query: {
+ type: '8',
+ processName: '未符合项更新流程',
+ bpnId: id
+ }
+ })
+ break
}
},
...mapMutations(['setProcess', 'setHandleInfo']),
diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue
index a55938830..2b863220d 100644
--- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue
+++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue
@@ -97,78 +97,89 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 确认
+
+
+
+
@@ -483,12 +494,36 @@ export default {
});
},
+ selectInfoMore() {
+ this.$http.get("sarLawsAttrDetailedList/sar-laws-attr-detailed-list/selectLawsById", {
+ ...this.standardFormList,
+ id: this.pageId,
+ }, {
+ _this: this
+ }, res => {
+ this.standinfoList = res.data.records;
+ this.standardFormTotal = res.data.total
+ this.standinfoList.forEach(item => {
+ if (item.standYear === null) {
+ item.standNumber = item.standSortShow + ' ' + item.standNumber
+ } else {
+ item.standNumber = item.standSortShow + ' ' + item.standNumber + '-' + item.standYear
+ }
+ })
+ }, e => {
+ });
+ },
back() {
this.$router.push({name: 'AccessStandardsAndRegulations'})
// this.$router.push(this.$store.state.detailMap)
// this.$store.commit('setDetailMap', '')
},
+ selectSuper() {
+ this.page = 1;
+ this.standardForm.page = 1;
+ this.selectInfoMore();
+ },
// 搜索
selectProductBtn() {
this.page = 1;
@@ -506,6 +541,7 @@ export default {
this.standardFormList.zrbm = ''
this.standardFormList.sycpx = ''
this.selectInfobyAccid()
+ this.selectInfoMore()
},
exportStandard() {
if (this.selectedList.length > 0) {
@@ -556,11 +592,11 @@ export default {
},
pageChange(page) {
this.standardForm.page = page;
- this.selectInfobyAccid();
+ // this.selectInfobyAccid();
},
pageSizeChange(pageSize) {
this.standardForm.Size = this.$store.getters.userInfo.configContent;
- this.selectInfobyAccid();
+ // this.selectInfobyAccid();
},
// 请求部门结构树
getOrgTreeSource() {
@@ -675,7 +711,7 @@ export default {
}
this.page = 1
this.standardForm.page = 1
- this.selectInfobyAccid()
+ this.selectInfoMore()
},
// 获取工作组信息下拉框信息
getGzzOption() {