From 60f61da97dd643d3f808fba14cf7d136a8b5f11b Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Fri, 05 Nov 2021 17:27:21 +0800
Subject: [PATCH] +许可审批修改
---
src/views/licenseApproval/securityGuard.vue | 23 ++++++++++++++++-------
1 files changed, 16 insertions(+), 7 deletions(-)
diff --git a/src/views/licenseApproval/securityGuard.vue b/src/views/licenseApproval/securityGuard.vue
index 5f04651..ffb288f 100644
--- a/src/views/licenseApproval/securityGuard.vue
+++ b/src/views/licenseApproval/securityGuard.vue
@@ -2,7 +2,7 @@
* @Author: liu
* @Date: 2021-08-26 16:57:58
* @Last Modified by: liu
- * @Last Modified time: 2021-09-25 17:58:55
+ * @Last Modified time: 2021-11-05 14:45:01
*/
@@ -48,7 +48,7 @@
:type="type"
class="zhengJian-icon"
@click.stop="handleCredentials(row)"
- >附件审查</el-button
+ >附件</el-button
>
<el-button
icon="el-icon-edit"
@@ -58,7 +58,7 @@
@click.stop="rowDel(row)"
>备案审批
</el-button>
- <el-button
+ <!-- <el-button
icon="el-icon-edit"
:size="size"
:type="type"
@@ -72,7 +72,7 @@
"
@click.stop="rowSee(row)"
>审批查询
- </el-button>
+ </el-button> -->
<el-button
icon="el-icon-brush"
:size="size"
@@ -103,9 +103,12 @@
? "不通过"
: "待审核"
}}
- <i class="gz" v-if="row.stateOur == '0'"></i>
- <i class="yj" v-if="row.stateOur == '2'"></i>
- <i class="zc" v-if="row.stateOur == '1'"></i>
+ <i class="gz" v-if="row.type == '2'"></i>
+ <!-- 黄色 -->
+ <i class="yj" v-if="row.type == '1'"></i>
+ <!-- 红色 -->
+ <i class="zc" v-if="row.type == '0'"></i>
+ <!-- 绿色 -->
</el-tag>
</template>
</avue-crud>
@@ -305,6 +308,8 @@
stateOur: "",
stateText: "",
dialogVisibleccsee: false,
+
+ userData: "",
};
},
computed: {
@@ -567,11 +572,15 @@
gonganj = "市局管理员";
}
}
+ this.userData =
+ gonganj == "派出所管理员" ? "2" : gonganj == "县局管理员" ? "1" : "0";
params = {
...params,
...this.getFenji(gonganj),
};
console.log(params, "params");
+ params["jurisdiction"] = this.userInfo.jurisdiction;
+ params["usetype"] = this.userData;
// return;
getList(
page.currentPage,
--
Gitblit v1.9.3