1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <toolbar-container :fields="fields" v-on="$listeners" />
- </template>
- <script>
- import AUDITTYPE from '@/const/auditType';
- export default {
- name: 'PhotoVerifyToolbar',
- data() {
- return {
- fields: [
- {
- type: 'ActivitySelect',
- name: 'activityId',
- label: '活动'
- },
- {
- type: 'dateArray',
- name: 'date',
- label: '上传时间',
- apiName: ['startTime', 'endTime']
- },
- {
- type: 'select',
- name: 'auditStatus',
- label: '状态',
- options: AUDITTYPE,
- format: val => val
- }
- ]
- };
- }
- };
- </script>
- <style type="scss" scoped></style>
|