123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <toolbar-container :fields="fields" v-on="$listeners" />
- </template>
- <script>
- import AUDITTYPE from '@/const/auditType';
- export default {
- name: 'ImageGoodsManagementToolbar',
- data() {
- return {
- fields: [
- // TODO 上传者
- {
- 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>
|