|
@@ -3,59 +3,61 @@ import { checkTypeOptions, ticketReturnStatusOptions } from "/@/utils/status";
|
|
|
|
|
|
const searchFormConfig: FormConfig = {
|
|
|
formItems: [
|
|
|
+ {
|
|
|
+ field: "create_timer",
|
|
|
+ type: "date_picker",
|
|
|
+ otherOptions: {
|
|
|
+ type: "daterange",
|
|
|
+ startProp: "start",
|
|
|
+ endProp: "end",
|
|
|
+ startPlaceholder: "新建起始时间",
|
|
|
+ endPlaceholder: "新建结束时间"
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
field: "status",
|
|
|
type: "select",
|
|
|
placeholder: "审核状态",
|
|
|
options: ticketReturnStatusOptions
|
|
|
},
|
|
|
+ {
|
|
|
+ field: "companyNo",
|
|
|
+ type: "business-query"
|
|
|
+ },
|
|
|
{
|
|
|
field: "checkApi",
|
|
|
type: "select",
|
|
|
placeholder: "发票查验方式",
|
|
|
options: checkTypeOptions
|
|
|
},
|
|
|
- {
|
|
|
- field: "payNo",
|
|
|
- type: "input",
|
|
|
- placeholder: "对账编码"
|
|
|
- },
|
|
|
{
|
|
|
field: "hpNo",
|
|
|
type: "input",
|
|
|
- placeholder: "对账申请编码"
|
|
|
+ placeholder: "对账回票编码"
|
|
|
},
|
|
|
{
|
|
|
- field: "companyNo",
|
|
|
- type: "business-query"
|
|
|
+ field: "payNo",
|
|
|
+ type: "input",
|
|
|
+ placeholder: "对账编码"
|
|
|
},
|
|
|
+
|
|
|
{
|
|
|
field: "apply_name",
|
|
|
type: "input",
|
|
|
placeholder: "申请人"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "create_timer",
|
|
|
- type: "date_picker",
|
|
|
- otherOptions: {
|
|
|
- type: "daterange",
|
|
|
- startProp: "start",
|
|
|
- endProp: "end",
|
|
|
- startPlaceholder: "新建起始时间",
|
|
|
- endPlaceholder: "新建结束时间"
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- field: "open_timer",
|
|
|
- type: "date_picker",
|
|
|
- otherOptions: {
|
|
|
- type: "daterange",
|
|
|
- startProp: "open_start",
|
|
|
- endProp: "open_end",
|
|
|
- startPlaceholder: "开票起始时间",
|
|
|
- endPlaceholder: "开票结束时间"
|
|
|
- }
|
|
|
}
|
|
|
+
|
|
|
+ // {
|
|
|
+ // field: "open_timer",
|
|
|
+ // type: "date_picker",
|
|
|
+ // otherOptions: {
|
|
|
+ // type: "daterange",
|
|
|
+ // startProp: "open_start",
|
|
|
+ // endProp: "open_end",
|
|
|
+ // startPlaceholder: "开票起始时间",
|
|
|
+ // endPlaceholder: "开票结束时间"
|
|
|
+ // }
|
|
|
+ // }
|
|
|
]
|
|
|
};
|
|
|
|