|
@@ -22,17 +22,17 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
- <template v-if="toggleSearchStatus">
|
|
|
- <a-col :xxl="6" :xl="7">
|
|
|
- <a-form-item label="渠道商">
|
|
|
- <a-select placeholder="请选择渠道商" v-model:value="queryParam.channelProviderId" showSearch allowClear :filterOption="filterOption">
|
|
|
- <a-select-option v-for="data in channelProviderList" :key="data.username" :value="data.workNo">
|
|
|
- {{ data.username }}
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
+ <a-col v-if="isAdmin" :xxl="6" :xl="7">
|
|
|
+ <a-form-item label="租户">
|
|
|
+ <j-search-select
|
|
|
+ placeholder="请选择租户"
|
|
|
+ v-model:value="queryParam.channelProviderId"
|
|
|
+ dict="sys_tenant,name,id,del_flag=0 AND status=1"
|
|
|
+ />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
|
|
|
+ <template v-if="toggleSearchStatus">
|
|
|
<!-- <a-col :xxl="12" :xl="10">-->
|
|
|
<!-- <a-form-item label="创建时间">-->
|
|
|
<!-- <j-range-date placeholder="请选择开始日期" class="query-group-cust" v-model:value="queryParam.ctime" />-->
|
|
@@ -193,10 +193,23 @@
|
|
|
const siteSetEnquiryRef = ref();
|
|
|
const googleAdsModalRef = ref();
|
|
|
|
|
|
- const isAdmin = computed(() => userStore.getRoleList.includes(RoleEnum.ADMIN));
|
|
|
+ // admin 判断和后端保持一致
|
|
|
+ // src/main/java/org/jeecg/modules/adweb/system/service/impl/SysAdwebApiImpl.java L60
|
|
|
+ // TODO 将此判断加入store,方便所有组件全局调用
|
|
|
+
|
|
|
+ console.log(userStore.getRoleList, '当前用户所属角色');
|
|
|
+ const isAdmin = computed(() => {
|
|
|
+ return (
|
|
|
+ userStore.getRoleList.includes(RoleEnum.ADMIN) ||
|
|
|
+ userStore.getRoleList.includes(RoleEnum.ADWEB_ADMIN) ||
|
|
|
+ userStore.getRoleList.includes(RoleEnum.SEO_ADMIN) ||
|
|
|
+ userStore.getRoleList.includes(RoleEnum.ADWEB_SITE_MANAGER) ||
|
|
|
+ userStore.getRoleList.includes(RoleEnum.ADWEB_SEO_MANAGER)
|
|
|
+ );
|
|
|
+ });
|
|
|
+
|
|
|
const { createMessage } = useMessage();
|
|
|
|
|
|
- let channelProviderList = reactive([{ username: '', workNo: '' }]);
|
|
|
//注册table数据
|
|
|
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
|
|
tableProps: {
|
|
@@ -239,21 +252,7 @@
|
|
|
|
|
|
// 高级查询配置
|
|
|
const superQueryConfig = reactive(superQuerySchema);
|
|
|
- //渠道商搜索
|
|
|
- const filterOption = (input: string, option: any) => {
|
|
|
- console.log(option, 'optionoption');
|
|
|
- return option.key.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
|
- };
|
|
|
-
|
|
|
- onBeforeMount(() => {
|
|
|
- getChannelProvider();
|
|
|
- });
|
|
|
|
|
|
- function getChannelProvider() {
|
|
|
- getAction('/adweb/system/getChannelProvider', null).then((res) => {
|
|
|
- channelProviderList = res.result;
|
|
|
- });
|
|
|
- }
|
|
|
/**
|
|
|
* 高级查询事件
|
|
|
*/
|