-
- 零担补录
-
- 装车明细
- 编辑
-
-
- 节点费用
+
+
+ 零担补录
+
+
+ 装车明细
+
+
+ 编辑
+
+
+
+
+ 节点费用
+
+
+ 配置直发商家
+
+
+
+ 签收详情
+
+
@@ -355,11 +374,12 @@ import {
postRemoveCarsLoadScan,
} from '@/api/distribution/VehicleStowage';
import { useStore } from 'vuex';
-import { useRouter } from 'vue-router';
+import { useRouter, useRoute } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
// 获取路由实例
const $router = useRouter();
+const $route = useRoute();
const $store = useStore();
@@ -831,6 +851,30 @@ const handleNodeCost = ({ row }) => {
});
};
+/** 配置直发商家弹窗显示 */
+const handleDirectGoMarketVesited = ({ row }) => {
+ $router.push({
+ path: '/distribution/artery/directGoMarket',
+ query: {
+ loadId: row.id,
+ name: row.carsNo + '--' + '配置直发商家',
+ backPath: $route.fullPath,
+ },
+ });
+};
+
+/** 直发商家签收详情 */
+const handleDirectGoMarketDetails = ({ row }) => {
+ $router.push({
+ path: '/distribution/artery/directGoMarketDetails',
+ query: {
+ loadId: row.id,
+ name: row.carsNo + '--' + '签收详情',
+ backPath: $route.fullPath,
+ },
+ });
+};
+
/** 前往配载详情 */
const handleGoWaybill = ({ row }) => {
console.log('row :>> ', row);
@@ -905,7 +949,7 @@ const handleStartCar = async () => {
};
/** 开启弹窗 */
-const handleOpenConfiguration = (type: 'one' | 'batch', data) => {
+const handleOpenConfiguration = (type: 'one' | 'batch', data = {} as any) => {
if (type === 'batch' && details.packageSelectedData.length === 0)
return ElMessage.warning('最少选择一条数据');
details.modifyData = type === 'one' ? [data.row] : details.packageSelectedData;
@@ -1148,4 +1192,14 @@ const handleCancelCarsLoad = () => {
.w100 {
width: 100%;
}
+
+.handleControl {
+ :deep(.el-button) {
+ font-size: 0.8rem;
+ }
+
+ :deep(.el-button + .el-button) {
+ margin-left: 5px;
+ }
+}
diff --git a/src/views/distribution/artery/addTripartiteTransfer.vue b/src/views/distribution/artery/addTripartiteTransfer.vue
index 5c2f7e2a..a8d7ce17 100644
--- a/src/views/distribution/artery/addTripartiteTransfer.vue
+++ b/src/views/distribution/artery/addTripartiteTransfer.vue
@@ -935,7 +935,7 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
try {
const submitData = {
...form.value,
- carsLoadLineList: [
+ addCarsLoadLineList: [
{
nodeType: '1',
nodeName: details.pageInfo.startWarehouseInfo.warehouseName,
@@ -945,15 +945,17 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
linkMobile: details.pageInfo.startWarehouseInfo.linkMobile,
sort: '1',
- lineCarsOrderList: JSON.parse(JSON.stringify(details.newData)).map(value => {
+ addList: JSON.parse(JSON.stringify(details.newData)).map(value => {
value.nodeId = details.pageInfo.startWarehouseInfo.warehouseId;
value.nodeName = details.pageInfo.startWarehouseInfo.warehouseName;
value.finalNodeId = details.pageInfo.startWarehouseInfo.warehouseId;
value.totalNum = 20;
return value;
}),
+ removeList: [],
},
],
+ removeCarsLoadLineList: [],
};
submitData.customerType = submitData.customerType.join(',');
diff --git a/src/views/distribution/artery/directGoMarket.vue b/src/views/distribution/artery/directGoMarket.vue
new file mode 100644
index 00000000..800782b7
--- /dev/null
+++ b/src/views/distribution/artery/directGoMarket.vue
@@ -0,0 +1,672 @@
+