|
@@ -10,7 +10,10 @@ import searchFormConfig from "./config/search.config";
|
|
|
import contentConfig from "./config/content.config";
|
|
|
import { template } from "./config/xls-template";
|
|
|
import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
|
|
|
-import { cgd_type_list, xs_order_source_options } from "/@/utils/status";
|
|
|
+import {
|
|
|
+ xs_order_source_options,
|
|
|
+ xs_order_type_options
|
|
|
+} from "/@/utils/status";
|
|
|
import { capital_status_list } from "./config/configs";
|
|
|
import { usePermission } from "/@/hooks/core/usePermission";
|
|
|
import { useUserInfo } from "/@/hooks/core/useUser";
|
|
@@ -100,9 +103,26 @@ function onDownloadTemplate() {
|
|
|
<el-table-column
|
|
|
label="资金认领编号"
|
|
|
prop="logNo"
|
|
|
- width="160"
|
|
|
+ width="188"
|
|
|
+ fixed="left"
|
|
|
show-overflow-tooltip
|
|
|
/>
|
|
|
+ <el-table-column
|
|
|
+ label="认领状态"
|
|
|
+ prop="status"
|
|
|
+ width="100"
|
|
|
+ show-overflow-tooltip
|
|
|
+ >
|
|
|
+ <template #="{ $index }">
|
|
|
+ <el-tag
|
|
|
+ >{{
|
|
|
+ capital_status_list.find(
|
|
|
+ t => t.value === row.child[$index].status
|
|
|
+ )?.label || "--"
|
|
|
+ }}
|
|
|
+ </el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
label="订单编号"
|
|
|
prop="orderCode"
|
|
@@ -118,25 +138,10 @@ function onDownloadTemplate() {
|
|
|
<el-table-column
|
|
|
label="商品名称"
|
|
|
prop="goodName"
|
|
|
- width="180"
|
|
|
+ minWidth="180"
|
|
|
show-overflow-tooltip
|
|
|
/>
|
|
|
- <el-table-column
|
|
|
- label="认领状态"
|
|
|
- prop="status"
|
|
|
- width="90"
|
|
|
- show-overflow-tooltip
|
|
|
- >
|
|
|
- <template #="{ $index }">
|
|
|
- <el-tag
|
|
|
- >{{
|
|
|
- capital_status_list.find(
|
|
|
- t => t.value === row.child[$index].status
|
|
|
- )?.label || "--"
|
|
|
- }}
|
|
|
- </el-tag>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+
|
|
|
<el-table-column
|
|
|
label="订单来源"
|
|
|
prop="qrdSource"
|
|
@@ -162,7 +167,7 @@ function onDownloadTemplate() {
|
|
|
<template #="{ $index }">
|
|
|
<el-tag
|
|
|
>{{
|
|
|
- cgd_type_list.find(
|
|
|
+ xs_order_type_options.find(
|
|
|
t => t.value === row.child[$index].qrdType
|
|
|
)?.label
|
|
|
}}
|