123456789101112131415161718192021222324252627282930 |
- /*
- * @Author: your name
- * @Date: 2021-09-18 15:19:29
- * @LastEditTime: 2021-12-02 09:28:23
- * @LastEditors: Please set LastEditors
- * @Description: 筛选条件的 formItems 和 propFormData
- * @FilePath: \hyyfClient\src\views\BioSafety\personAdmin\queryCondition.config.js
- */
- import { timeDate } from '../../../utils/index'
- export const formItems = [
- // {
- // type: 'select',
- // label: '位置:',
- // placeholder: '请选择位置',
- // field: 'place',
- // options: []
- // },
- {
- type: 'datepicker',
- label: '时间:',
- placeholder: ['开始时间', '结束时间'],
- field: 'time'
- }
- ]
- export const propFormData = {
- // place: '',
- time: [timeDate(new Date().getTime() - 1000*60*60*24), timeDate(new Date().getTime())]
- }
|