New file |
| | |
| | | import axios from "@/assets/axios"; |
| | | |
| | | /** |
| | | * 根据散装件列表 |
| | | * @returns |
| | | */ |
| | | export const getList = () => { |
| | | return axios({ |
| | | method: "GET", |
| | | // TODO |
| | | url: "" |
| | | }) |
| | | } |
New file |
| | |
| | | import list from './list'; |
| | | export default list; |
New file |
| | |
| | | <template> |
| | | <div class="">散装件列表页</div> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | name: "", |
| | | |
| | | data() { |
| | | return {}; |
| | | }, |
| | | components: {}, |
| | | methods: {}, |
| | | |
| | | mounted() {}, |
| | | }; |
| | | </script> |
| | | |
| | | <style scoped> |
| | | </style> |
New file |
| | |
| | | import axios from "@/assets/axios"; |
| | | |
| | | /** |
| | | * 根据产品列表 |
| | | * @returns |
| | | */ |
| | | export const getList = () => { |
| | | return axios({ |
| | | method: "GET", |
| | | // TODO |
| | | url: "" |
| | | }) |
| | | } |
New file |
| | |
| | | import axios from "@/assets/axios"; |
| | | |
| | | /** |
| | | * 根据产品详情 |
| | | * @returns |
| | | */ |
| | | export const getInfo = () => { |
| | | return axios({ |
| | | method: "GET", |
| | | // TODO |
| | | url: "" |
| | | }) |
| | | } |
New file |
| | |
| | | <template> |
| | | <div class="">产品详情页</div> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | name: "", |
| | | |
| | | data() { |
| | | return {}; |
| | | }, |
| | | components: {}, |
| | | methods: {}, |
| | | |
| | | mounted() {}, |
| | | }; |
| | | </script> |
| | | |
| | | <style scoped> |
| | | </style> |
New file |
| | |
| | | import details from './details'; |
| | | export default details; |
New file |
| | |
| | | import list from './list'; |
| | | export default list; |
New file |
| | |
| | | <template> |
| | | <div class="">产品列表页</div> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | name: "", |
| | | |
| | | data() { |
| | | return {}; |
| | | }, |
| | | components: {}, |
| | | methods: {}, |
| | | |
| | | mounted() {}, |
| | | }; |
| | | </script> |
| | | |
| | | <style scoped> |
| | | </style> |
| | |
| | | }, |
| | | component: () => import('@/pages/drawManage/details'), |
| | | }, |
| | | // { |
| | | // path: 'analysis', |
| | | // name: '图纸审批', |
| | | // component: () => import('@/pages/dashboard/analysis'), |
| | | // } |
| | | { |
| | | path: 'parts', |
| | | name: '散装件(替换件)', |
| | | component: () => import('@/pages/drawManage/parts'), |
| | | }, |
| | | { |
| | | path: 'product', |
| | | name: '产品中心', |
| | | component: () => import('@/pages/drawManage/product'), |
| | | }, |
| | | { |
| | | path: 'product-details', |
| | | name: '产品详情', |
| | | meta: { |
| | | invisible: true, |
| | | highlight: '/draw/product' |
| | | }, |
| | | component: () => import('@/pages/drawManage/product/details'), |
| | | } |
| | | ] |
| | | }, |
| | | { |