add 配方详情
This commit is contained in:
31
src/views/modules/pms/bomDetails/index.vue
Normal file
31
src/views/modules/pms/bomDetails/index.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<template>
|
||||
<ListView :table-config="tableConfig" :dialog-configs="dialogConfigs" :listQueryExtra="['name']" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import initConfig from './config';
|
||||
import ListView from '@/views/atomViews/ListView.vue';
|
||||
|
||||
export default {
|
||||
name: 'BomDetailsView',
|
||||
components: { ListView },
|
||||
provide() {
|
||||
return {
|
||||
urls: this.allUrls
|
||||
}
|
||||
},
|
||||
data() {
|
||||
const { tableConfig, urls, dialogConfigs } = initConfig.call(this);
|
||||
return {
|
||||
tableConfig,
|
||||
allUrls: urls,
|
||||
dialogConfigs,
|
||||
};
|
||||
},
|
||||
created() {},
|
||||
mounted() {},
|
||||
methods: {},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user