You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

805 lines
21 KiB

2 years ago
import Layout from '@/page/index/index.vue';
import Store from '@/store/';
export default [
{
path: '/wel',
component: () =>
Store.getters.isMacOs ? import('@/mac/index.vue') : import('@/page/index/index.vue'),
redirect: '/wel/index',
children: [
{
path: 'index',
name: '首页',
meta: {
i18n: 'dashboard',
},
component: () => import(/* webpackChunkName: "views" */ '@/views/wel/index.vue'),
},
{
path: 'dashboard',
name: '控制台',
meta: {
i18n: 'dashboard',
menu: false,
},
component: () => import(/* webpackChunkName: "views" */ '@/views/wel/dashboard.vue'),
},
],
},
{
path: '/test',
component: Layout,
redirect: '/test/index',
children: [
{
path: 'index',
name: '测试页',
meta: {
i18n: 'test',
},
component: () => import(/* webpackChunkName: "views" */ '@/views/util/test.vue'),
},
],
},
{
path: '/dict-horizontal',
component: Layout,
redirect: '/dict-horizontal/index',
children: [
{
path: 'index',
name: '字典管理',
meta: {
i18n: 'dict',
},
component: () =>
import(/* webpackChunkName: "views" */ '@/views/util/demo/dict-horizontal.vue'),
},
],
},
{
path: '/dict-vertical',
component: Layout,
redirect: '/dict-vertical/index',
children: [
{
path: 'index',
name: '字典管理',
meta: {
i18n: 'dict',
},
component: () =>
import(/* webpackChunkName: "views" */ '@/views/util/demo/dict-vertical.vue'),
},
],
},
{
path: '/info',
component: Layout,
redirect: '/info/index',
children: [
{
path: 'index',
name: '个人信息',
meta: {
i18n: 'info',
},
component: () => import(/* webpackChunkName: "views" */ '@/views/system/userinfo.vue'),
},
],
},
{
path: '/work/process/leave',
component: Layout,
redirect: '/work/process/leave/form',
children: [
{
path: 'form/:processDefinitionId',
name: '请假流程',
meta: {
i18n: 'work',
},
component: () =>
import(/* webpackChunkName: "views" */ '@/views/work/process/leave/form.vue'),
},
{
path: 'handle/:taskId/:processInstanceId/:businessId',
name: '处理请假流程',
meta: {
i18n: 'work',
},
component: () =>
import(/* webpackChunkName: "views" */ '@/views/work/process/leave/handle.vue'),
},
{
path: 'detail/:processInstanceId/:businessId',
name: '请假流程详情',
meta: {
i18n: 'work',
},
component: () =>
import(/* webpackChunkName: "views" */ '@/views/work/process/leave/detail.vue'),
},
],
},
2 years ago
// {
// path: '/basic/pdarecords/basicPdarecords',
// name:'pda维修记录',
// meta:{
// i18n:'work'
// },
// component: () => import(/* webpackChunkName: "views" */ '@/views/basic/pdarecords/basicPdarecords.vue'),
// },
{
path: '/basic/pdarecords/basicPdarecords',
component: Layout,
key:'fullPath',
2 years ago
redirect: '/basic/pdarecords',
children: [
{
path: '/basic/pdarecords/basicPdarecords',
name: 'pad编辑',
2 years ago
meta: {
data: 'data',
},
component: () => import(/* webpackChunkName: "views" */ '@/views/basic/pdarecords/basicPdarecords.vue'),
},
],
},
2 years ago
{
path: '/basic/pdarecords/basicPdarecordslist',
component: Layout,
key:'fullPath',
redirect: '/basic/pdarecords',
children: [
{
path: '/basic/pdarecords/basicPdarecordslist',
name: '维修总记录',
meta: {
data: 'data',
},
component: () => import(/* webpackChunkName: "views" */ '@/views/basic/pdarecords/basicPdarecordslist.vue'),
},
],
},
2 years ago
{
path: '/basic/delinenode/basicDelineNode',
component: Layout,
redirect: '/basic/delinenode',
children: [
{
path: '/basic/delinenode/basicDelineNode',
name: '提货线路节点',
meta: {
data: 'data',
},
component: () => import('@/views/basic/delinenode/basicDelineNode.vue'),
},
],
},
{
path: '/factory/snm/staorderPackages',
component: Layout,
redirect: '/factory/snm',
children: [
{
path: '/factory/snm/staorderPackages',
name: '运单包件信息',
meta: {
data: 'data',
},
component: () => import('@/views/factory/snm/staorderPackages.vue'),
},
],
},
{
path: '/basicdata/brand/basicHistoricalContract',
component: Layout,
redirect: '/brand/basicHistoricalContract',
children: [
{
path: '/basicdata/brand/basicHistoricalContract',
name: '历史记录',
meta: {
i18n: 'dict',
},
props: route => ({ name: route.query.name,
id: route.query.id}),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicHistoricalContract.vue'),
},
],
},
{
path: '/basicdata/brand/basicStorageServices',
component: Layout,
redirect: '/brand/basicStorageServices',
children: [
{
path: '/basicdata/brand/basicStorageServices',
name: '服务仓',
meta: {
i18n: 'dict',
},
props: route => ({ name: route.query.name,
id: route.query.id,type: route.query.type}),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicStorageServices.vue'),
},
],
},
{
path: '/basicdata/brand/basicdataStoreBrand',
component: Layout,
redirect: '/brand/basicdataStoreBrand',
children: [
{
path: '/basicdata/brand/basicdataStoreBrand',
name: '品牌',
meta: {
i18n: 'dict',
},
props: route => ({ name: route.query.name,
id: route.query.id}),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicdataStoreBrand.vue'),
},
],
},
2 years ago
{
path: '/basicdata/brand/basicZonePriceFrom',
component: Layout,
redirect: '/brand/basicZonePriceFrom',
children: [
{
path: '/basicdata/brand/basicZonePriceFrom',
name: '区域价格新增',
2 years ago
meta: {
i18n: 'dict',
},
props: route => (
{
name: route.query.name,
id: route.query.id ,
type: route.query.type
}
),
2 years ago
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicZonePriceFrom.vue'),
},
],
},
{
path: '/basicdata/brand/basicdataFreightFrom',
component: Layout,
redirect: '/brand/basicdataFreightFrom',
children: [
{
path: '/basicdata/brand/basicdataFreightFrom',
name: '基础价格新增',
meta: {
i18n: 'dict',
},
props: route => (
{
name: route.query.name,
id: route.query.id ,
type: route.query.type
}
),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicdataFreightFrom.vue'),
},
],
},
{
path: '/basicdata/brand/basicStoreContact',
component: Layout,
redirect: '/brand/basicStoreContact',
children: [
{
path: '/basicdata/brand/basicStoreContact',
name: '联系人',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id,
type: route.query.type
}),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicStoreContact.vue'),
},
],
},
{
path: '/basicdata/brand/basicdataCustomerBase',
component: Layout,
redirect: '/brand/basicdataCustomerBase',
children: [
{
path: '/basicdata/brand/basicdataCustomerBase',
name: '基地',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicdataCustomerBase.vue'),
},
],
},
{
path: '/basicdata/brand/basicdataCustomerStore',
component: Layout,
redirect: '/brand/basicdataCustomerStore',
children: [
{
path: '/basicdata/brand/basicdataCustomerStore',
name: '商场',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () =>
import(/* webpackChunkName: "views" */ '@/views/basicdata/brand/basicdataCustomerStore.vue'),
},
],
},
{
path: '/basic/printTemplate/basicPrintTemplateFrom',
component: Layout,
redirect: '/basic/printTemplate',
children: [
{
path: '/basic/printTemplate/basicPrintTemplateFrom',
name: 'name',
meta: {
data: 'data',
},
component: () => import('@/views/basic/printTemplate/basicPrintTemplateFrom.vue'),
},
],
},
2 years ago
{
path: '/basic/pda/basicPdaform',
component: Layout,
redirect: '/basic/pda',
children: [
{
path: '/basic/pda/basicPdaform',
name: 'pad信息',
meta: {
},
component: () => import('@/views/basic/pda/basicPdaform.vue'),
},
],
},
{
path: '/basic/property/basicPropertyform',
component: Layout,
redirect: '/basic/property',
children: [
{
path: '/basic/property/basicPropertyform',
name: '编辑字段',
meta: {
data: 'data',
},
component: () => import('@/views/basic/property/basicPropertyform.vue'),
},
],
},
{
Squashed commit of the following: commit 859932a264850d576194e4a85decdd2c542ee4fb Author: kilo <wan.ren@foxmail.com> Date: Fri Jun 16 11:18:14 2023 +0800 配送api调整 commit 8f849258241bef3bc65275eb8c6c72f084b0d42d Author: kilo <wan.ren@foxmail.com> Date: Fri Jun 16 11:15:28 2023 +0800 配送api调整 commit bb3434c07a54363a55b1f808554d59a35dff51f2 Author: caoyizhong <1270296080@qq.com> Date: Fri Jun 16 10:56:59 2023 +0800 添加班组 commit e59ea0d301e70c20aa15eb800c66417e57462d47 Merge: ffbd2d0 ccb3fd8 Author: caoyizhong <1270296080@qq.com> Date: Fri Jun 16 09:16:03 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ffbd2d028f29d5f7dbd2140d235aaa9f3c3a9098 Author: caoyizhong <1270296080@qq.com> Date: Fri Jun 16 09:15:54 2023 +0800 修改备货查询 commit ccb3fd8ad5b5a459ea3188b3f3e417e3668d1290 Author: 0.0 <1092404103.qq.com> Date: Thu Jun 15 20:27:23 2023 +0800 1.调整搜索时间 commit 9ef429246e8b9e9c7d5da01edd441a92bdcd34ab Author: kilo <wan.ren@foxmail.com> Date: Thu Jun 15 19:38:33 2023 +0800 仓库所属部门调整 commit 3d2b759b4ec9fe56205094050addedf626bd9533 Author: caoyizhong <1270296080@qq.com> Date: Thu Jun 15 16:23:00 2023 +0800 修改备货 commit c58aa3a26bc61fae9808270b1763a815d5be6549 Author: kilo <wan.ren@foxmail.com> Date: Thu Jun 15 15:01:55 2023 +0800 备货、预约页面 commit 0aa1c28db68dc5233143a3efe27b20db3a86336b Merge: ca423ac 72e0847 Author: caoyizhong <1270296080@qq.com> Date: Thu Jun 15 10:30:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ca423ac6e649b61a4febd224fd61d3f7103c6d46 Author: caoyizhong <1270296080@qq.com> Date: Thu Jun 15 10:30:09 2023 +0800 添加库存品页面 # Conflicts: # src/option/distribution/distributionStockList.js # src/views/distribution/inventory/distributionStockArticle.vue # src/views/distribution/inventory/distributionStockList.vue # src/views/distribution/signfor/distributionSignfor.vue # vite.config.js
2 years ago
path: '/distribution/reservation/reservationFrom',
component: Layout,
redirect: '/distribution/reservation/reservationFrom',
Squashed commit of the following: commit 859932a264850d576194e4a85decdd2c542ee4fb Author: kilo <wan.ren@foxmail.com> Date: Fri Jun 16 11:18:14 2023 +0800 配送api调整 commit 8f849258241bef3bc65275eb8c6c72f084b0d42d Author: kilo <wan.ren@foxmail.com> Date: Fri Jun 16 11:15:28 2023 +0800 配送api调整 commit bb3434c07a54363a55b1f808554d59a35dff51f2 Author: caoyizhong <1270296080@qq.com> Date: Fri Jun 16 10:56:59 2023 +0800 添加班组 commit e59ea0d301e70c20aa15eb800c66417e57462d47 Merge: ffbd2d0 ccb3fd8 Author: caoyizhong <1270296080@qq.com> Date: Fri Jun 16 09:16:03 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ffbd2d028f29d5f7dbd2140d235aaa9f3c3a9098 Author: caoyizhong <1270296080@qq.com> Date: Fri Jun 16 09:15:54 2023 +0800 修改备货查询 commit ccb3fd8ad5b5a459ea3188b3f3e417e3668d1290 Author: 0.0 <1092404103.qq.com> Date: Thu Jun 15 20:27:23 2023 +0800 1.调整搜索时间 commit 9ef429246e8b9e9c7d5da01edd441a92bdcd34ab Author: kilo <wan.ren@foxmail.com> Date: Thu Jun 15 19:38:33 2023 +0800 仓库所属部门调整 commit 3d2b759b4ec9fe56205094050addedf626bd9533 Author: caoyizhong <1270296080@qq.com> Date: Thu Jun 15 16:23:00 2023 +0800 修改备货 commit c58aa3a26bc61fae9808270b1763a815d5be6549 Author: kilo <wan.ren@foxmail.com> Date: Thu Jun 15 15:01:55 2023 +0800 备货、预约页面 commit 0aa1c28db68dc5233143a3efe27b20db3a86336b Merge: ca423ac 72e0847 Author: caoyizhong <1270296080@qq.com> Date: Thu Jun 15 10:30:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ca423ac6e649b61a4febd224fd61d3f7103c6d46 Author: caoyizhong <1270296080@qq.com> Date: Thu Jun 15 10:30:09 2023 +0800 添加库存品页面 # Conflicts: # src/option/distribution/distributionStockList.js # src/views/distribution/inventory/distributionStockArticle.vue # src/views/distribution/inventory/distributionStockList.vue # src/views/distribution/signfor/distributionSignfor.vue # vite.config.js
2 years ago
children: [
{
path: '/distribution/reservation/reservationFrom',
name: '添加预约',
Squashed commit of the following: commit 859932a264850d576194e4a85decdd2c542ee4fb Author: kilo <wan.ren@foxmail.com> Date: Fri Jun 16 11:18:14 2023 +0800 配送api调整 commit 8f849258241bef3bc65275eb8c6c72f084b0d42d Author: kilo <wan.ren@foxmail.com> Date: Fri Jun 16 11:15:28 2023 +0800 配送api调整 commit bb3434c07a54363a55b1f808554d59a35dff51f2 Author: caoyizhong <1270296080@qq.com> Date: Fri Jun 16 10:56:59 2023 +0800 添加班组 commit e59ea0d301e70c20aa15eb800c66417e57462d47 Merge: ffbd2d0 ccb3fd8 Author: caoyizhong <1270296080@qq.com> Date: Fri Jun 16 09:16:03 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ffbd2d028f29d5f7dbd2140d235aaa9f3c3a9098 Author: caoyizhong <1270296080@qq.com> Date: Fri Jun 16 09:15:54 2023 +0800 修改备货查询 commit ccb3fd8ad5b5a459ea3188b3f3e417e3668d1290 Author: 0.0 <1092404103.qq.com> Date: Thu Jun 15 20:27:23 2023 +0800 1.调整搜索时间 commit 9ef429246e8b9e9c7d5da01edd441a92bdcd34ab Author: kilo <wan.ren@foxmail.com> Date: Thu Jun 15 19:38:33 2023 +0800 仓库所属部门调整 commit 3d2b759b4ec9fe56205094050addedf626bd9533 Author: caoyizhong <1270296080@qq.com> Date: Thu Jun 15 16:23:00 2023 +0800 修改备货 commit c58aa3a26bc61fae9808270b1763a815d5be6549 Author: kilo <wan.ren@foxmail.com> Date: Thu Jun 15 15:01:55 2023 +0800 备货、预约页面 commit 0aa1c28db68dc5233143a3efe27b20db3a86336b Merge: ca423ac 72e0847 Author: caoyizhong <1270296080@qq.com> Date: Thu Jun 15 10:30:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ca423ac6e649b61a4febd224fd61d3f7103c6d46 Author: caoyizhong <1270296080@qq.com> Date: Thu Jun 15 10:30:09 2023 +0800 添加库存品页面 # Conflicts: # src/option/distribution/distributionStockList.js # src/views/distribution/inventory/distributionStockArticle.vue # src/views/distribution/inventory/distributionStockList.vue # src/views/distribution/signfor/distributionSignfor.vue # vite.config.js
2 years ago
component: () => import('@/views/distribution/reservation/reservationFrom.vue'),
},
],
2 years ago
},
{
path: '/distribution/reservation/atlas',
component: Layout,
redirect: '/distribution/reservation/atlas',
children: [
{
path: '/distribution/reservation/atlas',
name: '地图展示',
id:'id',
component: () => import('@/views/distribution/reservation/atlas.vue'),
},
],
},
Squashed commit of the following: commit 90291a00b04155608041d88f7b7b8d88b55bb318 Merge: be19329 ee582b8 Author: caoyizhong <1270296080@qq.com> Date: Mon Jul 24 09:45:25 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit be1932929cf12e3e061d49c663381af50cea1dfa Author: caoyizhong <1270296080@qq.com> Date: Mon Jul 24 09:45:19 2023 +0800 修改备货详情分页 commit ee582b870f1382e394f43a745fcff62a8f9c907d Author: kilo <wan.ren@foxmail.com> Date: Mon Jul 24 09:37:21 2023 +0800 商配订单编辑按钮功能 commit 69e78881de7d88bf71f5eed0e2448ed00e326295 Author: caoyizhong <1270296080@qq.com> Date: Sat Jul 22 18:18:28 2023 +0800 修改备货查询页面 commit 1f88807491dc926b7ba2bceb31b597625d589c82 Author: ‘chaoosc’ <‘chaoosc@gmail.com’> Date: Sat Jul 22 16:38:46 2023 +0800 完成对客户仓库的绑定 commit 5115291ed0f71450c509b26f932d271e3807a64f Author: ‘chaoosc’ <‘chaoosc@gmail.com’> Date: Sat Jul 22 15:48:57 2023 +0800 修改服务仓绑定 commit 2e91cd33f73690aabe1d7ded6f0034df67f4f119 Author: pref_mail@163.com <123456> Date: Sat Jul 22 14:27:45 2023 +0800 增加未客户指定服务仓库 commit 27bad3bf5e511e724290b8713c8419ff45ad3547 Author: caoyizhong <1270296080@qq.com> Date: Sat Jul 22 10:47:18 2023 +0800 修改备货页面 commit 90216258bfe6cac9216b656b9f6650003e445c42 Author: zhenghaoyu <zhenghaoyu@superbgrace.com> Date: Fri Jul 21 08:57:04 2023 +0800 修改客户列表bug commit b47b37d5a5057fa4e7ba691ca71194b7d28f7235 Merge: a36232b 64a011b Author: caoyizhong <1270296080@qq.com> Date: Thu Jul 20 20:35:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a36232b89bec58b13c05dcec0f218b5efbc0783d Author: caoyizhong <1270296080@qq.com> Date: Thu Jul 20 20:35:08 2023 +0800 修改添加备货页面 commit 64a011b966b85a494a1b385d316e8f7c26560cec Author: kilo <wan.ren@foxmail.com> Date: Thu Jul 20 19:00:42 2023 +0800 托盘、货位增加老系统数据维护 commit d2cec50b73fc4a2254fba1ec32efe6f76137622b Merge: 886221c cd7883d Author: kilo <wan.ren@foxmail.com> Date: Thu Jul 20 18:59:38 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit cd7883da6994a9b89bfd807deb6ad49e301588f6 Author: 0.0 <1092404103.qq.com> Date: Thu Jul 20 18:15:04 2023 +0800 1.库存品详情 commit 886221c46b13b7a8f291c85842d1c60c44dab0c4 Merge: 8869a82 c3a675b Author: kilo <wan.ren@foxmail.com> Date: Thu Jul 20 17:33:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c3a675b9f61fc672a2e0bcec4ea2f2ea07a0b15b Author: zhenghaoyu <zhenghaoyu@superbgrace.com> Date: Thu Jul 20 09:55:37 2023 +0800 在库运单功能模块提交 commit 67f50c40e1d93f6521fb2e2ac7ecfaa6047edb53 Author: 0.0 <1092404103.qq.com> Date: Thu Jul 20 08:58:19 2023 +0800 1.文员签收时间 commit 8869a82210e04b460d73b9e5d15c3aa4b73ed8d5 Author: kilo <wan.ren@foxmail.com> Date: Wed Jul 19 19:00:24 2023 +0800 预约查看页面 commit b51ac6154176b6eb11dfc31400434066fbe7f85d Merge: cdbe2c9 2db4ddc Author: 0.0 <1092404103.qq.com> Date: Wed Jul 19 18:13:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit cdbe2c90ad65a6d8356a70140c278fad40adb943 Author: 0.0 <1092404103.qq.com> Date: Wed Jul 19 18:13:28 2023 +0800 1.原型修改 commit 2db4ddcc230b99d1ba1385e3384f08c6fb147062 Author: caoyizhong <1270296080@qq.com> Date: Wed Jul 19 18:09:19 2023 +0800 修改库存品查看页面 commit 95d1eef069ff23f7038a027c2cfdf3b02996ca72 Author: caoyizhong <1270296080@qq.com> Date: Wed Jul 19 11:02:20 2023 +0800 修改库存品页面 # Conflicts: # vite.config.js
2 years ago
{
path: '/distribution/reservation/reservationDetails',
component: Layout,
redirect: '/distribution/reservation/reservationDetails',
children: [
{
path: '/distribution/reservation/reservationDetails',
name: '预约单详情',
id:'id',
component: () => import('@/views/distribution/reservation/reservationDetails.vue'),
},
],
},
2 years ago
// {
// path: '/distribution/deliverylist/distributionDeliveryList',
// component: Layout,
// redirect: '/distribution/deliverylist/distributionDeliveryList',
// children: [
// {
// path: '/distribution/deliverylist/distributionDeliveryList',
// id:'id',
// name:'name',
// component: () => import('@/views/distribution/deliverylist/distributionDeliveryList.vue'),
// },
// ],
// },
{
path: '/distribution/turndelivery/deliveryMarket',
component: Layout,
redirect: '/distribution/turndelivery/deliveryMarket',
children: [
{
path: '/distribution/turndelivery/deliveryMarket',
name: 'name',
id:'id',
component: () => import('@/views/distribution/turndelivery/deliveryMarket.vue'),
},
],
},
2 years ago
// {
// path: '/distribution/turndelivery/deliveryMarket',
// component: Layout,
// redirect: '/distribution/turndelivery/deliveryMarket',
// children: [
// {
// path: '/distribution/turndelivery/deliveryMarket',
// name: 'name',
// deliveryId:'id',
// component: () => import('@/views/distribution/turndelivery/deliveryMarket.vue'),
// },
// ],
// },
{
path: '/distribution/turndelivery/deliveryDiscuss',
component: Layout,
redirect: '/distribution/turndelivery/deliveryDiscuss',
children: [
{
path: '/distribution/turndelivery/deliveryDiscuss',
name: '商配计划',
component: () => import('@/views/distribution/turndelivery/deliveryDiscuss.vue'),
},
],
},
{
path: '/basic/property/basicrecordslist',
component: Layout,
key:'fullPath',
redirect: '/basic/property',
children: [
{
path: '/basic/property/basicrecordslist',
name: '维修总记录',
meta: {
data: 'data',
},
component: () => import(/* webpackChunkName: "views" */ '@/views/basic/property/basicrecordslist.vue'),
},
],
},
2 years ago
{
path: '/distribution/inventory/distrilbutionBillLading',
component: Layout,
redirect: '/distribution/inventory',
children: [
{
path: '/distribution/inventory/distrilbutionBillLading',
name: '创建提货单',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/inventory/distrilbutionBillLading.vue'),
},
],
}
,{
path: '/basicdata/brand/basicShopFrom',
component: Layout,
redirect: '/basicdata/brand/basicShopFrom',
children: [
{
path: '/basicdata/brand/basicShopFrom',
name: '创建门店',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/basicdata/brand/basicShopFrom.vue'),
},
],
},
{
path: '/distribution/deliverylist/distributionDeliveryListedt',
component: Layout,
redirect: '/deliverylist/distributionDeliveryListedt',
children: [
{
path: '/distribution/deliverylist/distributionDeliveryListedt',
name: '配送查看',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/deliverylist/distributionDeliveryListedt.vue'),
},
],
},
// {
// path: '/distribution/turndelivery/deliveryDiscuss',
// component: Layout,
// redirect: '/distribution/turndelivery/deliveryDiscuss',
// children: [
// {
// path: '/distribution/turndelivery/deliveryDiscuss',
// name: '配送编辑',
// meta: {
// i18n: 'dict',
// },
// props: route => ({
// name: route.query.name,
// id: route.query.id
// }),
// component: () => import('@/views/turndelivery/deliverylist/deliveryDiscuss.vue'),
// },
// ],
// },
2 years ago
{
path: '/basicdata/brand/basicdataTripartiteMall',
component: Layout,
redirect: '/brand/basicdataTripartiteMall',
children: [
{
path: '/basicdata/brand/basicdataTripartiteMall',
name: '三方商城',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/basicdata/brand/basicdataTripartiteMall.vue'),
},
],
},
{
path: '/basicdata/brand/basicClientFrom',
component: Layout,
redirect: '/brand/basicClientFrom',
children: [
{
path: '/basicdata/brand/basicClientFrom',
name: '新增',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/basicdata/brand/basicClientFrom.vue'),
},
],
},
{
path: '/distribution/inventory/distributionStockArticleFrom',
component: Layout,
redirect: '/inventory/distributionStockArticleFrom',
children: [
{
path: '/distribution/inventory/distributionStockArticleFrom',
name: '转库存品',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/inventory/distributionStockArticleFrom.vue'),
},
],
},
{
path: '/distribution/inventory/distributionStockArticleDetails',
component: Layout,
redirect: '/inventory/distributionStockArticleDetails',
children: [
{
path: '/distribution/inventory/distributionStockArticleDetails',
name: '查询订单详情',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/inventory/distributionStockArticleDetails.vue'),
},
],
},
{
path: '/distribution/inventory/distributionStockListDetails',
component: Layout,
redirect: '/inventory/distributionStockListDetails',
children: [
{
path: '/distribution/inventory/distributionStockListDetails',
name: '查询库存品详情',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/inventory/distributionStockListDetails.vue'),
},
],
},
2 years ago
{
path: '/distribution/signfor/distributionSignforedt',
component: Layout,
redirect: '/distribution/distributionSignforedt',
children: [
{
path: '/distribution/signfor/distributionSignforedt',
name: '签收查看',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/signfor/distributionSignforedt.vue'),
},
],
},
{
path: '/distribution/signdetail/distributionSigndetaledt',
component: Layout,
redirect: '/distribution/signdetail',
children: [
{
path: '/distribution/signdetail/distributionSigndetaledt',
name: '订单查看',
meta: {
i18n: 'dict',
},
component: () => import('@/views/distribution/signdetail/distributionSigndetaledt.vue'),
},
],
},
Squashed commit of the following: commit 90291a00b04155608041d88f7b7b8d88b55bb318 Merge: be19329 ee582b8 Author: caoyizhong <1270296080@qq.com> Date: Mon Jul 24 09:45:25 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit be1932929cf12e3e061d49c663381af50cea1dfa Author: caoyizhong <1270296080@qq.com> Date: Mon Jul 24 09:45:19 2023 +0800 修改备货详情分页 commit ee582b870f1382e394f43a745fcff62a8f9c907d Author: kilo <wan.ren@foxmail.com> Date: Mon Jul 24 09:37:21 2023 +0800 商配订单编辑按钮功能 commit 69e78881de7d88bf71f5eed0e2448ed00e326295 Author: caoyizhong <1270296080@qq.com> Date: Sat Jul 22 18:18:28 2023 +0800 修改备货查询页面 commit 1f88807491dc926b7ba2bceb31b597625d589c82 Author: ‘chaoosc’ <‘chaoosc@gmail.com’> Date: Sat Jul 22 16:38:46 2023 +0800 完成对客户仓库的绑定 commit 5115291ed0f71450c509b26f932d271e3807a64f Author: ‘chaoosc’ <‘chaoosc@gmail.com’> Date: Sat Jul 22 15:48:57 2023 +0800 修改服务仓绑定 commit 2e91cd33f73690aabe1d7ded6f0034df67f4f119 Author: pref_mail@163.com <123456> Date: Sat Jul 22 14:27:45 2023 +0800 增加未客户指定服务仓库 commit 27bad3bf5e511e724290b8713c8419ff45ad3547 Author: caoyizhong <1270296080@qq.com> Date: Sat Jul 22 10:47:18 2023 +0800 修改备货页面 commit 90216258bfe6cac9216b656b9f6650003e445c42 Author: zhenghaoyu <zhenghaoyu@superbgrace.com> Date: Fri Jul 21 08:57:04 2023 +0800 修改客户列表bug commit b47b37d5a5057fa4e7ba691ca71194b7d28f7235 Merge: a36232b 64a011b Author: caoyizhong <1270296080@qq.com> Date: Thu Jul 20 20:35:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a36232b89bec58b13c05dcec0f218b5efbc0783d Author: caoyizhong <1270296080@qq.com> Date: Thu Jul 20 20:35:08 2023 +0800 修改添加备货页面 commit 64a011b966b85a494a1b385d316e8f7c26560cec Author: kilo <wan.ren@foxmail.com> Date: Thu Jul 20 19:00:42 2023 +0800 托盘、货位增加老系统数据维护 commit d2cec50b73fc4a2254fba1ec32efe6f76137622b Merge: 886221c cd7883d Author: kilo <wan.ren@foxmail.com> Date: Thu Jul 20 18:59:38 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit cd7883da6994a9b89bfd807deb6ad49e301588f6 Author: 0.0 <1092404103.qq.com> Date: Thu Jul 20 18:15:04 2023 +0800 1.库存品详情 commit 886221c46b13b7a8f291c85842d1c60c44dab0c4 Merge: 8869a82 c3a675b Author: kilo <wan.ren@foxmail.com> Date: Thu Jul 20 17:33:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c3a675b9f61fc672a2e0bcec4ea2f2ea07a0b15b Author: zhenghaoyu <zhenghaoyu@superbgrace.com> Date: Thu Jul 20 09:55:37 2023 +0800 在库运单功能模块提交 commit 67f50c40e1d93f6521fb2e2ac7ecfaa6047edb53 Author: 0.0 <1092404103.qq.com> Date: Thu Jul 20 08:58:19 2023 +0800 1.文员签收时间 commit 8869a82210e04b460d73b9e5d15c3aa4b73ed8d5 Author: kilo <wan.ren@foxmail.com> Date: Wed Jul 19 19:00:24 2023 +0800 预约查看页面 commit b51ac6154176b6eb11dfc31400434066fbe7f85d Merge: cdbe2c9 2db4ddc Author: 0.0 <1092404103.qq.com> Date: Wed Jul 19 18:13:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit cdbe2c90ad65a6d8356a70140c278fad40adb943 Author: 0.0 <1092404103.qq.com> Date: Wed Jul 19 18:13:28 2023 +0800 1.原型修改 commit 2db4ddcc230b99d1ba1385e3384f08c6fb147062 Author: caoyizhong <1270296080@qq.com> Date: Wed Jul 19 18:09:19 2023 +0800 修改库存品查看页面 commit 95d1eef069ff23f7038a027c2cfdf3b02996ca72 Author: caoyizhong <1270296080@qq.com> Date: Wed Jul 19 11:02:20 2023 +0800 修改库存品页面 # Conflicts: # vite.config.js
2 years ago
{
path: '/distribution/stockup/distributionStockupDetails',
component: Layout,
redirect: '/stockup/distributionStockupDetails',
children: [
{
path: '/distribution/stockup/distributionStockupDetails',
name: '备货明细',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/stockup/distributionStockupDetails.vue'),
},
],
},
2 years ago
{
path: '/distribution/stockup/distributionStockupDetailsSelf',
component: Layout,
redirect: '/stockup/distributionStockupDetailsSelf',
children: [
{
path: '/distribution/stockup/distributionStockupDetailsSelf',
name: '自提明细',
2 years ago
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/distribution/stockup/distributionStockupDetailsSelf.vue'),
},
],
},
{
path: '/reservation/order_listFrom',
component: Layout,
redirect: '/reservation/order_listFrom',
children: [
{
path: '/distribution/reservation/order_listFrom',
name: '自提明细',
meta: {
i18n: 'dict',
},
props: route => ({
name: route.query.name,
id: route.query.id
}),
component: () => import('@/views/reservation/order_listFrom.vue'),
},
],
},
// {
// path: '/distribution/inventory/distributionPrints',
// component: Layout,
// redirect: '/distribution/inventory',
// children: [
// {
// path: '/distribution/inventory/distributionPrints',
// name: '创建提货单',
// meta: {
// i18n: 'dict',
// },
// props: route => ({
// name: route.query.name,
// id: route.query.id
// }),
// component: () => import('@/views/distribution/inventory/distributionPrints.vue'),
// children:[
// {
// path: '/distribution/inventory/distributionPrints',
// name: '创建提货单',
// meta: {
// i18n: 'dict',
// },
// props: route => ({
// name: route.query.name,
// id: route.query.id
// }),
// component: () => import('@/views/distribution/inventory/distributionStockArticle.vue'),
// },
// ]
// },
// ],
// }
2 years ago
];