123456789101112131415161718192021222324252627282930313233 |
- <template>
- <toolbar-container :fields="fields" v-on="$listeners" />
- </template>
- <script>
- import TYPE from '@/const/type';
- export default {
- name: 'BannerManagementToolbar',
- data() {
- return {
- fields: [
- {
- type: 'DataSelect',
- name: 'type',
- label: '位置',
- params: this.$dict.BANNER_TYPE
- },
- {
- type: 'select',
- name: 'isShow',
- label: '状态',
- options: TYPE,
- format: val => (val !== null && val !== '' ? !!val : null)
- }
- ]
- };
- }
- };
- </script>
- <style type="scss" scoped></style>
|