| | |
| | | |
| | | import { h } from 'vue'; |
| | | |
| | | import { DICT_TYPE } from '..\..\..\..\packages\constants\src'; |
| | | import { erpPriceInputFormatter, formatDateTime } from '..\..\..\..\packages\utils\src'; |
| | | import { DICT_TYPE } from '@vben/constants'; |
| | | import { erpPriceInputFormatter, formatDateTime } from '@vben/utils'; |
| | | |
| | | import { DictTag } from '#/components/dict-tag'; |
| | | |
| | |
| | | { |
| | | field: 'totalPrice', |
| | | label: '合同金额(元)', |
| | | render: (val) => erpPriceInputFormatter(val) as string, |
| | | }, |
| | | { |
| | | field: 'depositPrice', |
| | | label: '定金金额(元)', |
| | | render: (val) => erpPriceInputFormatter(val) as string, |
| | | }, |
| | | { |
| | |
| | | render: (val) => erpPriceInputFormatter(val) as string, |
| | | }, |
| | | { |
| | | field: 'depositPrice', |
| | | label: '定金金额(元)', |
| | | render: (val) => erpPriceInputFormatter(val) as string, |
| | | }, |
| | | { |
| | | field: 'orderDate', |
| | | label: '下单时间', |
| | | render: (val) => formatDateTime(val) as string, |
| | |
| | | label: '公司签约人', |
| | | }, |
| | | { |
| | | field: 'orderNo', |
| | | label: '销售订单', |
| | | slot: 'orderNo', // 使用 slot 自定义渲染 |
| | | }, |
| | | { |
| | | field: 'remark', |
| | | label: '备注', |
| | | }, |