qb 1 year ago
parent
commit
71e7575e2c
  1. 43
      src/router/views/index.js
  2. 105
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  3. 65
      src/views/financialsector/FinanceHome.vue
  4. 8
      src/views/financialsector/Financialse/FinancialWarehousing.vue

43
src/router/views/index.js

@ -1531,6 +1531,49 @@ export default [
],
},
// {
// // 这是父路由,财务主页面
// path: '/financialsector/FinanceHome',
// component: Layout,
// redirect: '/financialsector/FinanceHome',
// children: [
// {
// // 这是父页面的默认视图
// meta: {
// i18n: 'dict',
// keepAlive: false,
// },
// path: '/financialsector/FinanceHome',
// name: '财务',
// component: () => import('@/views/financialsector/FinanceHome.vue'),
// },
// {
// // 子页面
// meta: {
// i18n: 'dict',
// keepAlive: false,
// },
// path: '/financialsector/Financialse/FinancialWarehousing',
// name: '新增模板',
// component: () => import('@/views/financialsector/Financialse/FinancialWarehousing.vue'),
// },
// ],
// },
// {
// path: '/aftersales/aftersalesWorkOrderSS',
// component: Layout,

105
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -28,17 +28,21 @@
remote
:loading='sjloading'
loading-text='正在加载中'
>
<el-option-group
v-for="group in StockInfo.DriverInformation"
:key="group.id"
:label="group.label"
>
<el-option
v-for="item in group.options"
:key="item.id"
:label="item.name"
:value="item.id"
:disabled="item.display"
/>
</el-option-group>
</el-select>
@ -1026,9 +1030,14 @@ Info(); //页面初始化获取车辆和司机信息
// arr1
// arr2
function CurrentVehicle(arr1, arr2) {
console.log(arr1,'arr1====>');
console.log(arr2,'arr2====>');
const matchedArray = [];
arr1.forEach(id => {
const matchedItem = arr2.find(item => item.id === id);
console.log(matchedItem,'matchedItem');
if (matchedItem) {
matchedArray.push(matchedItem);
}
@ -2587,22 +2596,44 @@ const Outsourcing = val => {
};
//
const SJchangeSelect = val => {
if (!val.length) {
DataSubmit.value.masterDriverName = null; //
StockInfo.value.VehicleInformation[1].options = vehicle.value; //
return;
}
const SJchangeSelect = async (val) => {
console.log(val,'司机接受的参数Val');
if (val.length) {
let SJname = null; //
SJname = CurrentVehicle(val, StockInfo.value.DriverInformation[1].options);
let SJname = null; //
console.log(StockInfo.value.DriverInformation[1].options,'StockInfo.value.DriverInformation[1].options首次');
SJname = await CurrentVehicle(val, StockInfo.value.DriverInformation[1].options);//
console.log(SJname,'SJname');
if(!SJname.length){
ElMessage({
message: '选择司机不属于当前仓库,或者没有维护关系,请重新选择司机',
type: 'warning',
})
DataSubmit.value.masterDriverName='';//
return
}
if(SJname.length){
if(SJname[0].vehicleVOList){
if(SJname[0].vehicleVOList.length===1 && !StockInfo.value.Cl.length){
//1
StockInfo.value.Cl.push(SJname[0].vehicleVOList[0].id);//
DataSubmit.value.masterVehicleNub = SJname[0].vehicleVOList[0].vehicleNub; //
CLchangeSelect([SJname[0].vehicleVOList[0].id])
}else{
//
clSelect.value[0].visible = true; //
}
}
}
console.log(StockInfo.value.Cl,'StockInfo.value.Cl')
DataSubmit.value.masterDriverName = SJname[0].name;
let data = []; //
let dataInfo = []; //
let SjData = []; //
// CurrentVehicle() ID
data = CurrentVehicle(val, StockInfo.value.DriverInformation[1].options);
console.log(data,'筛选出来的司机')
if (data) {
data.forEach(item => {
SjData.push({
@ -2628,29 +2659,41 @@ const SJchangeSelect = val => {
//VehicleInformation[0]
StockInfo.value.VehicleInformation[0].options = dataInfo;
}
}else{
DataSubmit.value.masterDriverName = null; //
StockInfo.value.VehicleInformation[1].options = vehicle.value; //
StockInfo.value.VehicleInformation[0].options = []; //
}
StockInfo.value.VehicleInformation[1].options= removeDuplicatesById(StockInfo.value.VehicleInformation[1].options)
};
//
const CLchangeSelect = val => {
if (!val.length) {
StockInfo.value.DriverInformation[1].options = driver.value; //
DataSubmit.value.masterVehicleNub = null; //
return;
}
// ID
const CLchangeSelect = async val => {
if (val.length) {
// ID
let data = [];
let dataInfo = []; //
let ClData = []; //
let ClName = null; //
if (val.length) {
ClName = CurrentVehicle(val, StockInfo.value.VehicleInformation[1].options);
ClName = await CurrentVehicle(val, StockInfo.value.VehicleInformation[1].options);
if(await !ClName.length){
ElMessage({
message: '查询失败请重试',
type: 'warning',
})
DataSubmit.value.masterVehicleNub='';//
return
}
sjSelect.value[0].visible = true; //
DataSubmit.value.masterVehicleNub = ClName[0].vehicleNub; //
data = CurrentVehicle(val, StockInfo.value.VehicleInformation[1].options);
console.log(data, '返回的值===');
// ID
if (data) {
console.log(data,'data===>');
data.forEach(item => {
ClData.push({
vehicleId: item.id, //ID
@ -2667,17 +2710,38 @@ const CLchangeSelect = val => {
data.forEach(item => {
//
if (item.driverArteryEntityList) {
item.driverArteryEntityList.forEach(item => {
if(item.driverArteryEntityList.length){
item.driverArteryEntityList.forEach(item => {
dataInfo.push(item);
console.log(item, 'itemInfo解析');
});
}
}
});
dataInfo = removeDuplicatesById(dataInfo); //
console.log(dataInfo, 'dataInfo信息');
StockInfo.value.DriverInformation[0].options = dataInfo; //
console.log(StockInfo.value.DriverInformation,'司机触发查看');
//
StockInfo.value.DriverInformation[0].options.forEach(item => {
// id
const exists = StockInfo.value.DriverInformation[1].options.some(btcItem => btcItem.id === item.id);
// display true
if (!exists) {
item.display = true;
}
});
}
}else{
StockInfo.value.DriverInformation[1].options = driver.value; //
StockInfo.value.DriverInformation[0].options=[];//
console.log( StockInfo.value.DriverInformation,' StockInfo.value.DriverInformation');
DataSubmit.value.masterVehicleNub = null; //
}
StockInfo.value.DriverInformation[1].options= removeDuplicatesById(StockInfo.value.DriverInformation[1].options);//
};
//
@ -2740,6 +2804,9 @@ const merge = (val, kindS) => {
}
//
if (DriverTemporaryStorage.value.length != VehicleTemporaryStorage.value.length) {
console.log(DriverTemporaryStorage.value,'DriverTemporaryStorage.value');
console.log(VehicleTemporaryStorage.value,'VehicleTemporaryStorage.value');
ElMessage({
message: '司机配置未选择完整!',
type: 'warning',

65
src/views/financialsector/FinanceHome.vue

@ -31,42 +31,78 @@
</el-select>
</div>
</div>
<!-- 模板内容 -->
<div class="content">
<el-tabs type="border-card">
<template v-for="item in ServiceList" :key="item.label">
<el-tab-pane v-if="item.state" :label="item.label" >
<span v-if="item.label == '提货'">提货</span>
<span v-if="item.label == '干线'">干线</span>
<span v-if="item.label == '仓储'"><FinancialWarehousing :templateData="templateInfo"/></span>
<span v-if="item.label == '配送'">配送</span>
<span v-if="item.label == '安装'">安装</span>
</el-tab-pane>
</template>
</el-tabs>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { ref, defineAsyncComponent } from 'vue';
const FinancialWarehousing = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialWarehousing.vue')
);
const form = ref({});
const tabNum=ref('干线')
const templateInfo=ref({
name:'参数'
})
const ServiceList = ref([
{
label: '提货',
value: '1',
state: false,
check: false,
},
{
label: '干线',
value: '2',
state: false,
check: false,
},
{
label: '仓储',
value: '3',
state: false,
check: false,
},
{
label: '配送',
value: '4',
state: false,
check: false,
},
{
label: '安装',
value: '5',
state: false,
check: false,
},
]);
//
const isChecked = val => {
console.log(val);
console.log(val,'点击的');
val.state=!val.state
};
//
const removeTag = value => {
ServiceList.value.find(res => res.value == value).check = false;
ServiceList.value.find(res => res.value == value).state = false;
};
const removeTag=(value) =>{
console.log(value,'value');
ServiceList.value.find(res=>res.value==value).check=false
}
</script>
<style scoped lang="scss">
@ -75,15 +111,25 @@ ServiceList.value.find(res=>res.value==value).check=false
height: 100%;
}
.header {
border-bottom: 1px solid #ccc;
padding: 10px;
box-shadow: -1px -1px 3px;
.el_Template {
display: flex;
align-items: center;
.name {
font-size: 16px;
margin-right: 10px;
}
}
display: flex;
.el_Service {
margin-left: 30px;
display: flex;
align-items: center;
.name {
margin-right: 10px;
}
.el-checkbox {
width: 100% !important;
padding: 0 30px;
@ -113,4 +159,7 @@ ServiceList.value.find(res=>res.value==value).check=false
content: '';
display: none;
}
.content {
margin-top: 6px;
}
</style>

8
src/views/financialsector/Financialse/FinancialWarehousing.vue

@ -237,9 +237,17 @@
</template>
<script setup>
import { ref } from 'vue';
import { defineProps } from 'vue';
//
const props = defineProps({
templateData: Object
});
console.log(props,'来自父页面参数');
const Storageloading = ref(false); //
const goriesloading = ref(false); //
console.log('仓储子页面');
const form = ref({
CalculationBasis: '1', //
Distinguishcategories: '1', //

Loading…
Cancel
Save