wupengfei
5 天以前 2174f758e8a963964198e092f0d528ef1ae9b81e
feat: 页面
2个文件已修改
72 ■■■■■ 已修改文件
src/views/Reward/FinancialApproval.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/constants/columns.ts 68 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Reward/FinancialApproval.vue
@@ -47,7 +47,7 @@
      </ProTableQueryFilterBar>
      <ProTableV2
        v-bind="proTableProps"
        :columns="RewardApplyTradeCheckColumns"
        :columns="FinancialApprovalColumns"
        :operationBtns="operationBtns"
      >
      </ProTableV2>
@@ -84,7 +84,7 @@
import { ModelValueType } from 'element-plus';
import RewardApplyTradeCheckDialog from './components/RewardApplyTradeCheckDialog.vue';
import { convertApi2FormUrlOnlyOne, format } from '@/utils';
import { RewardApplyTradeCheckColumns } from './constants';
import { FinancialApprovalColumns } from './constants';
import { useIndustrialParkDropDownList } from '@/hooks/industrialPark';
defineOptions({
src/views/Reward/constants/columns.ts
@@ -87,3 +87,71 @@
  transferToAmount: '平台拨付金额',
  remark: '备注',
};
export const FinancialApprovalColumns = defineColumns([
  {
    id: '1',
    enCode: 'userName',
    name: '帐号',
  },
  {
    id: '2',
    enCode: 'enterpriseName',
    name: '企业名称',
  },
  {
    id: '3',
    enCode: 'societyCreditCode',
    name: '信用代码',
  },
  {
    id: '4',
    enCode: 'contactPhone',
    name: '电话',
  },
  {
    id: '5',
    enCode: 'authType',
    name: '企业类型',
  },
  {
    id: '6',
    enCode: 'parkName',
    name: '所属园区',
  },
  {
    id: '7',
    enCode: 'parkTypeName',
    name: '园区类型',
  },
  {
    id: '8',
    enCode: 'payRemark',
    name: '消费类型',
  },
  {
    id: '9',
    enCode: 'tradeAmount',
    name: '申请出账金额',
  },
  {
    id: '10',
    enCode: 'tradeTime',
    name: '出账审核日期',
  },
  {
    id: '11',
    enCode: 'remianAmount',
    name: '资金余额',
  },
  {
    id: '12',
    enCode: 'auditStatus',
    name: '财务审核状态',
  },
  {
    id: '13',
    enCode: 'a',
    name: '审核时间',
  },
]);