|
@@ -2,462 +2,226 @@
|
|
|
<a-card :bordered="false">
|
|
|
<!-- 查询区域 -->
|
|
|
<div class="table-page-search-wrapper">
|
|
|
- <a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
|
+ <a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam">
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :md="6" :sm="12">
|
|
|
- <a-form-item label="关键词">
|
|
|
- <a-input placeholder="输入关键词查询" v-model="queryParam.word"></a-input>
|
|
|
+ <a-form-item label="关键词" name="word">
|
|
|
+ <a-input allow-clear placeholder="输入关键词查询" v-model:value="queryParam.word" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="10">
|
|
|
- <a-form-item label="黑白名单">
|
|
|
- <a-select allowClear v-model="queryParam.blackOrWhiteList" placeholder="输入黑白名单类型">
|
|
|
+ <a-form-item label="黑白名单" name="blackOrWhiteList">
|
|
|
+ <a-select allow-clear v-model:value="queryParam.blackOrWhiteList" placeholder="输入黑白名单类型">
|
|
|
<a-select-option value="0">黑名单</a-select-option>
|
|
|
<a-select-option value="1">白名单</a-select-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="10">
|
|
|
- <a-form-item label="作用域">
|
|
|
- <a-select allowClear v-model="queryParam.useStatus" placeholder="输入关键词状态类型">
|
|
|
+ <a-form-item label="作用域" name="useStatus">
|
|
|
+ <a-select allow-clear v-model:value="queryParam.useStatus" placeholder="输入关键词状态类型">
|
|
|
<a-select-option value="0">询盘关键词</a-select-option>
|
|
|
<a-select-option value="1">OpenAi关键词</a-select-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="10">
|
|
|
- <a-form-item label="关键词状态">
|
|
|
- <a-select allowClear v-model="queryParam.isEnable" placeholder="输入关键词状态类型">
|
|
|
+ <a-form-item label="关键词状态" name="isEnable">
|
|
|
+ <a-select allow-clear v-model:value="queryParam.isEnable" placeholder="输入关键词状态类型">
|
|
|
<a-select-option value="0">停用</a-select-option>
|
|
|
<a-select-option value="1">启用</a-select-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
|
- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
|
- <a-button ghost type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
|
- </span>
|
|
|
+ <span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
|
|
+ <a-button type="primary" @click="searchQuery" preIcon="ant-design:search-outlined">查询</a-button>
|
|
|
+ <a-button ghost type="primary" @click="searchReset" preIcon="ant-design:reload-outlined" style="margin-left: 8px">重置</a-button>
|
|
|
+ </span>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</a-form>
|
|
|
</div>
|
|
|
<!-- 查询区域-END -->
|
|
|
|
|
|
- <!-- 操作按钮区域 -->
|
|
|
- <div class="table-operator">
|
|
|
- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
|
|
|
- <a-button type="primary" icon="download" @click="handleExportXls('用于询盘规则过滤')">导出</a-button>
|
|
|
- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl"
|
|
|
- @change="handleImportExcel">
|
|
|
- <a-button type="primary" icon="import">导入</a-button>
|
|
|
- </a-upload>
|
|
|
- <a-popover v-model:visible="outputVisible" title="请选择查询内容" trigger="click" >
|
|
|
- <template #content>
|
|
|
- <div style="width:100%;display:block;overflow:hidden">
|
|
|
- <a-select show-search
|
|
|
- placeholder="请选择站点"
|
|
|
- :allowClear="true"
|
|
|
- option-filter-prop="children"
|
|
|
- :filter-option="filterOption"
|
|
|
- v-model="outputSiteCode" style="width: 300px">
|
|
|
- <a-select-option v-for="data in siteinfo" :key="data.code" :value="data.code" :info="data">
|
|
|
- {{ data.name }}
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- <br>
|
|
|
- <a-range-picker
|
|
|
- v-model:value="outputTime"
|
|
|
- format="YYYY-MM-DD HH"
|
|
|
- :disabled-date="disabledDate"
|
|
|
- style="width: 300px; margin: 10px 0 10px 0;"
|
|
|
- />
|
|
|
- </div>
|
|
|
- <a-button type="primary" :loading="outputLoading" @click="isOutputExcel">导出</a-button>
|
|
|
- </template>
|
|
|
- <a-button type="primary" @click="loadSiteList()">导出指定询盘</a-button>
|
|
|
- </a-popover>
|
|
|
-
|
|
|
- <a-dropdown v-if="selectedRowKeys.length > 0">
|
|
|
- <a-menu slot="overlay">
|
|
|
- <a-menu-item key="1" @click="batchDel">
|
|
|
- <a-icon type="delete"/>
|
|
|
- 删除
|
|
|
- </a-menu-item>
|
|
|
- </a-menu>
|
|
|
- <a-button style="margin-left: 8px"> 批量操作
|
|
|
- <a-icon type="down"/>
|
|
|
- </a-button>
|
|
|
- </a-dropdown>
|
|
|
- </div>
|
|
|
-
|
|
|
<!-- table区域-begin -->
|
|
|
- <div>
|
|
|
- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
|
|
|
- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a
|
|
|
- style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
|
|
|
- <a style="margin-left: 24px" @click="onClearSelected">清空</a>
|
|
|
+ <div class="table">
|
|
|
+ <div class="ant-alert ant-alert-info" style="margin-bottom: 16px">
|
|
|
+ <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a
|
|
|
+ >项
|
|
|
+ <a style="margin-left: 24px" @click="clearSelectedRowKeys">清空</a>
|
|
|
</div>
|
|
|
|
|
|
- <a-table
|
|
|
- ref="table"
|
|
|
- size="middle"
|
|
|
- :scroll="{x:true}"
|
|
|
- bordered
|
|
|
- rowKey="id"
|
|
|
- :columns="columns"
|
|
|
- :dataSource="dataSource"
|
|
|
- :pagination="ipagination"
|
|
|
- :loading="loading"
|
|
|
- :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
|
|
|
- class="j-table-force-nowrap"
|
|
|
- @change="handleTableChange">
|
|
|
- <span slot="blackOrWhiteList_dictText" slot-scope="text, record">
|
|
|
- <a-tag v-if="text === 0" color="red">黑名单</a-tag>
|
|
|
- <a-tag v-else-if="text === 1">白名单</a-tag>
|
|
|
- <a-tag v-else>--</a-tag>
|
|
|
- </span>
|
|
|
+ <!--引用表格-->
|
|
|
+ <BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
|
+ <!--插槽:table标题-->
|
|
|
+ <template #tableTitle>
|
|
|
+ <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增 </a-button>
|
|
|
+ <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
|
+ <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
|
+
|
|
|
+ <a-dropdown v-if="selectedRowKeys.length > 0">
|
|
|
+ <template #overlay>
|
|
|
+ <a-menu>
|
|
|
+ <a-menu-item key="1" @click="batchHandleDelete">
|
|
|
+ <Icon icon="ant-design:delete-outlined" />
|
|
|
+ 删除
|
|
|
+ </a-menu-item>
|
|
|
+ </a-menu>
|
|
|
+ </template>
|
|
|
+ <a-button
|
|
|
+ >批量操作
|
|
|
+ <Icon icon="mdi:chevron-down" />
|
|
|
+ </a-button>
|
|
|
+ </a-dropdown>
|
|
|
+ </template>
|
|
|
|
|
|
- <span slot="wasteEnquiryNum" slot-scope="text, record">
|
|
|
- <template v-if="record.useStatus == 0">
|
|
|
- <span v-if="text === '' || text === null || text === 0" >0</span>
|
|
|
- <a v-else @click='wasteNumVisible(record.word)'>{{ text }}</a>
|
|
|
- </template>
|
|
|
- <template v-if="record.useStatus == 1">
|
|
|
- <span>-</span>
|
|
|
- </template>
|
|
|
- </span>
|
|
|
+ <!--操作栏-->
|
|
|
+ <template #action="{ record }">
|
|
|
+ <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
|
|
|
+ </template>
|
|
|
|
|
|
- <span slot="isEnable_dictText" slot-scope="text, record">
|
|
|
- <a-tag v-if="text === 0" color="orange">停用</a-tag>
|
|
|
- <a-tag v-else-if="text === 1" color="green">启用</a-tag>
|
|
|
- <a-tag v-else>--</a-tag>
|
|
|
- </span>
|
|
|
- <span slot="useStatus_dictText" slot-scope="text, record">
|
|
|
- <a-tag v-if="text === 0" color="orange">询盘关键词</a-tag>
|
|
|
+ <template #bodyCell="{ column, record, index, text }">
|
|
|
+ <template v-if="column.dataIndex === 'blackOrWhiteList'">
|
|
|
+ <span>
|
|
|
+ <a-tag v-if="record.blackOrWhiteList === 0" color="red">黑名单</a-tag>
|
|
|
+ <a-tag v-else>白名单</a-tag>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template v-if="column.dataIndex === 'wasteEnquiryNum'">
|
|
|
+ <template v-if="record.useStatus == 0">
|
|
|
+ <span v-if="text === '' || text === null || text === 0">0</span>
|
|
|
+ <a v-else @click="wasteNumVisible(record.word)">{{ text }}</a>
|
|
|
+ </template>
|
|
|
+ <template v-if="record.useStatus == 1">
|
|
|
+ <span>-</span>
|
|
|
+ </template>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template v-if="column.dataIndex === 'useStatus'">
|
|
|
+ <a-tag v-if="text === 0" color="orange">询盘关键词</a-tag>
|
|
|
<a-tag v-else-if="text === 1" color="green">OpenAi关键词</a-tag>
|
|
|
<a-tag v-else>--</a-tag>
|
|
|
- </span>
|
|
|
-
|
|
|
- <span slot="action" slot-scope="text, record">
|
|
|
- <a @click="handleEdit(record)">编辑</a>
|
|
|
-
|
|
|
- <a-divider type="vertical"/>
|
|
|
- <a-dropdown>
|
|
|
- <a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
|
|
|
- <a-menu slot="overlay">
|
|
|
- <a-menu-item>
|
|
|
- <a @click="handleDetail(record)">详情</a>
|
|
|
- </a-menu-item>
|
|
|
- <a-menu-item>
|
|
|
- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
|
|
|
- <a>删除</a>
|
|
|
- </a-popconfirm>
|
|
|
- </a-menu-item>
|
|
|
- </a-menu>
|
|
|
- </a-dropdown>
|
|
|
- </span>
|
|
|
+ </template>
|
|
|
|
|
|
- </a-table>
|
|
|
+ <template v-if="column.dataIndex === 'isEnable'">
|
|
|
+ <a-tag v-if="text === 0" color="orange">停用</a-tag>
|
|
|
+ <a-tag v-else-if="text === 1" color="green">启用</a-tag>
|
|
|
+ <a-tag v-else>--</a-tag>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template v-if="column.dataIndex === 'action'">
|
|
|
+ <span>
|
|
|
+ <a @click="handleEdit(record)">编辑</a>
|
|
|
+
|
|
|
+ <a-divider type="vertical" />
|
|
|
+ <a-dropdown>
|
|
|
+ <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
|
|
|
+ <template #overlay>
|
|
|
+ <a-menu>
|
|
|
+ <a-menu-item>
|
|
|
+ <a @click="handleDetail(record)">详情</a>
|
|
|
+ </a-menu-item>
|
|
|
+ <a-menu-item>
|
|
|
+ <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
|
|
|
+ <a>删除</a>
|
|
|
+ </a-popconfirm>
|
|
|
+ </a-menu-item>
|
|
|
+ </a-menu>
|
|
|
+ </template>
|
|
|
+ </a-dropdown>
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </template>
|
|
|
+ </BasicTable>
|
|
|
</div>
|
|
|
|
|
|
- <adweb-enquiry-rule-modal ref="modalForm" @ok="modalFormOk"></adweb-enquiry-rule-modal>
|
|
|
- <xp-recycle-bin-modal ref="XpRecycleBinModal"/>
|
|
|
+ <adweb-enquiry-rule-modal ref="modalFormRef" @ok="reload" />
|
|
|
+ <xp-recycle-bin-modal ref="XpRecycleBinModalRef" />
|
|
|
</a-card>
|
|
|
</template>
|
|
|
|
|
|
-<script>
|
|
|
-
|
|
|
-import '@/assets/less/TableExpand.less'
|
|
|
-import {mixinDevice} from '@/utils/mixin'
|
|
|
-import {JeecgListMixin} from '@/mixins/JeecgListMixin'
|
|
|
-import AdwebEnquiryRuleModal from './modules/AdwebEnquiryRuleModal__Style.vue'
|
|
|
-import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
|
|
|
-import {downFile, getAction, postAction} from "@api/manage";
|
|
|
-import Vue from "vue";
|
|
|
-import {ACCESS_TOKEN} from "@/store/mutation-types";
|
|
|
-import {Modal} from "ant-design-vue";
|
|
|
-import store from "@/store";
|
|
|
-import moment from "moment";
|
|
|
-import dayjs from "dayjs";
|
|
|
-import XpRecycleBinModal from './modules/XpRecycleBinModal'
|
|
|
-
|
|
|
-export default {
|
|
|
- name: 'AdwebEnquiryRuleList',
|
|
|
- mixins: [JeecgListMixin, mixinDevice],
|
|
|
- components: {
|
|
|
- AdwebEnquiryRuleModal,
|
|
|
- JSuperQuery,
|
|
|
- XpRecycleBinModal,
|
|
|
- },
|
|
|
- data() {
|
|
|
- return {
|
|
|
- description: '用于询盘规则过滤管理页面',
|
|
|
- // 表头
|
|
|
- columns: [
|
|
|
- {
|
|
|
- title: '#',
|
|
|
- dataIndex: '',
|
|
|
- key: 'rowIndex',
|
|
|
- width: 60,
|
|
|
- align: "center",
|
|
|
- customRender: function (t, r, index) {
|
|
|
- return parseInt(index) + 1;
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- title: '关键词',
|
|
|
- align: "center",
|
|
|
- dataIndex: 'word'
|
|
|
- },
|
|
|
- {
|
|
|
- title:'关键词翻译',
|
|
|
- align:"center",
|
|
|
- dataIndex: 'translateWord',
|
|
|
- scopedSlots: {customRender: 'translateWord'}
|
|
|
- },
|
|
|
- {
|
|
|
- title: '黑白名单',
|
|
|
- align: "center",
|
|
|
- dataIndex: 'blackOrWhiteList',
|
|
|
- width: 180,
|
|
|
- sorter: true,
|
|
|
- scopedSlots: {customRender: 'blackOrWhiteList_dictText'}
|
|
|
- },
|
|
|
- {
|
|
|
- title:'询盘数量',
|
|
|
- align:"center",
|
|
|
- dataIndex: 'wasteEnquiryNum',
|
|
|
- scopedSlots: {customRender: 'wasteEnquiryNum'}
|
|
|
- },
|
|
|
- {
|
|
|
- title: '作用域',
|
|
|
- align: "center",
|
|
|
- dataIndex: 'useStatus',
|
|
|
- width: 180,
|
|
|
- sorter: true,
|
|
|
- scopedSlots: {customRender: 'useStatus_dictText'}
|
|
|
- },
|
|
|
- {
|
|
|
- title: '状态',
|
|
|
- align: "center",
|
|
|
- dataIndex: 'isEnable',
|
|
|
- width: 180,
|
|
|
- sorter: true,
|
|
|
- scopedSlots: {customRender: 'isEnable_dictText'}
|
|
|
- },
|
|
|
- {
|
|
|
- title: '创建时间',
|
|
|
- align: "center",
|
|
|
- dataIndex: 'createTime',
|
|
|
- width: 180,
|
|
|
- sorter: true
|
|
|
- },
|
|
|
- {
|
|
|
- title: '操作',
|
|
|
- dataIndex: 'action',
|
|
|
- align: "center",
|
|
|
- fixed: "right",
|
|
|
- width: 147,
|
|
|
- scopedSlots: {customRender: 'action'}
|
|
|
- }
|
|
|
- ],
|
|
|
- url: {
|
|
|
- list: "/adweb/adwebEnquiryRule/list",
|
|
|
- delete: "/adweb/adwebEnquiryRule/delete",
|
|
|
- deleteBatch: "/adweb/adwebEnquiryRule/deleteBatch",
|
|
|
- exportXlsUrl: "/adweb/adwebEnquiryRule/exportXls",
|
|
|
- importExcelUrl: "adweb/adwebEnquiryRule/importExcel",
|
|
|
- enquiryOutputExcelUrl: "/adweb/adwebEnquiry/enquiryOutputExcel",
|
|
|
-
|
|
|
+<script lang="ts" setup name="AdwebEnquiryRuleList">
|
|
|
+ import '@/assets/less/TableExpand.less';
|
|
|
+ import '@/assets/less/common.less';
|
|
|
+ import AdwebEnquiryRuleModal from './modules/AdwebEnquiryRuleModal.vue';
|
|
|
+ import { nextTick, onMounted, reactive, ref } from 'vue';
|
|
|
+
|
|
|
+ import XpRecycleBinModal from './modules/XpRecycleBinModal.vue';
|
|
|
+ import { useListPage } from '@/hooks/system/useListPage';
|
|
|
+ import { batchDelete, deleteOne, getExportUrl, getImportUrl, list } from './publicRuleList.api';
|
|
|
+ import { columns } from './publicRuleList.data';
|
|
|
+ import { useCommonList } from '@/hooks/component/JeecgList';
|
|
|
+ import { BasicTable, TableAction } from '@/components/Table';
|
|
|
+
|
|
|
+ const description = ref('用于询盘规则过滤管理页面');
|
|
|
+
|
|
|
+ const dictOptions = reactive<any>({});
|
|
|
+ const superFieldList = reactive<any>([]);
|
|
|
+
|
|
|
+ const formRef = ref();
|
|
|
+ const XpRecycleBinModalRef = ref();
|
|
|
+ const modalFormRef = ref();
|
|
|
+ let queryParam = reactive<any>({});
|
|
|
+
|
|
|
+ //注册table数据
|
|
|
+ const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
|
|
+ tableProps: {
|
|
|
+ title: '公共邮箱黑名单',
|
|
|
+ api: list,
|
|
|
+ columns: columns,
|
|
|
+ canResize: false,
|
|
|
+ useSearchForm: false,
|
|
|
+ actionColumn: {
|
|
|
+ width: 180,
|
|
|
+ fixed: 'right',
|
|
|
+ },
|
|
|
+ striped: true,
|
|
|
+ bordered: false,
|
|
|
+ beforeFetch: (params) => {
|
|
|
+ return Object.assign(params, queryParam);
|
|
|
},
|
|
|
- dictOptions: {},
|
|
|
- superFieldList: [],
|
|
|
- outputVisible: false,
|
|
|
- showOutput: false,
|
|
|
- outputTime: [],
|
|
|
- outputSiteCode: undefined,
|
|
|
- siteinfo: {},
|
|
|
- outputLoading: false,
|
|
|
-
|
|
|
- }
|
|
|
- },
|
|
|
- created() {
|
|
|
- this.getSuperFieldList();
|
|
|
- },
|
|
|
- computed: {
|
|
|
- importExcelUrl: function () {
|
|
|
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
|
|
|
- },
|
|
|
- },
|
|
|
- methods: {
|
|
|
- initDictConfig() {
|
|
|
- },
|
|
|
- getSuperFieldList() {
|
|
|
- let fieldList = [];
|
|
|
- fieldList.push({type: 'string', value: 'word', text: '关键词', dictCode: ''})
|
|
|
- fieldList.push({type: 'int', value: 'blackOrWhiteList', text: '黑名单或白名单0为黑名单,1为白名单', dictCode: ''})
|
|
|
- fieldList.push({type: 'int', value: 'isEnable', text: '是否启用该字段1为启用0为停用', dictCode: ''})
|
|
|
- this.superFieldList = fieldList
|
|
|
- },
|
|
|
- handleExportXls(fileName){
|
|
|
- if(!fileName || typeof fileName != "string"){
|
|
|
- fileName = "导出文件"
|
|
|
- }
|
|
|
- let param = this.getQueryParams();
|
|
|
- if(this.selectedRowKeys && this.selectedRowKeys.length>0){
|
|
|
- param['selections'] = this.selectedRowKeys.join(",")
|
|
|
- }
|
|
|
- console.log("导出参数",param)
|
|
|
- downFile(this.url.exportXlsUrl,param).then((data)=>{
|
|
|
- if (!data) {
|
|
|
- this.$message.warning("文件下载失败")
|
|
|
- return
|
|
|
- }
|
|
|
- if (typeof window.navigator.msSaveBlob !== 'undefined') {
|
|
|
- window.navigator.msSaveBlob(new Blob([data],{type: 'application/vnd.ms-excel'}), fileName+'.xlsx')
|
|
|
- }else{
|
|
|
- let url = window.URL.createObjectURL(new Blob([data],{type: 'application/vnd.ms-excel'}))
|
|
|
- let link = document.createElement('a')
|
|
|
- link.style.display = 'none'
|
|
|
- link.href = url
|
|
|
- link.setAttribute('download', fileName+'.xlsx')
|
|
|
- document.body.appendChild(link)
|
|
|
- link.click()
|
|
|
- document.body.removeChild(link); //下载完成移除元素
|
|
|
- window.URL.revokeObjectURL(url); //释放掉blob对象
|
|
|
- }
|
|
|
- })
|
|
|
- },
|
|
|
- handleImportExcel(info){
|
|
|
- if (info.file.status !== 'uploading') {
|
|
|
- console.log(info.file, info.fileList);
|
|
|
- }
|
|
|
- if (info.file.status === 'done') {
|
|
|
- if (info.file.response.success) {
|
|
|
- // this.$message.success(`${info.file.name} 文件上传成功`);
|
|
|
- if (info.file.response.code === 201) {
|
|
|
- let { message, result: { msg, fileUrl, fileName } } = info.file.response
|
|
|
- let href = window._CONFIG['domianURL'] + fileUrl
|
|
|
- this.$warning({
|
|
|
- title: message,
|
|
|
- content: (
|
|
|
- <div>
|
|
|
- <span>{msg}</span><br/>
|
|
|
- <span>具体详情请 <a href={href} target="_blank" download={fileName}>点击下载</a> </span>
|
|
|
- </div>
|
|
|
- )
|
|
|
- })
|
|
|
- } else {
|
|
|
- this.$message.success(info.file.response.message || `${info.file.name} 文件上传成功`)
|
|
|
- }
|
|
|
- this.loadData()
|
|
|
- } else {
|
|
|
- this.$message.error(`${info.file.name} ${info.file.response.message}.`);
|
|
|
- }
|
|
|
- } else if (info.file.status === 'error') {
|
|
|
- if (info.file.response.status === 500) {
|
|
|
- let data = info.file.response
|
|
|
- const token = Vue.ls.get(ACCESS_TOKEN)
|
|
|
- if (token && data.message.includes("Token失效") && !window.location.href.includes('login')) {
|
|
|
- Modal.error({
|
|
|
- title: '登录已过期',
|
|
|
- content: '很抱歉,登录已过期,请重新登录',
|
|
|
- okText: '重新登录',
|
|
|
- mask: false,
|
|
|
- onOk: () => {
|
|
|
- store.dispatch('Logout').then(() => {
|
|
|
- Vue.ls.remove(ACCESS_TOKEN)
|
|
|
- window.location.reload();
|
|
|
- })
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
- } else {
|
|
|
- this.$message.error(`文件上传失败: ${info.file.msg} `);
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- searchQuery() {
|
|
|
- //去除前后空格
|
|
|
- if (this.queryParam.word) {
|
|
|
- this.queryParam.word = this.queryParam.word.replace(/^\s*\*\s|\s*\*\s*$/g, '');
|
|
|
- }
|
|
|
- this.loadData(1);
|
|
|
- this.onClearSelected()
|
|
|
- },
|
|
|
- //站点搜索
|
|
|
- filterOption(input, option) {
|
|
|
- return (
|
|
|
- option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
- )
|
|
|
},
|
|
|
- disabledDate(current) {
|
|
|
- return current && current > dayjs().endOf('day');
|
|
|
+ exportConfig: {
|
|
|
+ name: '询盘列表',
|
|
|
+ url: getExportUrl,
|
|
|
+ params: queryParam,
|
|
|
},
|
|
|
- loadSiteList(){
|
|
|
- const that = this;
|
|
|
- if (that.siteinfo.length > 0) {
|
|
|
- return;
|
|
|
- }
|
|
|
- getAction('/sys/api/getSiteListByUid').then(function (res) {
|
|
|
- if (res.code == 0) {
|
|
|
- that.siteinfo = res.data
|
|
|
- }else {
|
|
|
- that.$message.error('站点获取失败,请刷新重试')
|
|
|
- }
|
|
|
- })
|
|
|
+ importConfig: {
|
|
|
+ url: getImportUrl,
|
|
|
+ success: handleSuccess,
|
|
|
},
|
|
|
- isOutputExcel(){
|
|
|
- const that = this;
|
|
|
- that.outputLoading = true;
|
|
|
- let params = {};
|
|
|
- const startTime = moment(that.outputTime[0]).set({'minute': 0, 'second': 0}).format('YYYY-MM-DD HH:mm:ss');
|
|
|
- const endTime = moment(that.outputTime[1]).set({'minute': 0, 'second': 0}).format('YYYY-MM-DD HH:mm:ss');
|
|
|
- if (that.outputTime && startTime !== endTime) {
|
|
|
- params.startTime = startTime;
|
|
|
- params.endTime = endTime;
|
|
|
- }
|
|
|
- if (that.outputSiteCode){
|
|
|
- params.siteCode = that.outputSiteCode;
|
|
|
- }
|
|
|
- downFile(that.url.enquiryOutputExcelUrl,params).then((res)=>{
|
|
|
- that.outputLoading = false;
|
|
|
- if (!res) {
|
|
|
- this.$message.warning("文件下载失败")
|
|
|
- return
|
|
|
- }
|
|
|
- if (res.code === 500){
|
|
|
- this.$message.error(res.message)
|
|
|
- return;
|
|
|
- }
|
|
|
+ });
|
|
|
|
|
|
+ const [
|
|
|
+ registerTable,
|
|
|
+ { reload, clearSelectedRowKeys, updateTableDataRecord, findTableDataRecord, getDataSource },
|
|
|
+ { rowSelection, selectedRowKeys },
|
|
|
+ ] = tableContext;
|
|
|
|
|
|
- if (typeof window.navigator.msSaveBlob !== 'undefined') {
|
|
|
- window.navigator.msSaveBlob(new Blob([res],{type: 'application/vnd.ms-excel'}), fileName+'.xlsx')
|
|
|
- }else{
|
|
|
- let url = window.URL.createObjectURL(new Blob([res],{type: 'application/vnd.ms-excel'}))
|
|
|
- let link = document.createElement('a')
|
|
|
- link.style.display = 'none'
|
|
|
- link.href = url
|
|
|
- link.setAttribute('download', '导出询盘'+moment().format("HH:mm:ss")+'.xlsx')
|
|
|
- document.body.appendChild(link)
|
|
|
- link.click()
|
|
|
- document.body.removeChild(link); //下载完成移除元素
|
|
|
- window.URL.revokeObjectURL(url); //释放掉blob对象
|
|
|
- }
|
|
|
- }).catch((err)=> {
|
|
|
- that.outputLoading = false
|
|
|
- })
|
|
|
- },
|
|
|
- wasteNumVisible(keyword){
|
|
|
- this.$nextTick(() => {
|
|
|
- this.$refs.XpRecycleBinModal.init(keyword);
|
|
|
- })
|
|
|
- },
|
|
|
+ const { handleEdit, getTableAction, batchHandleDelete, handleDetail, getDropDownAction, handleDelete, handleAdd, searchQuery, searchReset } =
|
|
|
+ useCommonList({ tableContext, modalFormRef, formRef, batchDelete, deleteOne });
|
|
|
+
|
|
|
+ onMounted(() => {
|
|
|
+ getSuperFieldList();
|
|
|
+ });
|
|
|
+
|
|
|
+ function getSuperFieldList() {
|
|
|
+ superFieldList.push({ type: 'string', value: 'word', text: '关键词', dictCode: '' });
|
|
|
+ superFieldList.push({ type: 'int', value: 'blackOrWhiteList', text: '黑名单或白名单0为黑名单,1为白名单', dictCode: '' });
|
|
|
+ superFieldList.push({ type: 'int', value: 'isEnable', text: '是否启用该字段1为启用0为停用', dictCode: '' });
|
|
|
+ }
|
|
|
+
|
|
|
+ function wasteNumVisible(keyword) {
|
|
|
+ nextTick().then(() => {
|
|
|
+ XpRecycleBinModalRef.value.init(keyword);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 成功回调
|
|
|
+ */
|
|
|
+ function handleSuccess() {
|
|
|
+ (selectedRowKeys.value = []) && reload();
|
|
|
}
|
|
|
-}
|
|
|
</script>
|
|
|
-<style scoped>
|
|
|
-@import '~@assets/less/common.less';
|
|
|
-</style>
|