| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703 |
- <template>
- <div class="container">
- <Breadcrumb :items="['menu.jd', 'menu.jd.list']" />
- <a-card class="general-card" :title="$t('menu.jd.list')">
- <a-row>
- <a-col :flex="1">
- <a-form :model="formModel" :label-col-props="{ span: 6 }" :wrapper-col-props="{ span: 18 }"
- label-align="left">
- <a-row :gutter="16">
- <a-col :span="8">
- <a-form-item field="name" label="账号名">
- <a-input v-model="formModel.name" placeholder="输入关键词搜索" />
- </a-form-item>
- </a-col>
- <a-col :span="8">
- <a-form-item field="lastTime" :label="$t('searchTable.form.lastTime')">
- <a-range-picker v-model="formModel.lastTime" style="width: 100%" />
- </a-form-item>
- </a-col>
- <a-col :span="8">
- <a-form-item field="status" :label="$t('searchTable.form.status')">
- <a-select v-model="formModel.status" :options="statusOptions" :placeholder="$t('searchTable.form.selectDefault')
- " />
- </a-form-item>
- </a-col>
- </a-row>
- </a-form>
- </a-col>
- <a-divider style="height: 38px" direction="vertical" />
- <a-col :flex="'86px'" style="text-align: right">
- <a-space direction="vertical" :size="18">
- <a-button type="primary" @click="search">
- <template #icon>
- <icon-search />
- </template>
- {{ $t('searchTable.form.search') }}
- </a-button>
- </a-space>
- </a-col>
- </a-row>
- <a-divider style="margin-top: 0" />
- <a-row style="margin-bottom: 16px">
- <a-col :span="12">
- <a-space>
- <a-button type="primary">
- <template #icon>
- <icon-plus />
- </template>
- {{ $t('searchTable.operation.create') }}
- </a-button>
- </a-space>
- </a-col>
- <a-col :span="12" style="
- display: flex;
- align-items: center;
- justify-content: end;
- ">
- <a-tooltip :content="$t('searchTable.actions.refresh')">
- <div class="action-icon" @click="search"><icon-refresh size="18" /></div>
- </a-tooltip>
- <a-dropdown @select="handleSelectDensity">
- <a-tooltip :content="$t('searchTable.actions.density')">
- <div class="action-icon"><icon-line-height size="18" /></div>
- </a-tooltip>
- <template #content>
- <a-doption v-for="item in densityList" :key="item.value" :value="item.value"
- :class="{ active: item.value === size }">
- <span>{{ item.name }}</span>
- </a-doption>
- </template>
- </a-dropdown>
- <a-tooltip :content="$t('searchTable.actions.columnSetting')">
- <a-popover trigger="click" position="bl" @popup-visible-change="popupVisibleChange">
- <div class="action-icon"><icon-settings size="18" /></div>
- <template #content>
- <div id="tableSetting">
- <div v-for="(item, index) in showColumns" :key="item.dataIndex" class="setting">
- <div style="
- margin-right: 4px;
- cursor: move;
- ">
- <icon-drag-arrow />
- </div>
- <div>
- <a-checkbox v-model="item.checked" @change="
- handleChange(
- $event,
- item as TableColumnData,
- index
- )
- ">
- </a-checkbox>
- </div>
- <div class="title">
- {{
- item.title === '#'
- ? '序列号'
- : item.title
- }}
- </div>
- </div>
- </div>
- </template>
- </a-popover>
- </a-tooltip>
- </a-col>
- </a-row>
- <a-table row-key="id" :loading="loading" :pagination="pagination" :summary="true" summary-text="汇总"
- :columns="(cloneColumns as TableColumnData[])" :data="renderData" :bordered="{ headerCell: true }"
- :row-class="getRowClass" :size="size" @page-change="onPageChange" @page-size-change="onPageSizeChange">
- <template #index="{ record }">
- {{ record.id }}
- </template>
- <template #name="{ record }">
- <a-list-item-meta>
- <template #title>
- {{ record.company }}
- <a-tag color="blue" v-if="record.work_mode == 1">网站推广</a-tag>
- <a-tag color="orange" v-else-if="record.work_mode == 2">媒体导购</a-tag>
- <a-tag color="blue" v-else-if="record.work_mode == 4">订单侠</a-tag>
- <a-tag color="purple" v-else>爬虫</a-tag>
- </template>
- <template #description>
- {{ record.description }}
- </template>
- </a-list-item-meta>
- </template>
- <template #nodeName="{ record }">
- <a-tag color="gray">{{ record.end_point }} - {{ record.nodeName }} </a-tag>
- </template>
- <template #status="{ record }">
- <a-tag v-if="record.status" bordered color="green" @click="changeStatus(record.id, false)">
- <template #icon>
- <icon-check />
- </template>
- 在线
- </a-tag>
- <a-tag v-else bordered color="" @click="changeStatus(record.id, true)">
- <template #icon>
- <icon-stop />
- </template>
- 下线
- </a-tag>
- </template>
- <template #actions="{ record }">
- <a-tag v-if="record.enable_parse" size="small" bordered color="red"
- @click="changeAttr(record.id, 'enable_parse', false)">
- 转链
- </a-tag>
- <a-tag v-else size="small" bordered color="" @click="changeAttr(record.id, 'enable_parse', true)">
- 转链
- </a-tag>
- <span style="margin: 5px;">
- <a-tag v-if="record.enable_coupon" size="small" bordered color="orange"
- @click="changeAttr(record.id, 'enable_coupon', false)">
- 优惠券
- </a-tag>
- <a-tag v-else size="small" bordered color=""
- @click="changeAttr(record.id, 'enable_coupon', true)">
- 优惠券
- </a-tag>
- </span>
- <a-tag v-if="record.enable_sync_report" size="small" bordered color="blue"
- @click="changeAttr(record.id, 'enable_sync_report', false)">
- 同步收益
- </a-tag>
- <a-tag v-else size="small" bordered color="gray"
- @click="changeAttr(record.id, 'enable_sync_report', true)">
- 同步收益
- </a-tag>
- <span style="margin:0 5px;">
- <a-tag v-if="record.enable_sync_order" size="small" bordered color="arcoblue"
- @click="changeAttr(record.id, 'enable_sync_order', false)">
- 同步订单
- </a-tag>
- <a-tag v-else size="small" bordered color="gray"
- @click="changeAttr(record.id, 'enable_sync_order', true)">
- 同步订单
- </a-tag>
- </span>
- </template>
- <template #tags="{ record }">
- <a-tag v-if="record.parse_type" size="small" bordered color="blue">
- {{ record.parse_type }}
- </a-tag>
- <a-tag v-if="record.riskStrategy" size="small" bordered color="orange">
- {{ record.riskStrategy }}-{{ record.launchScene }}
- </a-tag>
- <a-tag v-if="record.riskCookie" size="small" bordered color="red">
- {{ record.riskCookie }}
- </a-tag>
- </template>
- <template #time="{ record }">
- <div style="color:gray;">
- <div>注册:{{ dayjs(record.create_time).format('MM-DD HH:mm') }}</div>
- <div>更新:{{ dayjs(record.last_time).format('MM-DD HH:mm') }}</div>
- <div v-if="dayjs().diff(dayjs(record.login_time), 'hours') < 48">
- 登录:{{ dayjs(record.login_time).format('MM-DD HH:mm') }}</div>
- </div>
- </template>
- <template #summary-cell="{ column, record }">
- <div style="margin:10px auto" v-if="column.slotName == 'hourly_calls_limit'">
- {{ numberFormat(record.current_hourly_calls) }}
- </div>
- <div style="margin:10px auto" v-if="column.slotName == 'daily_calls_limit'">
- {{ numberFormat(record.current_daily_calls) }}
- </div>
- <template v-if="column.dataIndex == 'today_clickNum' ||
- column.dataIndex == 'today_orderNum' ||
- column.dataIndex == 'today_finishOrderNum' ||
- column.dataIndex == 'today_finishCosPrice'">
- <div>{{ numberFormat(record[column.dataIndex]) }}</div>
- </template>
- <template v-if="column.dataIndex == 'today_cosPrice' ||
- column.dataIndex == 'today_finishCosFee' ||
- column.dataIndex == 'today_cosFee'">
- <div>{{ amountFormat(record[column.dataIndex]) }}</div>
- </template>
- </template>
- <template #time_range="{ record }">
- <WorkHourModel :path="updatePath" :record="record" @change="search" />
- </template>
- <template #hourly_calls_limit="{ record }">
- <a-tag bordered
- :color="record.current_hourly_calls > record.hourly_calls_limit && record.hourly_calls_limit > 0 ? 'red' : ''">
- {{ record.current_hourly_calls }} /
- {{ record.hourly_calls_limit }}
- </a-tag>
- </template>
- <template #daily_calls_limit="{ record }">
- <a-tag bordered
- :color="record.current_daily_calls > record.daily_calls_limit && record.daily_calls_limit > 0 ? 'red' : ''">
- {{ record.current_daily_calls }} /
- {{ record.daily_calls_limit }}
- </a-tag>
- </template>
- </a-table>
- </a-card>
- </div>
- </template>
- <script lang="ts" setup>
- import { useRouter, useRoute } from 'vue-router';
- import { computed, ref, reactive, watch, nextTick } from 'vue';
- import { useI18n } from 'vue-i18n';
- import dayjs from 'dayjs';
- import useLoading from '@/hooks/loading';
- import { queryJdPool, JdPoolRecord, JdPoolParams } from '@/api/jd';
- import { Pagination } from '@/types/global';
- import { Modal, Message } from '@arco-design/web-vue';
- import type { SelectOptionData } from '@arco-design/web-vue/es/select/interface';
- import type { TableColumnData } from '@arco-design/web-vue/es/table/interface';
- import cloneDeep from 'lodash/cloneDeep';
- import Sortable from 'sortablejs';
- import { numberFormat, amountFormat } from '@/utils/util';
- import { UpdateAccountModel, UpdateAccount } from '@/api/app';
- import WorkHourModel from '@/components/WorkHourModel.vue';
- const updatePath = '/api/JdUnion/update';
- type SizeProps = 'mini' | 'small' | 'medium' | 'large';
- type Column = TableColumnData & { checked?: true };
- const generateFormModel = () => {
- return {
- name: '',
- lastTime: [],
- status: '',
- show_hide: false,
- sort: 'status',
- order: 'descending',
- };
- };
- const router = useRouter();
- const route = useRoute();
- const { loading, setLoading } = useLoading(true);
- const { t } = useI18n();
- const renderData = ref<JdPoolRecord[]>([]);
- const formModel = ref(generateFormModel());
- const cloneColumns = ref<Column[]>([]);
- const showColumns = ref<Column[]>([]);
- const size = ref<SizeProps>('small');
- const basePagination: Pagination = {
- current: 1,
- pageSize: 50,
- showPageSize: true,
- showTotal: true,
- pageSizeOptions: [10, 20, 50, 100, 200, 500]
- };
- const pagination = reactive({
- ...basePagination,
- });
- const densityList = computed(() => [
- {
- name: t('searchTable.size.mini'),
- value: 'mini',
- },
- {
- name: t('searchTable.size.small'),
- value: 'small',
- },
- {
- name: t('searchTable.size.medium'),
- value: 'medium',
- },
- {
- name: t('searchTable.size.large'),
- value: 'large',
- },
- ]);
- const columns = computed<TableColumnData[]>(() => [
- {
- title: '#',
- dataIndex: 'index',
- slotName: 'index',
- width: 50,
- },
- {
- title: '账号名',
- dataIndex: 'name',
- slotName: 'name',
- width: 250,
- },
- {
- title: '',
- slotName: 'tags',
- width: 40,
- },
- {
- title: '工作时间',
- dataIndex: 'time_range',
- slotName: 'time_range',
- align: 'right',
- width: 200,
- },
- {
- title: '当日推广效果',
- children: [
- {
- title: '点击量',
- dataIndex: 'today_clickNum',
- width: 100,
- align: 'right',
- render: (e: any) => numberFormat(e.record.today_clickNum)
- },
- {
- title: '有效订单',
- dataIndex: 'today_orderNum',
- width: 100,
- align: 'right',
- render: (e: any) => numberFormat(e.record.today_orderNum)
- },
- {
- title: '订单金额',
- dataIndex: 'today_cosPrice',
- width: 150,
- align: 'right',
- render: (e: any) => amountFormat(e.record.today_cosPrice)
- },
- {
- title: '预估收入',
- dataIndex: 'today_cosFee',
- width: 150,
- align: 'right',
- render: (e: any) => amountFormat(e.record.today_cosFee)
- },
- //
- ]
- },
- {
- title: '小时调用',
- slotName: 'hourly_calls_limit',
- dataIndex: 'current_hourly_calls',
- align: 'right',
- width: 120,
- },
- {
- title: '当日调用',
- slotName: 'daily_calls_limit',
- dataIndex: 'current_daily_calls',
- align: 'right',
- width: 150,
- },
- {
- title: '运行节点',
- slotName: 'nodeName',
- width: 120,
- },
- {
- title: '状态',
- slotName: 'status',
- width: 100,
- },
- {
- title: '分类',
- slotName: 'actions',
- width: 200,
- align: 'center',
- },
- {
- title: '时间',
- slotName: 'time',
- width: 170,
- },
- ]);
- const statusOptions = computed<SelectOptionData[]>(() => [
- {
- label: '全部',
- value: '',
- },
- {
- label: '在线',
- value: 'online',
- },
- {
- label: '下线',
- value: 'offline',
- },
- ]);
- const getRowClass = (record: JdPoolRecord) => {
- return record.is_hide ? 'special-table-row' : '';
- };
- if (route.query.show_hide === '1') {
- formModel.value.show_hide = true;
- }
- const fetchData = async (
- params: JdPoolParams = {
- current: 1,
- pageSize: 50,
- show_hide: false,
- sort: 'status',
- order: 'descending',
- getTotal: true,
- }
- ) => {
- if (route.query.show_hide === '1') {
- params.show_hide = true;
- }
- setLoading(true);
- try {
- const { data } = await queryJdPool(params);
- if (!data) return;
- // const { data } = await queryJdPool(params);
- renderData.value = data.list;
- pagination.current = data.page;
- pagination.total = data.count;
- } catch (err) {
- console.log(err);
- // you can report use errorHandler or other
- } finally {
- setLoading(false);
- }
- };
- const changeItem = async (data: JdPoolRecord) => {
- router.push({ name: 'updateCookies' });
- };
- const billView = async (data: JdPoolRecord) => {
- router.push({ name: 'taobao_bill_dailys', query: { name: data.company } });
- };
- const changeStatus = async (id: number, val: any) => {
- const args = {
- id,
- name: 'status',
- val
- } as UpdateAccountModel;
- Modal.confirm({
- title: '确认提示',
- content: '确定要更改状态吗?',
- okText: '确认',
- cancelText: '取消',
- async onOk() {
- setLoading(true);
- try {
- const { data } = await UpdateAccount(updatePath, args);
- console.log(data, data.msg);
- const msg = data.msg || '更新成功!';
- if (data.success) {
- Message.success(msg);
- search();
- } else {
- Message.error(data.msg);
- }
- } catch (e) { console.log(e) }
- setLoading(false);
- }
- });
- };
- const changeAttr = async (id: number, name: string, val: any) => {
- const args = {
- id,
- name,
- val
- } as UpdateAccountModel;
- Modal.confirm({
- title: '确认提示',
- content: '确定要更改状态吗?',
- okText: '确认',
- cancelText: '取消',
- async onOk() {
- setLoading(true);
- try {
- const { data } = await UpdateAccount(updatePath, args);
- console.log(data, data.msg);
- const msg = data.msg || '更新成功!';
- if (data.success) {
- Message.success(msg);
- search();
- } else {
- Message.error(data.msg);
- }
- } catch (e) { console.log(e) }
- setLoading(false);
- }
- });
- };
- const search = () => {
- fetchData({
- ...basePagination,
- ...formModel.value,
- } as unknown as JdPoolParams);
- };
- const onPageChange = (current: number) => {
- fetchData({
- ...basePagination,
- ...formModel.value,
- current
- } as unknown as JdPoolParams);
- };
- const onPageSizeChange = (current: number) => {
- basePagination.pageSize = current;
- pagination.pageSize = current;
- fetchData({
- ...basePagination,
- ...formModel.value,
- current: 1,
- } as unknown as JdPoolParams);
- };
- fetchData();
- const reset = () => {
- formModel.value = generateFormModel();
- };
- const handleSelectDensity = (
- val: string | number | Record<string, any> | undefined,
- e: Event
- ) => {
- size.value = val as SizeProps;
- };
- const handleChange = (
- checked: boolean | (string | boolean | number)[],
- column: Column,
- index: number
- ) => {
- if (!checked) {
- cloneColumns.value = showColumns.value.filter(
- (item) => item.dataIndex !== column.dataIndex
- );
- } else {
- cloneColumns.value.splice(index, 0, column);
- }
- };
- const exchangeArray = <T extends Array<any>>(
- array: T,
- beforeIdx: number,
- newIdx: number,
- isDeep = false
- ): T => {
- const newArray = isDeep ? cloneDeep(array) : array;
- if (beforeIdx > -1 && newIdx > -1) {
- // 先替换后面的,然后拿到替换的结果替换前面的
- newArray.splice(
- beforeIdx,
- 1,
- newArray.splice(newIdx, 1, newArray[beforeIdx]).pop()
- );
- }
- return newArray;
- };
- const popupVisibleChange = (val: boolean) => {
- if (val) {
- nextTick(() => {
- const el = document.getElementById(
- 'tableSetting'
- ) as HTMLElement;
- const sortable = new Sortable(el, {
- onEnd(e: any) {
- const { oldIndex, newIndex } = e;
- exchangeArray(cloneColumns.value, oldIndex, newIndex);
- exchangeArray(showColumns.value, oldIndex, newIndex);
- },
- });
- });
- }
- };
- watch(
- () => columns.value,
- (val) => {
- cloneColumns.value = cloneDeep(val);
- cloneColumns.value.forEach((item, index) => {
- item.checked = true;
- });
- showColumns.value = cloneDeep(cloneColumns.value);
- },
- { deep: true, immediate: true }
- );
- </script>
- <script lang="ts">
- export default {
- name: 'SearchTable',
- };
- </script>
- <style scoped lang="less">
- .container {
- padding: 0 20px 20px 20px;
- }
- :deep(.arco-table-th) {
- &:last-child {
- .arco-table-th-item-title {
- margin-left: 16px;
- }
- }
- }
- .action-icon {
- margin-left: 12px;
- cursor: pointer;
- }
- .active {
- color: #0960bd;
- background-color: #e3f4fc;
- }
- .setting {
- display: flex;
- align-items: center;
- width: 200px;
- .title {
- margin-left: 12px;
- cursor: pointer;
- }
- }
- :deep(.special-table-row td) {
- background-color: var(--color-warning-light-2) !important;
- }
- </style>
|