|
@@ -2,25 +2,29 @@
|
|
<div class="p-2 adweb-enquiry-list">
|
|
<div class="p-2 adweb-enquiry-list">
|
|
<div class="search-form">
|
|
<div class="search-form">
|
|
<a-row class="r1 search-form-container" :gutter="8">
|
|
<a-row class="r1 search-form-container" :gutter="8">
|
|
- <a-col :xl="7" :xxl="6">
|
|
|
|
|
|
+ <a-col :xl="6" :xxl="5">
|
|
<div class="choose-site">
|
|
<div class="choose-site">
|
|
<span class="t1">站点:</span>
|
|
<span class="t1">站点:</span>
|
|
<select-site ref="selectSiteRef" @set-site-info="getSiteList" select-width="100%" />
|
|
<select-site ref="selectSiteRef" @set-site-info="getSiteList" select-width="100%" />
|
|
</div>
|
|
</div>
|
|
</a-col>
|
|
</a-col>
|
|
- <a-col :xl="8" :xxl="6">
|
|
|
|
|
|
+ <a-col :xl="7" :xxl="5">
|
|
<div class="choose-site">
|
|
<div class="choose-site">
|
|
<span class="t1">询盘时间:</span>
|
|
<span class="t1">询盘时间:</span>
|
|
<a-range-picker @change="onChangeDatePciker" :disabledDate="disabledDate" :value="rangeDate" style="width: 70%" />
|
|
<a-range-picker @change="onChangeDatePciker" :disabledDate="disabledDate" :value="rangeDate" style="width: 70%" />
|
|
</div>
|
|
</div>
|
|
</a-col>
|
|
</a-col>
|
|
- <a-col :xl="9" :xxl="12">
|
|
|
|
|
|
+ <a-col :xl="8" :xxl="10">
|
|
<a-button :class="queryParam.dateType == '' ? 'active' : ''" @click="setTime('')">全部时间 </a-button>
|
|
<a-button :class="queryParam.dateType == '' ? 'active' : ''" @click="setTime('')">全部时间 </a-button>
|
|
<a-button :class="queryParam.dateType == 'thirtyDay' ? 'active' : ''" @click="setTime('thirtyDay')">近30天 </a-button>
|
|
<a-button :class="queryParam.dateType == 'thirtyDay' ? 'active' : ''" @click="setTime('thirtyDay')">近30天 </a-button>
|
|
<a-button :class="queryParam.dateType == 'sevenDay' ? 'active' : ''" @click="setTime('sevenDay')">近一周 </a-button>
|
|
<a-button :class="queryParam.dateType == 'sevenDay' ? 'active' : ''" @click="setTime('sevenDay')">近一周 </a-button>
|
|
<a-button :class="queryParam.dateType == 'yesterday' ? 'active' : ''" @click="setTime('yesterday')">昨日 </a-button>
|
|
<a-button :class="queryParam.dateType == 'yesterday' ? 'active' : ''" @click="setTime('yesterday')">昨日 </a-button>
|
|
<a-button :class="queryParam.dateType == 'today' ? 'active' : ''" @click="setTime('today')"> 今日 </a-button>
|
|
<a-button :class="queryParam.dateType == 'today' ? 'active' : ''" @click="setTime('today')"> 今日 </a-button>
|
|
</a-col>
|
|
</a-col>
|
|
|
|
+
|
|
|
|
+ <a-col :xl="3" :xxl="4" v-if="isSuperAdmin">
|
|
|
|
+ <a-button type="primary" preIcon="ant-design:plus-outlined" @click="handleAdd">新增询盘</a-button>
|
|
|
|
+ </a-col>
|
|
</a-row>
|
|
</a-row>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@@ -248,7 +252,7 @@
|
|
import toTotal from '/@/assets/enquiry/enquiryListTop4.svg';
|
|
import toTotal from '/@/assets/enquiry/enquiryListTop4.svg';
|
|
|
|
|
|
import selectSite from '/@/components/Adweb/selectSite.vue';
|
|
import selectSite from '/@/components/Adweb/selectSite.vue';
|
|
- import { nextTick, onBeforeMount, onMounted, reactive, ref } from 'vue';
|
|
|
|
|
|
+ import { computed, nextTick, onBeforeMount, onMounted, reactive, ref } from 'vue';
|
|
import { BasicTable } from '/@/components/Table';
|
|
import { BasicTable } from '/@/components/Table';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
import { columns, superQuerySchema } from './AdwebEnquiry.data';
|
|
import { columns, superQuerySchema } from './AdwebEnquiry.data';
|
|
@@ -258,20 +262,25 @@
|
|
import { getAction, postAction } from '@/api/manage/manage';
|
|
import { getAction, postAction } from '@/api/manage/manage';
|
|
|
|
|
|
import { useMessage } from '@/hooks/web/useMessage';
|
|
import { useMessage } from '@/hooks/web/useMessage';
|
|
-
|
|
|
|
- import dayjs, { Dayjs } from 'dayjs';
|
|
|
|
- const dateFormat = 'YYYY-MM-DD';
|
|
|
|
- type RangeValue = [Dayjs, Dayjs];
|
|
|
|
- // 过滤日期范围
|
|
|
|
- let rangeDate = ref<RangeValue>();
|
|
|
|
-
|
|
|
|
import { filterOption } from 'ant-design-vue/es/vc-mentions/src/util';
|
|
import { filterOption } from 'ant-design-vue/es/vc-mentions/src/util';
|
|
import enquiryDetail from '@/views/adweb/enquiry/modules/enquiryDetail.vue';
|
|
import enquiryDetail from '@/views/adweb/enquiry/modules/enquiryDetail.vue';
|
|
import XpRecycleBinModal from '@/views/adweb/system/modules/XpRecycleBinModal.vue';
|
|
import XpRecycleBinModal from '@/views/adweb/system/modules/XpRecycleBinModal.vue';
|
|
import blackList from '@/views/adweb/enquiry/modules/blackList.vue';
|
|
import blackList from '@/views/adweb/enquiry/modules/blackList.vue';
|
|
import enquiryTrackRecord from '@/views/adweb/enquiry/modules/enquiryTrackRecord.vue';
|
|
import enquiryTrackRecord from '@/views/adweb/enquiry/modules/enquiryTrackRecord.vue';
|
|
|
|
+ import { RoleEnum } from '@/enums/roleEnum';
|
|
|
|
+ import dayjs, { Dayjs } from 'dayjs';
|
|
|
|
|
|
|
|
+ const dateFormat = 'YYYY-MM-DD';
|
|
|
|
+ type RangeValue = [Dayjs, Dayjs];
|
|
|
|
+ // 过滤日期范围
|
|
|
|
+ let rangeDate = ref<RangeValue>();
|
|
|
|
+ const userStore = useUserStore();
|
|
const queryParam = reactive<any>({});
|
|
const queryParam = reactive<any>({});
|
|
|
|
+ console.log(userStore.getRoleList, '当前用户所属角色');
|
|
|
|
+
|
|
|
|
+ const isSuperAdmin = computed(() => {
|
|
|
|
+ return userStore.getRoleList.includes(RoleEnum.ADMIN) || userStore.getRoleList.includes(RoleEnum.ADWEB_CHANNEL_ADMIN);
|
|
|
|
+ });
|
|
|
|
|
|
const registerModal = ref();
|
|
const registerModal = ref();
|
|
const selectSiteRef = ref(null);
|
|
const selectSiteRef = ref(null);
|