3 changed files with 57 additions and 9 deletions
-
1src/router/routes_xm.js
-
47src/views/xm/core/xmProduct/XmProductAllMng.vue
-
12src/views/xm/core/xmProduct/XmProductMng.vue
@ -0,0 +1,47 @@ |
|||
<template> |
|||
<section> |
|||
<xm-product-mng :data-scope="'all'"></xm-product-mng> |
|||
</section> |
|||
</template> |
|||
|
|||
<script> |
|||
import util from '@/common/js/util';//全局公共库 |
|||
//import Sticky from '@/components/Sticky' // 粘性header组件 |
|||
import { mapGetters } from 'vuex' |
|||
import XmProductMng from './XmProductMng.vue'; |
|||
|
|||
export default { |
|||
computed: { |
|||
...mapGetters([ |
|||
'userInfo','roles' |
|||
]), |
|||
}, |
|||
watch: { |
|||
|
|||
}, |
|||
data() { |
|||
return { |
|||
|
|||
/**end 自定义属性请在上面加 请加备注**/ |
|||
} |
|||
},//end data |
|||
methods: { |
|||
|
|||
/**end 自定义函数请在上面加**/ |
|||
|
|||
},//end methods |
|||
components: { |
|||
XmProductMng, |
|||
//在下面添加其它组件 |
|||
}, |
|||
mounted() { |
|||
this.$nextTick(() => { |
|||
|
|||
}); |
|||
} |
|||
} |
|||
|
|||
</script> |
|||
|
|||
<style scoped> |
|||
</style> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue