wupengfei
7 天以前 650069714a250c746164c262a01854d3cf99ac80
src/views/TaskManage/TaskManageList.vue
@@ -70,7 +70,7 @@
  EnumTaskRecommendStatusText,
  EnumTaskApplyStatusText,
} from '@/constants';
import { format } from '@/utils';
import { format, OrderUtils } from '@/utils';
import { Message } from '@bole-core/core';
defineOptions({
@@ -160,10 +160,8 @@
      endTime: { type: 'date', format: 'YYYY-MM-DD' },
      serviceFee: {
        type: 'money',
        formatter: (row) => {
          return row.billingMethod === EnumBillingMethod.Face
            ? ''
            : `${row.serviceFee}${EnumBillingMethodUnitText[row.billingMethod]}`;
        formatter: (row: API.GetTaskInfosQueryResultItem) => {
          return OrderUtils.getServiceFeeText(row.serviceFee, row.billingMethod);
        },
      },
    },