diff --git a/src/views/abnormalRemind/index.vue b/src/views/abnormalRemind/index.vue
index d206e88..88660cd 100644
--- a/src/views/abnormalRemind/index.vue
+++ b/src/views/abnormalRemind/index.vue
@@ -19,12 +19,6 @@
-
-
-
- {{ scope.row.createTime }}
-
-
评审通过
@@ -43,7 +37,7 @@
- 查看详情
+ 去查看
diff --git a/src/views/enterpriselibrary/enterInfo/components/tabTwo/index.vue b/src/views/enterpriselibrary/enterInfo/components/tabTwo/index.vue
index 3d4229d..dcd15ac 100644
--- a/src/views/enterpriselibrary/enterInfo/components/tabTwo/index.vue
+++ b/src/views/enterpriselibrary/enterInfo/components/tabTwo/index.vue
@@ -17,7 +17,7 @@
- 新增常用联系人
+ 新增常用联系人
@@ -43,8 +43,8 @@
查看详情
- 编辑
- 删除
+ 编辑
+ 删除
diff --git a/src/views/enterpriselibrary/index.vue b/src/views/enterpriselibrary/index.vue
index 86b25b6..b3a9283 100644
--- a/src/views/enterpriselibrary/index.vue
+++ b/src/views/enterpriselibrary/index.vue
@@ -45,7 +45,7 @@
- 导入企业
+ 导入企业
导出
@@ -156,6 +156,7 @@ export default {
data() {
return {
userType: this.$store.state.user.userType,
+ roles: this.$store.state.user.roles,
deptId: this.$store.state.user.deptId,
total:0,
pagination: {
diff --git a/src/views/intelligentReminder/index.vue b/src/views/intelligentReminder/index.vue
index 8b5004b..f6084c9 100644
--- a/src/views/intelligentReminder/index.vue
+++ b/src/views/intelligentReminder/index.vue
@@ -40,7 +40,7 @@
- 新增智能提醒规则
+ 新增智能提醒规则
@@ -72,8 +72,8 @@
查看详情
- 修改
- 删除
+ 修改
+ 删除
@@ -198,6 +198,7 @@ export default {
}
}
return {
+ roles: this.$store.state.user.roles,
total:0,
pagination: {
current:1,
diff --git a/src/views/onlineDeclaration/enterpriseDirectory/index.vue b/src/views/onlineDeclaration/enterpriseDirectory/index.vue
index e7b5b7d..54a9e2c 100644
--- a/src/views/onlineDeclaration/enterpriseDirectory/index.vue
+++ b/src/views/onlineDeclaration/enterpriseDirectory/index.vue
@@ -37,7 +37,7 @@
发布申报任务
@@ -104,7 +104,7 @@
size="mini"
type="text"
style="color: red;"
- v-if="scope.row.status == 1 || scope.row.status == 3"
+ v-if="(scope.row.status == 1 || scope.row.status == 3) && roles.includes('other-gov')"
@click="handleReplace(scope.row)"
>补录
+
+ 创建新模板
+
下载表单
流程设计
表单自定义
@@ -175,6 +178,7 @@ export default {
},
data() {
return {
+ roles: this.$store.state.user.roles,
// 遮罩层
loading: true,
// 模版列表数据
diff --git a/src/views/policyDocument/index.vue b/src/views/policyDocument/index.vue
index 7deff9e..6b2b65a 100644
--- a/src/views/policyDocument/index.vue
+++ b/src/views/policyDocument/index.vue
@@ -45,7 +45,7 @@
- 新增发文
+ 新增发文
@@ -71,8 +71,8 @@
查看详情
- 编辑
- 删除
+ 编辑
+ 删除
@@ -190,6 +190,7 @@ export default {
var now = new Date();
return {
userType: this.$store.state.user.userType,
+ roles: this.$store.state.user.roles,
deptId: this.$store.state.user.deptId,
now:now,
total:0,
diff --git a/src/views/project/index.vue b/src/views/project/index.vue
index b65c157..8641d5b 100644
--- a/src/views/project/index.vue
+++ b/src/views/project/index.vue
@@ -54,7 +54,7 @@
- 导入新项目
+ 导入新项目
@@ -132,7 +132,7 @@
查看详情
- 删除
+ 删除
@@ -370,6 +370,11 @@ export default {
this.formInline.declareUnit = this.$route.params.declareUnit
this.pagination = { ...this.pagination,...this.formInline };
}
+ if(this.$route.params.declareUnit && this.$route.params.status) {
+ this.formInline.declareUnit = this.$route.params.declareUnit
+ this.formInline.status = this.$route.params.status
+ this.pagination = { ...this.pagination,...this.formInline };
+ }
if(this.userType == "01") {
this.pagination.creditCode = this.$store.state.user.name
}
diff --git a/src/views/workbench/index.vue b/src/views/workbench/index.vue
index fdefde7..d12d014 100644
--- a/src/views/workbench/index.vue
+++ b/src/views/workbench/index.vue
@@ -531,7 +531,10 @@ export default {
params: { declareUnit: this.search }
})
} else if(this.checked == 2) {
-
+ this.$router.push({
+ name: 'Project',
+ params: { declareUnit: this.search, status: '5' }
+ })
}
},
},