1;回访记录 数据权限调整 页面admin加账户条件查询

This commit is contained in:
wangshuai 2024-07-27 16:43:47 +08:00
parent b97396dd6d
commit e9e224ce25
2 changed files with 4 additions and 1 deletions

View File

@ -70,6 +70,8 @@ public class BusReturnVisitInfoServiceImpl implements IBusReturnVisitInfoService
sl.add(storeInfo.getStoreCode());
}
busReturnVisitInfo.setStoreList(sl);
}else{
return new ArrayList<>();
}
}
PageUtils.startPage();

View File

@ -19,7 +19,7 @@
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="账号" prop="phoneNumber">
<el-form-item label="账号" prop="phoneNumber" v-if="userAccount =='admin' ">
<el-input
v-model="queryParams.phoneNumber"
placeholder="请输入账号"
@ -179,6 +179,7 @@ export default {
};
},
created() {
this.userAccount = this.$store.state.user.name;
this.getList();
},
methods: {