pms-aomei/src/views/modules/pms/order/index.vue

33 lines
648 B
Vue
Raw Normal View History

2023-03-07 15:29:08 +08:00
<template>
<ListViewWithHead :table-configs="tableConfigs" :head-config="headFormConfigs" :dialog-configs="dialogConfigs" />
</template>
<script>
import initConfig from './config';
import ListViewWithHead from './components/ListViewWithHead.vue';
export default {
name: 'OrderView',
components: { ListViewWithHead },
provide() {
return {
urls: this.allUrls
}
},
data() {
const { tableConfigs, headFormConfigs, urls, dialogConfigs } = initConfig.call(this);
return {
tableConfigs,
headFormConfigs,
allUrls: urls,
dialogConfigs,
};
},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped></style>