+
{{ msgState == 1 ? ' 待回复' : msgState == 2 ? '已回复' : '已超时' }}
+ >{{
+ msgState == 1
+ ? ' 待回复'
+ : msgState == 2
+ ? '已回复'
+ : msgState == 3
+ ? '已超时'
+ : ''
+ }}
@@ -758,6 +777,7 @@ import {
$_addProcessingResults,
$_getSurveyRecord,
$_getAbnormalPackage,
+ $_getTrackRecord,
} from '@/api/aftersales/aftersalesWorkOrder';
import { columnList, recordList } from '@/option/aftersales/vueTvemp.js';
import { getToken } from '@/utils/auth';
@@ -788,6 +808,7 @@ const companyProportion = ref(0); //公司占比
const HistoricalPackageList = ref([]); //历史包件数组
const dialogHistoricalPackage = ref(false); //包件弹窗
const HistoricalPackageinput = ref(''); //历史包件选择
+const UserPermissions = ref(''); //操作权限
const PackageInfo = ref([
//包件信息
{ packageCode: '', orderCode: '', waybillNumber: '' },
@@ -818,24 +839,10 @@ const viodUrl = ref({});
const videoUrl = ref(null); //视频预览
const VideoPreviewStatus = ref(false); //视频预览状态
const warehouseData = ref([]); //处理方
-const MessageContent = ref([
- // {
- // time: '2021-08-03 16:00:00',
- // content: '内容1',
- // name: '营业部名称',
- // username: '张三',
- // img: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
- // file: 'http://192.168.10.100:9000/627683-logpm/upload/20231211/19d4e462c3ebe3026cb9b27868659554.docx',
- // mp4: 'http://192.168.10.100:9000/627683-logpm/upload/20231211/d4619612ebca02ca1318935b31bc6940.mp4',
- // imgList: [
- // 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
- // 'https://fuss10.elemecdn.com/2/11/6535bcfb26e4c79b48ddde44f4b6fjpeg.jpeg',
- // ],
- // },
-]);
+const MessageContent = ref([]);
const CompensationParty = ref([
- { name: '', state: 0, num: null, reason: '', cld: 1, explain: '' }, //赔款方
- { name: '', state: 1, num: null, reason: '', cld: 1, explain: '' }, //收款方
+ { name: '', state: 0, num: null, reason: '', cld: 1, explains: '' }, //赔款方
+ { name: '', state: 1, num: null, reason: '', cld: 1, explains: '' }, //收款方
]); //收/赔
const ProcessingList = ref([]); //处理结果已经选择的列表
// 责任方列表
@@ -888,25 +895,12 @@ const details = reactive({
columnList,
/** 列表数据 */
- data: [{}],
+ data: [],
// 处理记录
recordList,
// 处理记录数据
recorddata: [
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
- { entryTime: '测试' },
+
],
/** 页面loading */
loadingObj: {
@@ -965,6 +959,21 @@ const TransportChange = val => {
// 页面初始化数据
const onLoad = () => {
+
+ // 获取角色权限
+ getDictionaryBiz('after_sales_visits').then(res => {
+ console.log(res, '角色字典');
+ const matchingItem = res.data.data.find(
+ item => item.dictValue == JSON.parse(localStorage.getItem('TWMS-userInfo')).content.role_name
+ );
+ if (matchingItem) {
+ UserPermissions.value = matchingItem.dictValue;
+ } else {
+ UserPermissions.value = '仓库客服';
+ }
+ console.log(UserPermissions.value, '当前角色权限');
+ });
+
// 获取页面参数
if ($route.query.id) {
console.log($route.query);
@@ -1014,6 +1023,7 @@ const onLoad = () => {
description: res.description, //说明
};
});
+
res.data.data.processorVOList.forEach(item => {
if (item.typesOf == 2) {
// 处理方
@@ -1048,24 +1058,69 @@ const onLoad = () => {
sum = Number(item.responsibilityRatio) + sum;
});
companyProportion.value = 100 - sum;
-
- // updateDictionary(columnList[2].checkarr, 'pc_work_order'); //异常类型
- // updateDictionary(columnList[3].checkarr, 'pc_discovery_node'); //发现环节
-
- // 处理结果回显
- // res.data.data.processingResultsVO.processingMoneyEntityList.forEach(item => {
- // ProcessingList.value.push({
- // input: item.money,
- // min: 0,
- // max: 9999999999999,
- // state: item.resultType,
- // payment: item.compensationMethod,
- // name: item.resultTypeName,
- // text: '',
- // });
- // endFrom.value.result.push(item.resultType);
- // });
+ ProcessingList.value = res.data.data.processingResultsVO.processingMoneyEntityList.map(
+ item => {
+ endFrom.value.result.push(item.resultType);
+ return {
+ input: item.money,
+ min: 0,
+ max: 9999999999999999999999999999,
+ state: item.resultType,
+ payment: item.compensationMethod,
+ name: item.resultTypeName,
+ text: item.compensationMethodName,
+ };
+ }
+ );
+
+ // 总金额回显
+ TotalClaimAmount.value = res.data.data.processingResultsVO.money;
+ // 理赔支付时间
+ endFrom.value.compensationTime = res.data.data.processingResultsVO.compensationTime;
+ // 处理结果说明回显
+ endFrom.value.resultDescription = res.data.data.processingResultsVO.resultDescription;
+
+ // 完结信息回显
+ // 收款方
+ CompensationParty.value = [];
+ if (res.data.data.completionRecipientEntityList.length > 0) {
+ res.data.data.completionRecipientEntityList.forEach((item, index) => {
+ TotalamountReceived.value += Number(item.money);
+ CompensationParty.value.push({
+ state: 1, //状态
+ num: item.money, //金额
+ name: item.recipient, //收款方名字
+ reason: item.reasonReceivingPayment, //收款方原因
+ explains: item.explains, //收款方说明
+ cld: index + 1,
+ });
+ });
+ }
+ // 赔款方
+ if (res.data.data.completionRecordEntities.length > 0) {
+ res.data.data.completionRecordEntities.forEach((item, index) => {
+ TotalamountCompensation.value += Number(item.money);
+ CompensationParty.value.push({
+ state: 0, //状态
+ num: item.money, //金额
+ name: item.indemnitor, //收款方名字
+ reason: item.reason, //收款方原因
+ explains: item.explains, //收款方说明
+ cld: index + 1,
+ });
+ });
+ }
+ endFrom.value.arbitrate= res.data.data.reasonArbitration; //仲裁原因
+
});
+
+ // 查询处理记录
+ $_getTrackRecord({
+ id:$route.query.id
+ }).then(res=>{
+ console.log(res,'处理记录返回值');
+ details.recorddata=res.data.data.surveyRecordEntities
+ })
}
// 异常类型业务字典
@@ -1293,7 +1348,7 @@ const AddCompensation = () => {
som++;
}
});
- CompensationParty.value.push({ name: '', state: 0, num: 0, reason: '', cld: som, explain: '' });
+ CompensationParty.value.push({ name: '', state: 0, num: 0, reason: '', cld: som, explains: '' });
};
// 添加收款方
const AddPayee = () => {
@@ -1303,7 +1358,7 @@ const AddPayee = () => {
som++;
}
});
- CompensationParty.value.push({ name: '', state: 1, num: 0, reason: '', cld: som, explain: '' });
+ CompensationParty.value.push({ name: '', state: 1, num: 0, reason: '', cld: som, explains: '' });
};
// 理赔总金额计算
const TotalChange = () => {
@@ -1455,6 +1510,9 @@ const personResponsiblechange = (val, index) => {
};
// 支付方式选择
const PaymentSelection = val => {
+ if ($route.query.index == '0' || $route.query.index == '2') {
+ return;
+ }
console.log(val, '支付');
console.log(Paymentmethod.value);
if (val.payment) {
@@ -1484,30 +1542,9 @@ const PaymentConfirmation = val => {
// 提交信息
const submit = () => {
- // console.log(FangAddList.value,'赔款方businessName');
- // console.log(warehouseData.value,'选择');
- // let a= [
- // {
- // "businessName": "1711993021509234689",
- // "personResponsibleName": "1712365249019097089",
- // "responsibilityRatio": ""
- // },
- // {
- // "businessName": "1713372843170975745",
- // "personResponsibleName": "1712376790741266433",
- // "responsibilityRatio": ""
- // }
- // ]
- // let b=[
- // {value: '1711993021509234689', label: '荆门仓'},
-
- // {value: '1713372842906734594', label: '龙泉仓'},
-
- // {value: '1713372842990620674', label: '双流欧派仓'},
- // ]
-
- // const result = FangAddList.value.map(aItem => warehouseData.value.filter(bItem => bItem.value === aItem.businessName).map(match => match.label).join(',')).join(',');
- // console.log(result,'处理好的');
+ console.log(UserPermissions.value, '当前角色');
+ // if (UserPermissions.value == '职能客服' || UserPermissions.value == '客服经理' ) {
+
// 完结的逻辑
// 异常问题描述非必填
if (routerState.value == 'end') {
@@ -1535,7 +1572,8 @@ const submit = () => {
let data = [
{
completionRecipientEntities: [], //收款方
- completionRecordEntities: [],
+ completionRecordEntities: [], //赔款方
+ reasonArbitration: endFrom.value.arbitrate, //仲裁原因
...info,
},
];
@@ -1550,7 +1588,7 @@ const submit = () => {
indemnitor: item.name, //赔款方
reason: item.reason, //原因
money: Number(item.num), //金额
- reasonArbitration: endFrom.value.arbitrate, //仲裁原因
+ reasonArbitration: item.reason, //说明
workOrderId: info.id, //异常工单
warehouseId: info.warehouseId, //仓库ID
});
@@ -1578,19 +1616,35 @@ const submit = () => {
// 赔款方
console.log(data, '处理好的值');
- $_addCompletionEnd(data).then(res => {
- $router.push('/aftersales/aftersalesWorkOrder');
- console.log(res, '完结成功返回值');
- if (res.data.code == 200) {
- ElMessage({
- showClose: true,
- message: res.data.msg,
- type: 'success',
- });
- }
- });
+ // $_addCompletionEnd(data).then(res => {
+ // $router.push('/aftersales/aftersalesWorkOrder');
+ // console.log(res, '完结成功返回值');
+ // if (res.data.code == 200) {
+ // ElMessage({
+ // showClose: true,
+ // message: res.data.msg,
+ // type: 'success',
+ // });
+ // }
+ // });
+ // }else{
+ // ElMessage({
+ // message: '权限不足',
+ // type: 'warning',
+ // });
+ // console.log(UserPermissions.value);
+ // return;
+ // }
} else {
- // 新增记录
+ if (UserPermissions.value != '仓库客服') {
+ ElMessage({
+ message: '权限不足',
+ type: 'warning',
+ });
+ console.log(UserPermissions.value);
+ return;
+ }
+ // 新增记录处理结果
console.log($route.query.id, '异常ID');
console.log(ProcessingList.value, 'ProcessingList12312');
let info = JSON.parse(JSON.stringify(endFrom.value)); //拷贝要提交的数据
@@ -1858,7 +1912,7 @@ const ViewPackageDetails = val => {
}
.notes {
width: 100%;
- margin-top:40px;
+ margin-top: 40px;
}
.Transport_damage_photos {
width: 100%;
@@ -1926,11 +1980,11 @@ const ViewPackageDetails = val => {
display: flex;
align-items: center;
}
- .el_pklab{
+ .el_pklab {
width: 50px;
}
-
- .el_pkLi{
+
+ .el_pkLi {
width: 100%;
display: flex;
justify-content: space-between;
@@ -2182,7 +2236,7 @@ const ViewPackageDetails = val => {
flex-direction: column;
margin-bottom: 10px;
.leftbox {
- width: 80%;
+ width: 100%;
display: flex;
justify-content: space-between;
}
@@ -2225,10 +2279,10 @@ const ViewPackageDetails = val => {
justify-content: flex-end;
margin: 4px 0;
}
-.el_resj{
- margin-top:20px !important;
+.el_resj {
+ margin-top: 20px !important;
}
-.el_lab{
+.el_lab {
margin-right: 10px !important;
}
diff --git a/src/views/aftersales/aftersalesWorkOrdermodify.vue b/src/views/aftersales/aftersalesWorkOrdermodify.vue
index 7f053f88..3a5dde9c 100644
--- a/src/views/aftersales/aftersalesWorkOrdermodify.vue
+++ b/src/views/aftersales/aftersalesWorkOrdermodify.vue
@@ -1,1307 +1,1770 @@
-
-
+
+
+
+
-
-
-
-
添加信息
-
-
-
- 包条码:
-
-
-
-
- 订单自编码:
-
-
-
-
- 运单号:
-
-
+
+
+
+
添加信息
+
+
+
+ 包条码:
+
+
+
+
+ 订单自编码:
+
-
-
-
- 查看历史包件
-
-
移除
+
+
+ 运单号:
+
-
-
总件数:{{ Indexform.number }}
+
+
+
+ 查看历史包件
+
+ 移除
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
添加信息
-
-
-
- 责任方:
-
-
-
-
-
-
-
-
-
-
-
-
-
- 责任人:
-
-
-
-
-
- 占比:
-
+
+
+
+
+
+
+
添加信息
+
+
+
+ 责任方:
+
+
+
+
+
-
-
-
- 说明:
-
+
+
+
-
+
+
+
+
+ 责任人:
+
+
+
+
+
+ 占比:
+
-
-
-
公司占比:{{ companyProportion }}
+
+ 移除
-
-
-
-
-
{{
- SelectType == 1 ? '运损照片' : SelectType == 3 ? '窜货照片' : '照片'
- }}
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
处理结果-理赔金额
+
+
+
{{ item.name }}:
+
+
+ {{ item.payment ? item.text : '支付方式' }}
+
+
-
-
-
-
-
-
-
-
件数{{ item.number }}
+
+
+ 总金额:{{ TotalClaimAmount }}
-
-
-
-
-
-
-
-
-
-
件数{{ item.number }}
+
+
+ 理赔支付时间
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ 完结信息
+
+
+
+
+ 添加赔款方
+ 添加收款方
+
+
+
+
+ {{ item.state == 0 ? '赔款方' : '收款方' }}{{ item.cld }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 财务处理
+ 移除
+
+
+
+
+
+ 赔款金额总和:{{ TotalamountCompensation }}
+
+ 收款金额总和:{{ TotalamountReceived }}
+
+
+
+
+
+
+
+
+
+
+
+ 仲裁原因
+
+
+
+
-
- 查看详情
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+}
+:deep(.el-upload-dragger) {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
From f10f2f542f955cc417d613a3de7a53c792f42110 Mon Sep 17 00:00:00 2001
From: PigBaoBei <2739175034@qq.com>
Date: Sat, 16 Dec 2023 14:39:45 +0800
Subject: [PATCH 2/4] =?UTF-8?q?=E9=85=8D=E9=80=81=E4=BB=BB=E5=8A=A1?=
=?UTF-8?q?=E5=A2=9E=E5=8A=A0=E9=85=8D=E9=80=81=E7=8A=B6=E6=80=81tabs?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../distributionDeliveryListmar.vue | 2646 ++++++++++-------
1 file changed, 1504 insertions(+), 1142 deletions(-)
diff --git a/src/views/distribution/deliverylist/distributionDeliveryListmar.vue b/src/views/distribution/deliverylist/distributionDeliveryListmar.vue
index b4e14a93..3ff0bda2 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryListmar.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryListmar.vue
@@ -1,1222 +1,1584 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 自主配送
- 外协配送
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 搜 索
- 清 空
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 打 印
- 查 看
- 地 图
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 自主配送
+ 外协配送
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜 索
+ 清 空
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -->
-
-
+
+
-
-
-
- {{ item.dictValue }}
- 件数:
-
-
- 公里:
-
-
- 距离:
-
-
- 人数:
-
-
- 楼层:
-
-
- 预计费用:
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
From 93c68f3767a56bc674f8b1e51c5cd52bc2b63769 Mon Sep 17 00:00:00 2001
From: "pref_mail@163.com" <123456>
Date: Sat, 16 Dec 2023 14:46:04 +0800
Subject: [PATCH 3/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=BC=93=E5=AD=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/page/index/layout.vue | 1 +
src/router/avue-router.js | 6 +-
src/router/index.js | 1 -
src/router/views/index.js | 2365 +++++++++--------
.../deliverylist/distributionDeliveryList.vue | 4 +-
.../delivery/distributionStockArticleSelf.vue | 2 +-
.../inventory/distrilbutionBillLading.vue | 32 +-
7 files changed, 1210 insertions(+), 1201 deletions(-)
diff --git a/src/page/index/layout.vue b/src/page/index/layout.vue
index 0439730f..ef13a581 100644
--- a/src/page/index/layout.vue
+++ b/src/page/index/layout.vue
@@ -1,5 +1,6 @@
+
diff --git a/src/router/avue-router.js b/src/router/avue-router.js
index dad12da4..5774525f 100644
--- a/src/router/avue-router.js
+++ b/src/router/avue-router.js
@@ -42,6 +42,7 @@ RouterPlugin.install = function (option = {}) {
},
//动态路由
formatRoutes: function (aMenu = [], first) {
+
const aRouter = [];
const propsDefault = website.menu;
if (aMenu && aMenu.length === 0) return;
@@ -55,9 +56,6 @@ RouterPlugin.install = function (option = {}) {
query = oMenu[propsDefault.query],
meta = oMenu[propsDefault.meta];
- if (option.keepAlive) {
- meta.keepAlive = option.keepAlive;
- }
const isChild = !!(children && children.length !== 0);
const oRouter = {
path: path,
@@ -131,7 +129,7 @@ export const formatPath = (ele, first) => {
const propsDefault = website.menu;
const icon = ele[propsDefault.icon];
ele[propsDefault.icon] = !icon ? propsDefault.iconDefault : icon;
- ele.meta = { keepAlive: ele.isOpen == 2 };
+ ele.meta = { keepAlive: ele.isOpen == 2 };
const iframeComponent = 'components/iframe/main';
const iframeSrc = href => {
return href.replace(/&/g, '#');
diff --git a/src/router/index.js b/src/router/index.js
index 7fab1ed4..8257099d 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -14,7 +14,6 @@ AvueRouter.install({
store: Store,
router: Router,
i18n: i18n,
- keepAlive: true
});
Router.$avueRouter.formatRoutes(Store.getters.menuAll, true);
diff --git a/src/router/views/index.js b/src/router/views/index.js
index d35eb521..aca52120 100644
--- a/src/router/views/index.js
+++ b/src/router/views/index.js
@@ -1,1355 +1,1366 @@
-import Layout from '@/page/index/index.vue';
+import Layout from '@/page/index/layout.vue';
import Store from '@/store/';
export default [
{
- path: '/wel',
+ path: '/',
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: '控制台',
+ redirect: '/wel',
+ children: [
+ {
+ path: '/wel',
+ component: Layout,
+ 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: '/distribution',
+ name: '统计页面',
meta: {
i18n: 'dashboard',
menu: false,
},
- component: () => import(/* webpackChunkName: "views" */ '@/views/wel/dashboard.vue'),
- },
- ],
- },
- {
- path: '/distribution',
- name: '统计页面',
- meta: {
- i18n: 'dashboard',
- menu: false,
- },
- redirect: '/distribution/distributionStockArticleFrom',
- component: Layout,
- children: [
- {
- path: 'distributionStockArticleFrom',
- component: () => import('@/views/distribution/inventory/distributionStockArticleFrom.vue'),
- },
- ],
- },
- {
- path: '/basicdata',
- redirect: '/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocationDetails',
- component: Layout,
- children: [
- {
- path: 'warehouse/goodsAllocation/BasicdataGoodsAllocationDetails',
- name: '详情',
- meta: {
- i18n: 'dict',
- },
- query: {},
- props: route => ({
- name: route.query.name,
- info: route.query.info,
- }),
- component: () =>
- import('@/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocationDetails.vue'),
- },
- ],
- },
- {
- path: '/basicdata',
- component: Layout,
- redirect: '/basicdata/vehicle/basicdtaVehicleAddForm',
- children: [
- {
- path: 'vehicle/basicdtaVehicleAddForm',
- name: '车辆添加',
- meta: {
- i18n: 'dict',
- },
- component: () => import('@/views/basicdata/vehicle/basicdtaVehicleAddForm.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'),
- },
- ],
- },
- {
- path: '/distribution/artery',
- component: Layout,
- redirect: '/distribution/artery/zeroAdditionalRecording',
- children: [
- {
- path: 'zeroAdditionalRecording',
- name: '零担补录',
- meta: {
- i18n: 'data',
- },
- component: () =>
- import(
- /* webpackChunkName: "views" */ '@/views/distribution/artery/zeroAdditionalRecording.vue'
- ),
- },
- {
- path: 'AddVehicleStowage',
- name: '新增配载',
- meta: {
- i18n: 'data',
- },
- component: () =>
- import(
- /* webpackChunkName: "views" */ '@/views/distribution/artery/AddVehicleStowage.vue'
- ),
- },
- {
- path: 'truckLoadingDetails',
- name: '装车明细',
- meta: {
- i18n: 'data',
- },
- component: () =>
- import(
- /* webpackChunkName: "views" */ '@/views/distribution/artery/truckLoadingDetails.vue'
- ),
- },
- {
- path: 'addTripartiteTransfer',
- name: '新增中转',
- meta: {
- i18n: 'data',
- },
- component: () =>
- import(
- /* webpackChunkName: "views" */ '@/views/distribution/artery/addTripartiteTransfer.vue'
- ),
- },
- {
- path: 'TripartiteTransferDetails',
- name: '中转详情',
- meta: {
- i18n: 'data',
- },
- component: () =>
- import(
- /* webpackChunkName: "views" */ '@/views/distribution/artery/TripartiteTransferDetails.vue'
- ),
- },
- ],
- },
- // {
- // 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',
- redirect: '/basic/pdarecords',
- children: [
+ redirect: '/distribution/distributionStockArticleFrom',
+ component: Layout,
+ children: [
+ {
+ path: 'distributionStockArticleFrom',
+ component: () => import('@/views/distribution/inventory/distributionStockArticleFrom.vue'),
+ },
+ ],
+ },
+ {
+ path: '/basicdata',
+ redirect: '/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocationDetails',
+ component: Layout,
+ children: [
+ {
+ path: 'warehouse/goodsAllocation/BasicdataGoodsAllocationDetails',
+ name: '详情',
+ meta: {
+ i18n: 'dict',
+ },
+ query: {},
+ props: route => ({
+ name: route.query.name,
+ info: route.query.info,
+ }),
+ component: () =>
+ import('@/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocationDetails.vue'),
+ },
+ ],
+ },
+ {
+ path: '/basicdata',
+ component: Layout,
+ redirect: '/basicdata/vehicle/basicdtaVehicleAddForm',
+ children: [
+ {
+ path: 'vehicle/basicdtaVehicleAddForm',
+ name: '车辆添加',
+ meta: {
+ i18n: 'dict',
+ },
+ component: () => import('@/views/basicdata/vehicle/basicdtaVehicleAddForm.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'),
+ },
+ ],
+ },
+ {
+ path: '/distribution/artery',
+ component: Layout,
+ redirect: '/distribution/artery/zeroAdditionalRecording',
+ children: [
+ {
+ path: 'zeroAdditionalRecording',
+ name: '零担补录',
+ meta: {
+ i18n: 'data',
+ },
+ component: () =>
+ import(
+ /* webpackChunkName: "views" */ '@/views/distribution/artery/zeroAdditionalRecording.vue'
+ ),
+ },
+ {
+ path: 'AddVehicleStowage',
+ name: '新增配载',
+ meta: {
+ i18n: 'data',
+ },
+ component: () =>
+ import(
+ /* webpackChunkName: "views" */ '@/views/distribution/artery/AddVehicleStowage.vue'
+ ),
+ },
+ {
+ path: 'truckLoadingDetails',
+ name: '装车明细',
+ meta: {
+ i18n: 'data',
+ },
+ component: () =>
+ import(
+ /* webpackChunkName: "views" */ '@/views/distribution/artery/truckLoadingDetails.vue'
+ ),
+ },
+ {
+ path: 'addTripartiteTransfer',
+ name: '新增中转',
+ meta: {
+ i18n: 'data',
+ },
+ component: () =>
+ import(
+ /* webpackChunkName: "views" */ '@/views/distribution/artery/addTripartiteTransfer.vue'
+ ),
+ },
+ {
+ path: 'TripartiteTransferDetails',
+ name: '中转详情',
+ meta: {
+ i18n: 'data',
+ },
+ component: () =>
+ import(
+ /* webpackChunkName: "views" */ '@/views/distribution/artery/TripartiteTransferDetails.vue'
+ ),
+ },
+ ],
+ },
+ // {
+ // path: '/basic/pdarecords/basicPdarecords',
+ // name:'pda维修记录',
+ // meta:{
+ // i18n:'work'
+ // },
+ // component: () => import(/* webpackChunkName: "views" */ '@/views/basic/pdarecords/basicPdarecords.vue'),
+ // },
{
path: '/basic/pdarecords/basicPdarecords',
- name: 'pad编辑',
- meta: {
- data: 'data',
- },
- component: () =>
- import(/* webpackChunkName: "views" */ '@/views/basic/pdarecords/basicPdarecords.vue'),
- },
- ],
- },
- {
- path: '/distribution/inventory',
- component: Layout,
- // key: 'fullPath',
- redirect: '/distribution/inventory/arteryDistrilbutionBillLadingList',
- children: [
- {
- path: '/distribution/inventory/arteryDistrilbutionBillLadingList',
- name: '干线提货管理',
- meta: {
- data: 'data',
- },
- component: () =>
- import('@/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue'),
- },
- {
- path: '/distribution/inventory/arteryDistrilbutionBillLadingListDetails',
- name: '干线提货管理详情',
- meta: {
- data: 'data',
- },
- component: () =>
- import(
- /* webpackChunkName: "views" */ '@/views/distribution/inventory/arteryDistrilbutionBillLadingListDetails.vue'
- ),
- },
- {
- path: '/distribution/inventory/BookingNote',
- name: '货物托运单',
- meta: {
- data: 'data',
- },
- component: () =>
- import(/* webpackChunkName: "views" */ '@/views/distribution/inventory/BookingNote.vue'),
+ component: Layout,
+ key: 'fullPath',
+ redirect: '/basic/pdarecords',
+ children: [
+ {
+ path: '/basic/pdarecords/basicPdarecords',
+ name: 'pad编辑',
+ meta: {
+ data: 'data',
+ },
+ component: () =>
+ import(/* webpackChunkName: "views" */ '@/views/basic/pdarecords/basicPdarecords.vue'),
+ },
+ ],
+ },
+ {
+ path: '/distribution/inventory',
+ component: Layout,
+ // key: 'fullPath',
+ redirect: '/distribution/inventory/arteryDistrilbutionBillLadingList',
+ children: [
+ {
+ path: '/distribution/inventory/arteryDistrilbutionBillLadingList',
+ name: '干线提货管理',
+ meta: {
+ data: 'data',
+ },
+ component: () =>
+ import('@/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue'),
+ },
+ {
+ path: '/distribution/inventory/arteryDistrilbutionBillLadingListDetails',
+ name: '干线提货管理详情',
+ meta: {
+ data: 'data',
+ },
+ component: () =>
+ import(
+ /* webpackChunkName: "views" */ '@/views/distribution/inventory/arteryDistrilbutionBillLadingListDetails.vue'
+ ),
+ },
+ {
+ path: '/distribution/inventory/BookingNote',
+ name: '货物托运单',
+ meta: {
+ data: 'data',
+ },
+ component: () =>
+ import(/* webpackChunkName: "views" */ '@/views/distribution/inventory/BookingNote.vue'),
+ },
+ {
+ path: '/distribution/inventory/CreateOrder',
+ name: '创建订单',
+ meta: {
+ data: 'data',
+ },
+ component: () =>
+ import(/* webpackChunkName: "views" */ '@/views/distribution/inventory/CreateOrder.vue'),
+ },
+ ],
+ },
+ {
+ path: '/waybill',
+ component: Layout,
+ key: 'fullPath',
+ redirect: '/waybill/orderPackageListDetails',
+ children: [
+ // 包明细
+ {
+ path: 'orderPackageListDetails',
+ meta: {
+ data: 'data',
+ keepAlive: true,
+ },
+ component: () => import('@/views/waybill/orderPackageListDetails.vue'),
+ },
+ {
+ path: 'EditCustomerInfo/:ids/:info',
+ name: '客户信息修改',
+ meta: {
+ i18n: 'dict',
+ keepAlive: true,
+ },
+ component: () => import('@/views/waybill/EditCustomerInfo.vue'),
+ },
+ {
+ path: 'ComparativeStatement',
+ name: '对比报表',
+ meta: {
+ data: 'data',
+ },
+ component: () => import('@/views/waybill/ComparativeStatement.vue'),
+ },
+ ],
},
- {
- path: '/distribution/inventory/CreateOrder',
- name: '创建订单',
- meta: {
- data: 'data',
- },
- component: () =>
- import(/* webpackChunkName: "views" */ '@/views/distribution/inventory/CreateOrder.vue'),
- },
- ],
- },
- {
- path: '/waybill',
- component: Layout,
- key: 'fullPath',
- redirect: '/waybill/orderPackageListDetails',
- children: [
- // 包明细
- {
- path: 'orderPackageListDetails',
- meta: {
- data: 'data',
- keepAlive: true,
- },
- component: () => import('@/views/waybill/orderPackageListDetails.vue'),
- },
- {
- path: 'EditCustomerInfo/:ids/:info',
- name: '客户信息修改',
- meta: {
- i18n: 'dict',
- keepAlive: true,
- },
- component: () => import('@/views/waybill/EditCustomerInfo.vue'),
- },
- {
- path: 'ComparativeStatement',
- name: '对比报表',
- meta: {
- data: 'data',
- },
- component: () => import('@/views/waybill/ComparativeStatement.vue'),
- },
- ],
- },
- {
- 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'
- ),
+ 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'
+ ),
+ },
+ ],
},
- ],
- },
- {
- 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'),
+ 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'),
+ 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'
- ),
+ 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'
- ),
+ 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'),
+ 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'),
+ },
+ ],
},
- ],
- },
- {
- path: '/basicdata/brand/basicZonePriceFrom',
- component: Layout,
- redirect: '/brand/basicZonePriceFrom',
- children: [
{
path: '/basicdata/brand/basicZonePriceFrom',
- 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/basicZonePriceFrom.vue'),
- },
- ],
- },
- {
- path: '/basicdata/brand/basicdataFreightFrom',
- component: Layout,
- redirect: '/brand/basicdataFreightFrom',
- children: [
+ component: Layout,
+ redirect: '/brand/basicZonePriceFrom',
+ children: [
+ {
+ path: '/basicdata/brand/basicZonePriceFrom',
+ 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/basicZonePriceFrom.vue'),
+ },
+ ],
+ },
{
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: [
+ 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',
- 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: [
+ 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',
- 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: [
+ 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',
- 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: [
+ 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',
- name: 'name',
- meta: {
- data: 'data',
- },
- component: () => import('@/views/basic/printTemplate/basicPrintTemplateFrom.vue'),
+ component: Layout,
+ redirect: '/basic/printTemplate',
+ children: [
+ {
+ path: '/basic/printTemplate/basicPrintTemplateFrom',
+ name: 'name',
+ meta: {
+ data: 'data',
+ },
+ component: () => import('@/views/basic/printTemplate/basicPrintTemplateFrom.vue'),
+ },
+ ],
},
- ],
- },
- {
- 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/pda/basicPdatt',
- component: Layout,
- redirect: '/basic/pda',
- children: [
+ component: Layout,
+ redirect: '/basic/pda',
+ children: [
+ {
+ path: '/basic/pda/basicPdaform',
+ name: 'pad信息',
+ meta: {},
+ component: () => import('@/views/basic/pda/basicPdaform.vue'),
+ },
+ ],
+ },
+ // 测试页面
{
path: '/basic/pda/basicPdatt',
- name: 'pad信息',
- meta: {},
- component: () => import('@/views/basic/pda/basicPdatt.vue'),
+ component: Layout,
+ redirect: '/basic/pda',
+ children: [
+ {
+ path: '/basic/pda/basicPdatt',
+ name: 'pad信息',
+ meta: {},
+ component: () => import('@/views/basic/pda/basicPdatt.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'),
+ component: Layout,
+ redirect: '/basic/property',
+ children: [
+ {
+ path: '/basic/property/basicPropertyform',
+ name: '编辑字段',
+ meta: {
+ data: 'data',
+ },
+ component: () => import('@/views/basic/property/basicPropertyform.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/distribution/reservation/reservationSubmitFrom',
- component: Layout,
- redirect: '/distribution/reservation/reservationSubmitFrom',
- children: [
{
path: '/distribution/reservation/reservationSubmitFrom',
- name: '转预约单',
- component: () => import('@/views/distribution/reservation/reservationSubmitFrom.vue'),
+ component: Layout,
+ redirect: '/distribution/reservation/reservationSubmitFrom',
+ children: [
+ {
+ path: '/distribution/reservation/reservationSubmitFrom',
+ name: '转预约单',
+ component: () => import('@/views/distribution/reservation/reservationSubmitFrom.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/distribution/reservation/reservationAddFrom',
- component: Layout,
- redirect: '/distribution/reservation/reservationAddFrom',
- children: [
{
path: '/distribution/reservation/reservationAddFrom',
- name: '新增预约单',
- component: () => import('@/views/distribution/reservation/reservationAddFrom.vue'),
+ component: Layout,
+ redirect: '/distribution/reservation/reservationAddFrom',
+ children: [
+ {
+ path: '/distribution/reservation/reservationAddFrom',
+ name: '新增预约单',
+ component: () => import('@/views/distribution/reservation/reservationAddFrom.vue'),
+ },
+ ],
},
- ],
- },
- {
- 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'),
+ component: Layout,
+ redirect: '/distribution/reservation/atlas',
+ children: [
+ {
+ path: '/distribution/reservation/atlas',
+ name: '市配地图展示',
+ id: 'id',
+ component: () => import('@/views/distribution/reservation/atlas.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/distribution/reservation/atlas1',
- component: Layout,
- redirect: '/distribution/reservation/atlas1',
- children: [
{
path: '/distribution/reservation/atlas1',
- name: '配送地图展示',
- id: 'id',
- component: () => import('@/views/distribution/reservation/atlas1.vue'),
+ component: Layout,
+ redirect: '/distribution/reservation/atlas1',
+ children: [
+ {
+ path: '/distribution/reservation/atlas1',
+ name: '配送地图展示',
+ id: 'id',
+ component: () => import('@/views/distribution/reservation/atlas1.vue'),
+ },
+ ],
},
- ],
- },
- {
- 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'),
- },
- ],
- },
- // {
- // 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: [
+ component: Layout,
+ redirect: '/distribution/reservation/reservationDetails',
+ children: [
+ {
+ path: '/distribution/reservation/reservationDetails',
+ name: '预约单详情',
+ id: 'id',
+ component: () => import('@/views/distribution/reservation/reservationDetails.vue'),
+ },
+ ],
+ },
+ // {
+ // 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',
- name: 'name',
- id: 'id',
- component: () => import('@/views/distribution/turndelivery/deliveryMarket.vue'),
- },
- ],
- },
- // {
- // 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: [
+ component: Layout,
+ redirect: '/distribution/turndelivery/deliveryMarket',
+ children: [
+ {
+ path: '/distribution/turndelivery/deliveryMarket',
+ name: 'name',
+ id: 'id',
+ component: () => import('@/views/distribution/turndelivery/deliveryMarket.vue'),
+ },
+ ],
+ },
+ // {
+ // 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',
- name: '商配计划',
- component: () => import('@/views/distribution/turndelivery/deliveryDiscuss.vue'),
+ component: Layout,
+ redirect: '/distribution/turndelivery/deliveryDiscuss',
+ children: [
+ {
+ path: '/distribution/turndelivery/deliveryDiscuss',
+ name: '商配计划',
+ component: () => import('@/views/distribution/turndelivery/deliveryDiscuss.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
- component: Layout,
- redirect: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
- children: [
{
path: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
- name: '滞留明细' + 'name',
- component: () =>
- import('@/views/warehouse/warehouseRetentionRecord/warehouseRetentionDetails.vue'),
+ component: Layout,
+ redirect: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
+ children: [
+ {
+ path: '/warehouse/warehouseRetentionRecord/warehouseRetentionDetails',
+ name: '滞留明细' + 'name',
+ component: () =>
+ import('@/views/warehouse/warehouseRetentionRecord/warehouseRetentionDetails.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'),
+ 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'),
+ },
+ ],
},
- ],
- },
- {
- path: '/basic/material/basicTripartiteMaterial',
- component: Layout,
- redirect: '/basic/material',
- children: [
{
path: '/basic/material/basicTripartiteMaterial',
- name: '三方物料',
- meta: {
- data: 'data',
- },
- component: () =>
- import(
- /* webpackChunkName: "views" */ '@/views/basic/material/basicTripartiteMaterial.vue'
- ),
+ component: Layout,
+ redirect: '/basic/material',
+ children: [
+ {
+ path: '/basic/material/basicTripartiteMaterial',
+ name: '三方物料',
+ meta: {
+ data: 'data',
+ },
+ component: () =>
+ import(
+ /* webpackChunkName: "views" */ '@/views/basic/material/basicTripartiteMaterial.vue'
+ ),
+ },
+ ],
},
- ],
- },
- {
- 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'),
+ component: Layout,
+ redirect: '/distribution/inventory',
+ children: [
+ {
+ path: '/distribution/inventory/distrilbutionBillLading',
+ name: '创建提货单',
+ meta: {
+ i18n: 'dict',
+ keepAlive: true
+ },
+ 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'),
+ 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',
- keepAlive: true,
- },
- 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'),
- // },
- // ],
- // },
- {
- path: '/basicdata/brand/basicdataTripartiteMall',
- component: Layout,
- redirect: '/brand/basicdataTripartiteMall',
- children: [
+ component: Layout,
+ redirect: '/deliverylist/distributionDeliveryListedt',
+ children: [
+ {
+ path: '/distribution/deliverylist/distributionDeliveryListedt',
+ name: '配送查看',
+ meta: {
+ i18n: 'dict',
+ keepAlive: true,
+ },
+ 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'),
+ // },
+ // ],
+ // },
{
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'),
+ 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'),
+ 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: '/basicdata/brand/basicClientDetail',
- component: Layout,
- redirect: '/brand/basicClientDetail',
- children: [
{
path: '/basicdata/brand/basicClientDetail',
- name: '查看详情',
- meta: {
- i18n: 'dict',
- },
- component: () => import('@/views/basicdata/brand/basicClientDetail.vue'),
+ component: Layout,
+ redirect: '/brand/basicClientDetail',
+ children: [
+ {
+ path: '/basicdata/brand/basicClientDetail',
+ name: '查看详情',
+ meta: {
+ i18n: 'dict',
+ },
+ component: () => import('@/views/basicdata/brand/basicClientDetail.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'),
+ 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',
- keepAlive: true,
- },
- 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: [
+ component: Layout,
+ redirect: '/inventory/distributionStockArticleDetails',
+ children: [
+ {
+ path: '/distribution/inventory/distributionStockArticleDetails',
+ name: '查询订单详情',
+ meta: {
+ i18n: 'dict',
+ keepAlive: true,
+ },
+ props: route => ({
+ name: route.query.name,
+ id: route.query.id,
+ }),
+ component: () =>
+ import('@/views/distribution/inventory/distributionStockArticleDetails.vue'),
+ },
+ ],
+ },
{
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'),
+ 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'),
+ },
+ ],
},
- ],
- },
- {
- 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'),
+ 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'),
+ component: Layout,
+ redirect: '/distribution/signdetail',
+ children: [
+ {
+ path: '/distribution/signdetail/distributionSigndetaledt',
+ name: '订单查看',
+ meta: {
+ i18n: 'dict',
+ },
+ component: () => import('@/views/distribution/signdetail/distributionSigndetaledt.vue'),
+ },
+ ],
},
- ],
- },
- {
- 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'),
+ 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'),
+ },
+ ],
},
- ],
- },
- {
- path: '/distribution/stockup/distributionStockupDetailsSelf',
- component: Layout,
- redirect: '/stockup/distributionStockupDetailsSelf',
- children: [
{
path: '/distribution/stockup/distributionStockupDetailsSelf',
- name: '自提明细',
- meta: {
- i18n: 'dict',
- },
- props: route => ({
- name: route.query.name,
- id: route.query.id,
- }),
- component: () => import('@/views/distribution/stockup/distributionStockupDetailsSelf.vue'),
+ component: Layout,
+ redirect: '/stockup/distributionStockupDetailsSelf',
+ children: [
+ {
+ path: '/distribution/stockup/distributionStockupDetailsSelf',
+ name: '自提明细',
+ meta: {
+ i18n: 'dict',
+ },
+ props: route => ({
+ name: route.query.name,
+ id: route.query.id,
+ }),
+ component: () => import('@/views/distribution/stockup/distributionStockupDetailsSelf.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/distribution/inventory/distrilbutionBillLadingView',
- component: Layout,
- redirect: '/inventory/distrilbutionBillLadingView',
- children: [
{
path: '/distribution/inventory/distrilbutionBillLadingView',
- name: '查看提货详情',
- meta: {
- i18n: 'dict',
- },
- props: route => ({
- name: route.query.name,
- id: route.query.id,
- }),
- component: () => import('@/views/distribution/inventory/distrilbutionBillLadingView.vue'),
+ component: Layout,
+ redirect: '/inventory/distrilbutionBillLadingView',
+ children: [
+ {
+ path: '/distribution/inventory/distrilbutionBillLadingView',
+ name: '查看提货详情',
+ meta: {
+ i18n: 'dict',
+ },
+ props: route => ({
+ name: route.query.name,
+ id: route.query.id,
+ }),
+ component: () => import('@/views/distribution/inventory/distrilbutionBillLadingView.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/basicdata/warehouse/tray/basicdataTrayedt',
- component: Layout,
- redirect: '/warehouse/tray/basicdataTrayedt',
- children: [
{
path: '/basicdata/warehouse/tray/basicdataTrayedt',
- name: '在托货物',
- meta: {
- i18n: 'dict',
- },
- props: route => ({
- name: route.query.name,
- id: route.query.id,
- }),
- component: () => import('@/views/basicdata/warehouse/tray/basicdataTrayedt.vue'),
+ component: Layout,
+ redirect: '/warehouse/tray/basicdataTrayedt',
+ children: [
+ {
+ path: '/basicdata/warehouse/tray/basicdataTrayedt',
+ name: '在托货物',
+ meta: {
+ i18n: 'dict',
+ },
+ props: route => ({
+ name: route.query.name,
+ id: route.query.id,
+ }),
+ component: () => import('@/views/basicdata/warehouse/tray/basicdataTrayedt.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/basicdata/warehouse/tray/basicdataTrayhistory',
- component: Layout,
- redirect: '/warehouse/tray/basicdataTrayhistory',
- children: [
{
path: '/basicdata/warehouse/tray/basicdataTrayhistory',
- name: '托盘历史记录',
- meta: {
- i18n: 'dict',
- },
- props: route => ({
- name: route.query.name,
- id: route.query.id,
- }),
- component: () => import('@/views/basicdata/warehouse/tray/basicdataTrayhistory.vue'),
+ component: Layout,
+ redirect: '/warehouse/tray/basicdataTrayhistory',
+ children: [
+ {
+ path: '/basicdata/warehouse/tray/basicdataTrayhistory',
+ name: '托盘历史记录',
+ meta: {
+ i18n: 'dict',
+ },
+ props: route => ({
+ name: route.query.name,
+ id: route.query.id,
+ }),
+ component: () => import('@/views/basicdata/warehouse/tray/basicdataTrayhistory.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/basicdata/brand/basicClientDetail',
- component: Layout,
- redirect: '/basicdata/brand/basicClientDetail',
- children: [
{
path: '/basicdata/brand/basicClientDetail',
- name: '客户查看详情',
- meta: {
- i18n: 'dict',
- },
- props: route => ({
- id: route.query.id,
- }),
- component: () => import('@/views/basicdata/brand/basicClientDetail.vue'),
+ component: Layout,
+ redirect: '/basicdata/brand/basicClientDetail',
+ children: [
+ {
+ path: '/basicdata/brand/basicClientDetail',
+ name: '客户查看详情',
+ meta: {
+ i18n: 'dict',
+ },
+ props: route => ({
+ id: route.query.id,
+ }),
+ component: () => import('@/views/basicdata/brand/basicClientDetail.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/basicdata/team/basicdataTeamStaff',
- component: Layout,
- redirect: '/team/basicdataTeamStaffl',
- children: [
{
path: '/basicdata/team/basicdataTeamStaff',
- name: '班组列表',
- meta: {
- i18n: 'dict',
- },
- props: route => ({
- id: route.query.id,
- }),
- component: () => import('@/views/basicdata/team/basicdataTeamStaff.vue'),
+ component: Layout,
+ redirect: '/team/basicdataTeamStaffl',
+ children: [
+ {
+ path: '/basicdata/team/basicdataTeamStaff',
+ name: '班组列表',
+ meta: {
+ i18n: 'dict',
+ },
+ props: route => ({
+ id: route.query.id,
+ }),
+ component: () => import('@/views/basicdata/team/basicdataTeamStaff.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/basicdata/brand/basicClientAccount',
- component: Layout,
- redirect: '/basicdata/brand/basicClient',
- children: [
{
path: '/basicdata/brand/basicClientAccount',
- name: '客户账号列表',
- meta: {
- i18n: 'dict',
- },
- props: route => ({
- id: route.query.id,
- }),
- component: () => import('@/views/basicdata/brand/basicClientAccount.vue'),
+ component: Layout,
+ redirect: '/basicdata/brand/basicClient',
+ children: [
+ {
+ path: '/basicdata/brand/basicClientAccount',
+ name: '客户账号列表',
+ meta: {
+ i18n: 'dict',
+ },
+ props: route => ({
+ id: route.query.id,
+ }),
+ component: () => import('@/views/basicdata/brand/basicClientAccount.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/basicdata/warehouse/warehouse/basicdataWarehouse1',
- component: Layout,
- redirect: '/basicdata/warehouse/warehouse',
- children: [
{
path: '/basicdata/warehouse/warehouse/basicdataWarehouse1',
- name: '仓库资料管理',
- component: () => import('@/views/basicdata/warehouse/warehouse/basicdataWarehouse1.vue'),
+ component: Layout,
+ redirect: '/basicdata/warehouse/warehouse',
+ children: [
+ {
+ path: '/basicdata/warehouse/warehouse/basicdataWarehouse1',
+ name: '仓库资料管理',
+ component: () => import('@/views/basicdata/warehouse/warehouse/basicdataWarehouse1.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/distribution/checkInventoryTask/createTaskfrom',
- component: Layout,
- redirect: '/distribution/checkInventoryTask/createTaskfrom',
- children: [
{
path: '/distribution/checkInventoryTask/createTaskfrom',
- name: '盘点任务明细',
- component: () => import('@/views/distribution/checkInventoryTask/createTaskfrom.vue'),
+ component: Layout,
+ redirect: '/distribution/checkInventoryTask/createTaskfrom',
+ children: [
+ {
+ path: '/distribution/checkInventoryTask/createTaskfrom',
+ name: '盘点任务明细',
+ component: () => import('@/views/distribution/checkInventoryTask/createTaskfrom.vue'),
+ },
+ ],
},
- ],
- },
- // 下面的代码为 商场客户端的页面
+ // 下面的代码为 商场客户端的页面
- {
- path: '/mail/order/add',
- component: Layout,
- redirect: '/mail/order/add',
- children: [
{
path: '/mail/order/add',
- name: '新建商场预约单',
- component: () => import('@/views/mail/order/add.vue'),
+ component: Layout,
+ redirect: '/mail/order/add',
+ children: [
+ {
+ path: '/mail/order/add',
+ name: '新建商场预约单',
+ component: () => import('@/views/mail/order/add.vue'),
+ },
+ ],
},
- ],
- },
- // {
- // path: '/aftersales/VueTemp',
- // component: Layout,
- // redirect: '/aftersales/VueTemp',
- // children: [
- // {
- // path: '/aftersales/VueTemp',
- // name: '工单',
- // component: () => import('@/views/aftersales/aftersalesWorkOrder.vue'),
- // },
- // ],
- // },
- {
- path: '/aftersales/aftersalesWorkOrderAdd',
- component: Layout,
- redirect: '/aftersales/aftersalesWorkOrderAdd',
- children: [
+ // {
+ // path: '/aftersales/VueTemp',
+ // component: Layout,
+ // redirect: '/aftersales/VueTemp',
+ // children: [
+ // {
+ // path: '/aftersales/VueTemp',
+ // name: '工单',
+ // component: () => import('@/views/aftersales/aftersalesWorkOrder.vue'),
+ // },
+ // ],
+ // },
{
path: '/aftersales/aftersalesWorkOrderAdd',
- name: '工单新增',
- component: () => import('@/views/aftersales/aftersalesWorkOrderAdd.vue'),
+ component: Layout,
+ redirect: '/aftersales/aftersalesWorkOrderAdd',
+ children: [
+ {
+ path: '/aftersales/aftersalesWorkOrderAdd',
+ name: '工单新增',
+ component: () => import('@/views/aftersales/aftersalesWorkOrderAdd.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/aftersales/aftersalesWorkOrderInfo',
- component: Layout,
- redirect: '/aftersales/aftersalesWorkOrderInfo',
- children: [
{
path: '/aftersales/aftersalesWorkOrderInfo',
- name: '工单详情查看',
- component: () => import('@/views/aftersales/aftersalesWorkOrderInfo.vue'),
+ component: Layout,
+ redirect: '/aftersales/aftersalesWorkOrderInfo',
+ children: [
+ {
+ path: '/aftersales/aftersalesWorkOrderInfo',
+ name: '工单详情查看',
+ component: () => import('@/views/aftersales/aftersalesWorkOrderInfo.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/aftersales/aftersalesWorkOrderend',
- component: Layout,
- redirect: '/aftersales/aftersalesWorkOrderend',
- children: [
{
path: '/aftersales/aftersalesWorkOrderend',
- name: '工单完结',
- component: () => import('@/views/aftersales/aftersalesWorkOrderend.vue'),
+ component: Layout,
+ redirect: '/aftersales/aftersalesWorkOrderend',
+ children: [
+ {
+ path: '/aftersales/aftersalesWorkOrderend',
+ name: '工单完结',
+ component: () => import('@/views/aftersales/aftersalesWorkOrderend.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/aftersales/WorkorderTimeout',
- component: Layout,
- redirect: '/aftersales/WorkorderTimeout',
- children: [
{
path: '/aftersales/WorkorderTimeout',
- name: '工单超时罚款',
- component: () => import('@/views/aftersales/WorkorderTimeout.vue'),
+ component: Layout,
+ redirect: '/aftersales/WorkorderTimeout',
+ children: [
+ {
+ path: '/aftersales/WorkorderTimeout',
+ name: '工单超时罚款',
+ component: () => import('@/views/aftersales/WorkorderTimeout.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/aftersales/customerService',
- component: Layout,
- redirect: '/aftersales/customerService',
- children: [
{
path: '/aftersales/customerService',
- name: '客服回复',
- component: () => import('@/views/aftersales/customerService.vue'),
+ component: Layout,
+ redirect: '/aftersales/customerService',
+ children: [
+ {
+ path: '/aftersales/customerService',
+ name: '客服回复',
+ component: () => import('@/views/aftersales/customerService.vue'),
+ },
+ ],
},
- ],
- },
- {
- path: '/aftersales/aftersalesWorkOrderSS',
- component: Layout,
- redirect: '/aftersales/aftersalesWorkOrderSS',
- children: [
{
path: '/aftersales/aftersalesWorkOrderSS',
- name: '工单A',
- component: () => import('@/views/aftersales/aftersalesWorkOrderSS.vue'),
+ component: Layout,
+ redirect: '/aftersales/aftersalesWorkOrderSS',
+ children: [
+ {
+ path: '/aftersales/aftersalesWorkOrderSS',
+ name: '工单A',
+ component: () => import('@/views/aftersales/aftersalesWorkOrderSS.vue'),
+ },
+ ],
},
- ],
+
+
+ // {
+ // path: '/distribution/turndelivery/devtmp',
+ // component: Layout,
+ // redirect: '/distribution/turndelivery/devtmp',
+ // children: [
+ // {
+ // path: '/distribution/turndelivery/devtmp',
+ // name: '商配计划重构',
+ // component: () => import('@/views/distribution/turndelivery/devtmp.vue'),
+ // },
+ // ],
+ // },
+ // {
+ // path: '/distribution/signfor/devtmp',
+ // component: Layout,
+ // redirect: '/distribution/signfor/devtmp',
+ // children: [
+ // {
+ // path: '/distribution/signfor/devtmp',
+ // name: '签收明细重构',
+ // component: () => import('@/views/distribution/signfor/devtmp.vue'),
+ // },
+ // ],
+ // },
+ // {
+ // path: 'basicdata/goodsShelf/basicdataGoodsShelfView',
+ // component: Layout,
+ // redirect: '/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView',
+ // children: [
+ // {
+ // path: '/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView',
+ // name: '',
+ // component: () => import(/* webpackChunkName: "views" */ '@/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.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'),
+
+ // },
+ // ]
+ // },
+
+ // ],
+ // }
+ ]
},
-
- // {
- // path: '/distribution/turndelivery/devtmp',
- // component: Layout,
- // redirect: '/distribution/turndelivery/devtmp',
- // children: [
- // {
- // path: '/distribution/turndelivery/devtmp',
- // name: '商配计划重构',
- // component: () => import('@/views/distribution/turndelivery/devtmp.vue'),
- // },
- // ],
- // },
- // {
- // path: '/distribution/signfor/devtmp',
- // component: Layout,
- // redirect: '/distribution/signfor/devtmp',
- // children: [
- // {
- // path: '/distribution/signfor/devtmp',
- // name: '签收明细重构',
- // component: () => import('@/views/distribution/signfor/devtmp.vue'),
- // },
- // ],
- // },
- // {
- // path: 'basicdata/goodsShelf/basicdataGoodsShelfView',
- // component: Layout,
- // redirect: '/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView',
- // children: [
- // {
- // path: '/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView',
- // name: '',
- // component: () => import(/* webpackChunkName: "views" */ '@/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.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'),
- // },
- // ]
- // },
- // ],
- // }
];
diff --git a/src/views/distribution/deliverylist/distributionDeliveryList.vue b/src/views/distribution/deliverylist/distributionDeliveryList.vue
index faea482c..17c3b419 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryList.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryList.vue
@@ -624,8 +624,8 @@ export default {
},
watch: {
handler(newVal, oldVal) {
- this.fetchData();
- this.onLoad(this.page);
+ // this.fetchData();
+ // this.onLoad(this.page);
},
deep: false,
immediate: true,
diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue b/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
index 3dd72e6c..41a367a2 100644
--- a/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
+++ b/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
@@ -1084,7 +1084,7 @@ export default {
],
};
},
- mounted() {
+ created() {
this.init();
this.onLoad(this.page);
/**
diff --git a/src/views/distribution/inventory/distrilbutionBillLading.vue b/src/views/distribution/inventory/distrilbutionBillLading.vue
index c9f03335..5ead724a 100644
--- a/src/views/distribution/inventory/distrilbutionBillLading.vue
+++ b/src/views/distribution/inventory/distrilbutionBillLading.vue
@@ -1813,22 +1813,22 @@ export default {
this.$functions.setStorage(window.location.pathname + 'sortlist', arr);
}
},
- watch: {
- '$route.query.id': {
- handler(newVal, oldVal) {
- if (this.$route.query.type == '2') {
- //查询提货编辑数据
- this.getDetailOen();
- } else if (this.$route.query.type == '1') {
- this.onLoad(this.page);
- } else if (this.$route.query.type == '3') {
- this.onLoadCj();
- }
- },
- deep: true,
- immediate: true,
- },
- },
+ // watch: {
+ // '$route.query.id': {
+ // handler(newVal, oldVal) {
+ // if (this.$route.query.type == '2') {
+ // //查询提货编辑数据
+ // this.getDetailOen();
+ // } else if (this.$route.query.type == '1') {
+ // this.onLoad(this.page);
+ // } else if (this.$route.query.type == '3') {
+ // this.onLoadCj();
+ // }
+ // },
+ // deep: true,
+ // immediate: true,
+ // },
+ // },
computed: {
...mapGetters(['permission', 'tagWel', 'tagList', 'tag']),
ids() {
From e0ad64523007d3befae7c79be6163041ca8917ad Mon Sep 17 00:00:00 2001
From: PigBaoBei <2739175034@qq.com>
Date: Sat, 16 Dec 2023 15:00:04 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E5=95=86=E9=85=8D=E5=A4=87=E8=B4=A7?=
=?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=A2=9E=E5=8A=A0=E9=85=8D=E9=80=81=E7=8A=B6?=
=?UTF-8?q?=E6=80=81tabs?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../distributionDeliveryListdis.vue | 214 ++++++++++++++----
1 file changed, 169 insertions(+), 45 deletions(-)
diff --git a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue
index 91a4d0f1..334e4713 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue
@@ -99,56 +99,147 @@
-
-
-
-
-
-
-
- 打 印
- 查 看
- 地 图
-
+
+
+
+
+ 打 印
+ 查 看
+ 地 图
+ 编 辑
+
+
+
+
+
+
+
+ 打 印
+ 查 看
+ 地 图
+ 编 辑编 辑
+
+
+
+
+
+
+
+ 打 印
+ 查 看
+ 地 图
+ 编 辑
+
+
+
+
+
+
-
-
-
+
+ 打 印
+ 查 看
+ 地 图
+ 编 辑
+
+
+
+
+
+
+
+
+
+
@@ -375,6 +466,7 @@ export default {
form: {},
// 选择行
selectionList: [],
+ activeName:'first',
columnList: [
{
prop: 'serialNumber',
@@ -736,6 +828,33 @@ export default {
},
},
methods: {
+ //tabs切换
+ handleClick(tab, event) {
+ console.log('tab------------------>', tab.props.name);
+ this.query = {};
+ switch (tab.props.name) {
+
+ case 'first':
+ break;
+ case 'second':
+ //待配送
+ this.query.deliveryStatus = '1';
+ break;
+ case 'third':
+ //配送中
+ this.query.deliveryStatus = '2';
+ break;
+ case 'fourth':
+ //已完成
+ this.query.deliveryStatus = '3';
+ break;
+ }
+ this.onLoad(this.page);
+
+ console.log('tab------------------>', tab);
+ console.log('event--------------->', event);
+ },
+
/**
* 导出
* */
@@ -1243,6 +1362,10 @@ export default {
:deep(.el-dialog) {
width: fit-content;
}
+ :deep(.el-row){
+ flex-direction: column;
+ flex-wrap: nowrap;
+ }
}
.order-info {
ul {
@@ -1336,4 +1459,5 @@ export default {
display: flex;
align-items: flex-end;
}
+