From 22b8e610de8fc8a5b87c7164d87e3fee761531ba Mon Sep 17 00:00:00 2001
From: zhouhao <787329763@qq.com>
Date: Wed, 03 Nov 2021 17:35:43 +0800
Subject: [PATCH] 修改门店管理查询列表
---
src/views/mine/stores/storeOprs-detail.vue | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/views/mine/stores/storeOprs-detail.vue b/src/views/mine/stores/storeOprs-detail.vue
index 1fb2eee..2d57caf 100644
--- a/src/views/mine/stores/storeOprs-detail.vue
+++ b/src/views/mine/stores/storeOprs-detail.vue
@@ -25,8 +25,12 @@
import { mapState } from 'vuex';
export default {
name: "stores-detail",
+ computed: {
+ ...mapState(["userinfo"]),
+ },
data(){
return {
+ orgType:"",
isShowArea:false,
dialogShow:false,
menText:'冻结店员',
@@ -44,6 +48,7 @@
}
},
created(){
+ this.orgType = this.userinfo.orgType;
this.init();
},
methods:{
@@ -87,6 +92,7 @@
orgId:this.queryStoreId,
id:this.$route.query.mgrId
};
+ list.menuPower = [100001, 100006]
if(this.$validator(this.form,this.rule).check(item=>{
this.$notify(item.message);
})){
--
Gitblit v1.8.0