|
@@ -85,7 +85,19 @@ export default function useColumns() {
|
|
|
clearable: true,
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ item: { key: "sumTimeRange", title: "汇总时间", span: 12 },
|
|
|
+ attr: {
|
|
|
+ is: "el-date-picker",
|
|
|
+ type: "datetimerange",
|
|
|
+ placeholder: "请选择",
|
|
|
+ valueFormat: "yyyy-MM-dd HH:mm:ss",
|
|
|
+ clearable: true,
|
|
|
+ }
|
|
|
+ },
|
|
|
];
|
|
|
+
|
|
|
+
|
|
|
const TableColumns = [
|
|
|
{
|
|
|
item: { key: "status", title: "单据状态", width: 100, },
|
|
@@ -192,6 +204,10 @@ export default function useColumns() {
|
|
|
clearable: true,
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ item: { key: "createTime", title: "汇总时间", width: 150, },
|
|
|
+ attr: {}
|
|
|
+ },
|
|
|
].map(({ item, attr }) => ({
|
|
|
attr,
|
|
|
item: {
|