12345678910111213141516171819202122232425 |
- <template>
- <view class="">
- <btn-page :list="list"></btn-page>
- </view>
- </template>
- <script>
- import btnPage from "@/components/common/btn-page.vue"
- export default {
- components:{
- btnPage
- },
- data () {
- return {
- list:[
- {name:"直接入库",url:"/pages/inventory-warehousing-list/inventory-warehousing-list",params:"?typekey=直接入库"},
- {name:"检验入库",url:"/pages/inventory-warehousing-list/inventory-warehousing-list",params:"?typekey=检验入库"},
- ]
- }
- }
- }
- </script>
- <style>
- </style>
|