| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- <template>
- <cwg-page-wrapper class="create-page" :isHeaderFixed="true">
- <cwg-header :title="t('Documentary.TundManagement.item10')" />
- <view class="info-card">
- <cwg-complex-search :fields="filterFields" v-model="searchParams" @search="handleSearch"
- @reset="handleReset" />
- <cwg-tabel ref="tableRef" :columns="currentColumns" :immediate="false" :queryParams="search" :api="listApi"
- :show-operation="false">
- <template #status="{ row }">
- <view v-if="getStatusText(row)" class="status-tag" :class="getStatusClass(row.status)">
- {{ getStatusText(row) }}
- </view>
- <view v-else></view>
- </template>
- <template #accountType="{ row }">
- {{ getAccountTypeText(row.dealLoginType || row.followAccountType) }}
- </template>
- </cwg-tabel>
- </view>
- </cwg-page-wrapper>
- </template>
- <script setup lang="ts">
- import { computed, ref, nextTick, watch } from 'vue';
- import { useI18n } from 'vue-i18n';
- const { t, locale } = useI18n();
- import { documentaryApi } from '@/service/documentary';
- import useUserStore from "@/stores/use-user-store";
- const userStore = useUserStore();
- const userInfo = computed(() => userStore.userInfo);
- import { useAccountOptions } from '@/composables/useAccountOptions'
- const { loginOptions, isLoaded, isSuccess } = useAccountOptions()
- import { useFilters } from '@/composables/useFilters'
- const { numberFormat, numberDesensitization, numberDecimal } = useFilters()
- const search = ref({
- type: 1, followLogin: null,
- })
- const typeMap = computed(() => ([
- { value: 1, text: t('Documentary.TundManagement.item58') },
- { value: 2, text: t('Documentary.TundManagement.item47') },
- ]));
- const isZh = computed(() => ['cn', 'zh', 'zhHant'].includes(locale.value));
- // 账户类型映射
- const accountTypeMap = {
- 1: 'AccountType.ClassicAccount',
- 2: 'AccountType.SeniorAccount',
- 5: 'AccountType.SpeedAccount',
- 6: 'AccountType.SpeedAccount',
- 7: 'AccountType.StandardAccount',
- 8: 'AccountType.CentAccount'
- }
- // 拒绝原因映射(示例)
- const reasons = ref({})
- // 根据类型获取列配置
- const getColumnsByType = (type: number) => {
- switch (type) {
- case 1: //信号源申请
- return [
- {
- prop: 'dealLogin',
- label: t('Documentary.TundManagement.item25'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => numberDesensitization(row.dealLogin) || '--'
- },
- {
- prop: 'dealPlatform',
- label: t('Label.Platform'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => row.dealPlatform || '--'
- },
- {
- prop: 'dealLoginType',
- label: t('Label.AccountType'),
- align: 'center',
- slot: 'accountType' // 多语言枚举
- },
- {
- prop: 'dealLeverage',
- label: t('Label.Leverage'),
- align: 'center',
- formatter: ({ row }) => row.dealLeverage ? `1:${row.dealLeverage}` : '--'
- },
- {
- prop: 'distributionType',
- label: t('Documentary.TundManagement.item38'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => row.distributionType === 1 ? t('Documentary.TundManagement.item59') : '--'
- },
- {
- prop: 'distributionRatio',
- label: t('Documentary.TundManagement.item39'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => (row.distributionRatio || '0') + '%'
- },
- {
- prop: 'settlementCycle',
- label: t('Documentary.TundManagement.item55'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => row.settlementCycle || '--'
- },
- {
- prop: 'approveTime',
- label: t('Documentary.TundManagement.item56'),
- align: 'center',
- formatter: ({ row }) => row.approveTime || '--'
- },
- {
- prop: 'status',
- label: t('Documentary.TundManagement.item57'),
- align: 'center',
- slot: 'status' // 状态
- },
- {
- prop: 'approveDesc',
- label: t('Label.Note'),
- align: 'center',
- type: 'note' // 备注多语言
- }
- ]
- case 2: // 取消记录
- return [
- {
- prop: 'dealNickname',
- label: t('Documentary.tradingCenter.item1'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => row.dealNickname || '--'
- },
- {
- prop: 'dealLogin',
- label: t('Documentary.tradingCenter.item18'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => numberDesensitization(row.dealLogin) || '--'
- },
- {
- prop: 'followLogin',
- label: t('Documentary.console.item28'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => row.followLogin || '--'
- },
- {
- prop: 'followPlatform',
- label: t('Label.Platform'),
- align: 'center',
- formatter: ({ row }) => row.followPlatform || '--'
- },
- {
- prop: 'followLoginType',
- label: t('Label.AccountType'),
- align: 'center',
- slot: 'followAccountType'
- },
- {
- prop: 'followLeverage',
- label: t('Label.Leverage'),
- align: 'center',
- formatter: ({ row }) => row.followLeverage ? `1:${row.followLeverage}` : '--'
- },
- {
- prop: 'distributionType',
- label: t('Documentary.TundManagement.item38'),
- align: 'center',
- headerAlign: 'center',
- formatter: () => t('Documentary.TundManagement.item59')
- },
- {
- prop: 'distributionRatio',
- label: t('Documentary.TundManagement.item39'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => (row.distributionRatio || '0') + '%'
- },
- {
- prop: 'settlementCycle',
- label: t('Documentary.TundManagement.item55'),
- align: 'center',
- headerAlign: 'center',
- formatter: ({ row }) => row.settlementCycle || '--'
- },
- {
- prop: 'timeRange',
- label: t('Documentary.TundManagement.item51') + ' / ' + t('Documentary.TundManagement.item52'),
- align: 'center',
- slot: 'timeRange' // 开始-结束时间
- },
- {
- prop: 'endTime',
- label: t('Documentary.TundManagement.item56'),
- align: 'center',
- formatter: ({ row }) => row.endTime || '--'
- }
- ]
- }
- }
- // 动态传入筛选字段配置
- const filterFields = computed(() => [
- { key: 'type', type: 'select', label: t('Custom.PaymentHistory.payType'), placeholder: t('placeholder.choose'), options: typeMap.value, defaultValue: 1 },
- isLoaded.value && isSuccess.value && { key: 'followLogin', type: 'select', label: t('Custom.PaymentHistory.TradingAccount'), placeholder: t('placeholder.login'), options: loginOptions || [], defaultValue: search?.login || undefined, clearable: true },
- { key: 'date', label: t('placeholder.Start') + ' - ' + t('placeholder.End'), type: 'daterange' }
- ])
- const searchParams = ref({})
- const tableRef = ref(null)
- const handleSearch = (params) => {
- search.value = params
- nextTick(() => {
- tableRef.value.refreshTable()
- })
- }
- const handleReset = (params) => {
- search.value = params
- nextTick(() => {
- tableRef.value.refreshTable()
- })
- }
- // 当前列配置
- const currentColumns = computed(() => getColumnsByType(search.value.type))
- // 获取状态文本
- const getStatusText = (row: any) => {
- const status = row.status
- // 根据不同记录类型处理状态
- if (search.value.type === 1) {
- if (status === 0) return t('State.ToBeProcessed')
- if (status === 2) return t('State.Completed')
- if (status === 1) return t('State.InTheProcessing')
- if (status === 3) return t('State.Refused')
- } else if (search.value.type === 2) {
- if (status === 1) return t('State.ToBeProcessed')
- if (status === 2 && row.leverageStatus === 2) return t('State.Completed')
- if (status === 2 && row.leverageStatus === 1) return t('State.InTheProcessing')
- if (status === 3) return t('State.Refused')
- } else if (search.value.type === 3 || search.value.type === 5) {
- if (status === 1) return t('State.ToBeProcessed')
- if (status === 2 && row.withdrawStatus === 2 && row.depositStatus === 2) return t('State.Completed')
- if (status === 2 && (row.withdrawStatus === 1 || row.depositStatus === 1)) return t('State.InTheProcessing')
- if (status === 3 || row.withdrawStatus === 3 || row.depositStatus === 3) return t('State.Refused')
- } else {
- // 活动申请等
- if (status === 1) return t('State.ToBeProcessed')
- if (status === 2) return t('State.Completed')
- if (status === 3) return t('State.Refused')
- }
- return ''
- }
- // 获取状态样式类
- const getStatusClass = (status: number) => {
- const classMap: Record<number, string> = {
- 1: 'status-pending',
- 2: 'status-success',
- 3: 'status-processing',
- 4: 'status-danger'
- }
- return classMap[status] || ''
- }
- // 获取账户类型文本
- const getAccountTypeText = (type: number) => {
- const key = accountTypeMap[type as keyof typeof accountTypeMap]
- return key ? t(key) : '--'
- }
- // 格式化数字
- const formatNumber = (value: string | number) => {
- if (!value) return '--'
- const num = Number(value)
- return isNaN(num) ? '--' : num.toFixed(2)
- }
- // 格式化备注
- const formatNote = (approveDesc: string) => {
- if (!approveDesc) return '--'
- const reason = reasons.value[approveDesc as keyof typeof reasons.value]
- if (reason) {
- return isZh.value ? reason.content : reason.enContent
- }
- return approveDesc
- }
- const listApi = ref(null)
- watch(() => search.value.type, (newVal) => {
- switch (newVal) {
- case 1:
- search.value.status = null
- search.value.followLogin = null
- listApi.value = documentaryApi.followDealList
- break
- case 2:
- search.value.status = null
- search.value.followLogin = null
- listApi.value = documentaryApi.followDealSubscribeList
- search.value.status = 2
- break
- }
- }, { immediate: true })
- </script>
- <style scoped lang="scss">
- @import "@/uni.scss";
- .avatar {
- width: px2rpx(60);
- height: px2rpx(60);
- border-radius: 4px;
- }
- .content-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: px2rpx(20);
- font-weight: 500;
- .content-title-btns {
- margin: px2rpx(8) 0;
- display: flex;
- align-items: center;
- justify-content: center;
- gap: px2rpx(12);
- .btn-primary {
- min-width: px2rpx(120);
- background-color: var(--color-error);
- color: white;
- padding: 0 px2rpx(12);
- border: none;
- font-size: px2rpx(14);
- text-align: center;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- gap: px2rpx(8);
- }
- .btn-primary:active {
- background-color: #cf1322;
- ;
- }
- }
- }
- .operation-btn {
- :deep(span) {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: px2rpx(4);
- cursor: pointer;
- background-color: var(--color-slate-150);
- padding: px2rpx(8) 0;
- }
- }
- .operation-btn.disabled {
- cursor: not-allowed;
- opacity: 0.5;
- }
- .search-bar {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- flex-wrap: wrap;
- gap: px2rpx(16);
- margin: px2rpx(16) 0;
- .cwg-combox,
- .uni-easyinput,
- .uni-date {
- width: px2rpx(240) !important;
- flex: none;
- }
- }
- </style>
|