From 33f44846c05b47bea48d2faead046a4e0259f741 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 06 Jun 2024 16:31:42 +0800
Subject: [PATCH] 校园安全账号隐藏
---
subPackage/workbench/views/editExamine.vue | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/subPackage/workbench/views/editExamine.vue b/subPackage/workbench/views/editExamine.vue
index 1fa64b7..617fffc 100644
--- a/subPackage/workbench/views/editExamine.vue
+++ b/subPackage/workbench/views/editExamine.vue
@@ -89,7 +89,7 @@
</view>
- <view class="item bgc-ff mt-20">
+ <view class="item bgc-ff mt-20" v-if="roleAlias !='xyzt'">
<view class="flex j-c-s-b a-i-c" style="padding-top:12rpx;">
<view class="box-title" style="width:50%;">
<box-title title="房东信息"></box-title>
@@ -195,7 +195,7 @@
</u-upload>
</view>
</view>
- <view class="practitioner">
+ <view class="practitioner" v-if="roleAlias !='xyzt'">
<view>
<box-title title="从业人员信息"></box-title>
</view>
@@ -377,7 +377,8 @@
showNationPicker: false,
showGenderPicker: false,
personNumArr: [],
- cateId: ""
+ cateId: "",
+ roleAlias: uni.getStorageSync("activeRole").roleAlias,
}
},
onShow() {
@@ -615,7 +616,7 @@
},
submit() {
- if (this.personNum > 0) {
+ if (this.personNum > 0 && this.roleAlias != 'xyzt') {
const placePractitioner = []
this.$refs.formItemRef.forEach(item => {
console.log("item====>", item);
--
Gitblit v1.9.3