qb 1 year ago
parent
commit
5aedcff2ac
  1. 17
      src/option/basicdata/basicdataTray.js
  2. 2
      src/router/views/index.js
  3. 2
      src/views/basicdata/brand/basicClient.vue
  4. 23
      src/views/basicdata/warehouse/tray/basicdataTrayedt.vue
  5. 15
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  6. 66
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  7. 67
      src/views/financialsector/FinanceHome.vue
  8. 653
      src/views/financialsector/Financialse/FinancialDelivery.vue
  9. 160
      src/views/financialsector/Financialse/FinancialWarehousing.vue

17
src/option/basicdata/basicdataTray.js

@ -74,6 +74,23 @@ export default {
hide: true,
width: '130',
},
{
label: '打托方式',
prop: 'trayType',
type: 'select',
search: true,
dicUrl: '/api/blade-system/dict-biz/dictionary?code=pallet_order_type',
props: {
label: 'dictValue',
value: 'dictKey',
},
align: 'center',
labelWidth: '100',
addDisplay: true,
editDisplay: true,
viewDisplay: true,
width: '130',
},
{
label: '状态',
prop: 'status',

2
src/router/views/index.js

@ -1542,7 +1542,7 @@ export default [
{
meta: {
i18n: 'dict',
keepAlive: false,
keepAlive: true,
},
path: '/financialsector/FinanceHome',
name: '财务',

2
src/views/basicdata/brand/basicClient.vue

@ -985,7 +985,7 @@ export default {
if (!this.CustomerEntd) {
setTimeout(async () => {
const response = { valid: false }; //
await $_getListlistName({ code: a }).then(res => {
await $_getListlistName({ name: a }).then(res => {
console.log("客户名称校验",res.data);
if (res.data.data.length > 0) {
reject(new Error('客户名称已存在')); // reject()

23
src/views/basicdata/warehouse/tray/basicdataTrayedt.vue

@ -14,6 +14,9 @@
<el-col :xl="7" :lg="7" :md="8" :sm="24">
<span> {{ traydata.$type }} </span>
</el-col>
<el-col :xl="7" :lg="7" :md="8" :sm="24">
<span>打托方式{{ traydata.trayType }} </span>
</el-col>
</el-row>
<el-divider> </el-divider>
@ -619,6 +622,17 @@ export default {
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单自编号',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageCode',
label: '包条码',
@ -1424,6 +1438,15 @@ export default {
//
const data = decodeURIComponent(this.$route.query.data);
this.traydata = JSON.parse(data);
getDictionaryBiz('pallet_order_type').then(res => {
console.log(res,'打托字典');
//
if(res.data.code ==200){
if(res.data.data.length){
this.traydata.trayType = res.data.data.find(res=>res.dictKey== this.traydata.trayType).dictValue
}
}
});
console.log('data>>>>>>>>', this.traydata);
this.loading = true;
// getDetail(id).then(res => {

15
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

@ -4700,13 +4700,14 @@ export default {
},
//
submitForm() {
if (!this.DoorstepPhoto.length) {
ElMessage({
message: '至少上传一张上门照片',
type: 'warning',
});
return;
}
//
// if (!this.DoorstepPhoto.length) {
// ElMessage({
// message: '',
// type: 'warning',
// });
// return;
// }
if (!this.StackingPhoto.length) {
ElMessage({
message: '至少上传一张堆码照片',

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

@ -1719,6 +1719,9 @@ onMounted(() => {
getDeliveryList(route.query.id).then(res => {
//
if (res.data.data.kind == 2) {
if(!res.data.data.deliveryTripartiteVO){
return
}
DataSubmit.value.tripartite.distributionCompany = res.data.data.distributionCompany; //
DataSubmit.value.tripartite.driverName = res.data.data.deliveryTripartiteVO.driverName; //
DataSubmit.value.tripartite.vehicleNum = res.data.data.deliveryTripartiteVO.vehicleNum; //
@ -1732,6 +1735,10 @@ onMounted(() => {
numTab.value[0].name = '0'; //
numTab.value[1].name = '1';
kind.value = true;
if(res.data.data.deliverySelfVO){
if(!res.data.data.deliverySelfVO.length){
return
}
res.data.data.deliverySelfVO.forEach(item => {
console.log(item, '司机配置信息');
DriverTemporaryStorage.value.push({
@ -1756,23 +1763,34 @@ onMounted(() => {
}
});
}
wrapDataInfo.value = res.data.data.stockArticleList; //
dataInfo.value = res.data.data.stockArticleList; //
}
console.log(res.data.data,'123');
wrapDataInfo.value = res.data.data.stockArticleList||''; //
dataInfo.value = res.data.data.stockArticleList||''; //
// dataInfoTemp.value=dataInfo.value;//
DataSubmit.value.stockup.loaderId = res.data.data.loadingTeamId; //ID
DataSubmit.value.stockup.loaderName = res.data.data.loadingTeamName; //
DataSubmit.value.stockup.unloaderId = res.data.data.unloadingTeamId; //ID
DataSubmit.value.stockup.unloaderName = res.data.data.unloadingTeamName; //
DataSubmit.value.stockup.loaderId = res.data.data.loadingTeamId||''; //ID
DataSubmit.value.stockup.loaderName = res.data.data.loadingTeamName||''; //
DataSubmit.value.stockup.unloaderId = res.data.data.unloadingTeamId||''; //ID
DataSubmit.value.stockup.unloaderName = res.data.data.unloadingTeamName||''; //
DataSubmit.value.remarks = res.data.data.remarks; //
DataSubmit.value.stockup.forkliftName = res.data.data.stockupInfo.forkliftName; //
DataSubmit.value.stockup.forkliftId = res.data.data.stockupInfo.forkliftId; //ID
DataSubmit.value.stockup.goodsAreaId = res.data.data.stockupInfo.goodsAreaId; //ID
DataSubmit.value.stockup.goodsAreaName = res.data.data.stockupInfo.stockupArea; //
DataSubmit.value.stockup.outboundDate = res.data.data.stockupInfo.outboundDate; //
DataSubmit.value.stockup.stockupDate = res.data.data.stockupInfo.stockupDate; //
if(!res.data.data.stockupInfo){
return
}
DataSubmit.value.stockup.forkliftName = res.data.data.stockupInfo.forkliftName||''; //
DataSubmit.value.stockup.forkliftId = res.data.data.stockupInfo.forkliftId||''; //ID
DataSubmit.value.stockup.goodsAreaId = res.data.data.stockupInfo.goodsAreaId||''; //ID
DataSubmit.value.stockup.goodsAreaName = res.data.data.stockupInfo.stockupArea||''; //
DataSubmit.value.stockup.outboundDate = res.data.data.stockupInfo.outboundDate||''; //
DataSubmit.value.stockup.stockupDate = res.data.data.stockupInfo.stockupDate||''; //
DataSubmit.value.taskTime = res.data.data.taskTime; //
editLoading.value = false; //
tooSUM();
}).catch(()=>{
}).finally(()=>{
editLoading.value = false; //
});
}
});
@ -2964,21 +2982,18 @@ const SubmitCommercial = async () => {
const res = await updateDeliveryList(DataSubmitRenamed);
console.log(res, '修改之后提交的返回值');
code = res.data.code;
ElMessage({
message: res.data.msg,
type: 'success',
})
handleBack();
} else {
//
console.log(DataSubmit.value, '准备提交的信息');
const res = await deliveryBusinessTask(DataSubmit.value);
code = res.data.code;
console.log(res, '新增之后的返回值');
}
} catch (error) {
console.log('error :>> ', error);
} finally {
editLoading.value = false; //
if (code !== 200) return;
state.value = false; //
ElMessageBox.confirm(
'计划添加成功,是否继续添加?',
'提示',
@ -3002,6 +3017,17 @@ sjInput.value=''
handleBack();
})
console.log(res, '新增之后的返回值');
}
} catch (error) {
console.log('error :>> ', error);
} finally {
editLoading.value = false; //
if (code !== 200) return;
state.value = false; //
}
console.log(DataSubmit.value, '准备提交的信息');

67
src/views/financialsector/FinanceHome.vue

@ -1,5 +1,5 @@
<template>
<div class="content_box">
<div class="content_box" v-loading='ServiceTypeLoading'>
<div class="header">
<!-- 模板名称 -->
<div class="el_Template">
@ -17,6 +17,7 @@
style="width: 340px"
multiple
@remove-tag="removeTag"
:loading='ServiceTypeLoading'
>
<el-option
v-for="item in ServiceList"
@ -33,7 +34,7 @@
</div>
<!-- 模板内容 -->
<div class="content">
<div class="content" >
<el-tabs type="border-card" v-model="Tabmenu">
<template v-for="item in ServiceList" :key="item.label">
<el-tab-pane :name="item.label" v-if="item.state" :label="item.label">
@ -53,6 +54,7 @@
<script setup>
import { ref, defineAsyncComponent } from 'vue';
import { getDictionaryBiz } from '@/api/system/dict'; //
//
const FinancialWarehousing = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialWarehousing.vue')
@ -69,44 +71,39 @@ const FinancialTrunkLine = defineAsyncComponent(() =>
const FinancialDelivery = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialDelivery.vue')
);
const ServiceTypeLoading=ref(true);//
const form = ref({});
const Tabmenu = 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 ServiceList = ref([]);
//
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
console.log(res, '字典');
if(res.data.code ==200){
if(res.data.data.length){
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
id:item.id,
});
});
}
}
}).catch(()=>{
}).finally(()=>{
ServiceTypeLoading.value=false;
});
}
//
const onLoad=()=>{
updateDictionary(ServiceList.value,'service_type');//
}
onLoad()
//
const isChecked = val => {
///
@ -158,6 +155,7 @@ const removeTag = value => {
width: 100% !important;
padding: 0 30px;
.el-checkbox__label {
width: 100%;
margin-left: 20px;
}
}
@ -185,5 +183,6 @@ const removeTag = value => {
}
.content {
margin-top: 6px;
height: 100%;
}
</style>

653
src/views/financialsector/Financialse/FinancialDelivery.vue

@ -7,7 +7,6 @@
class="el_Cselect"
v-model="form.Warehousebillingmode"
filterable
clearable
placeholder="选择计费类型"
style="width: 240px"
@change="chargetype"
@ -29,7 +28,7 @@
filterable
placeholder="请选择服务类型"
:popper-append-to-body="false"
style="width: 660px"
style="width: 760px"
multiple
@remove-tag="removeTag"
>
@ -67,14 +66,18 @@
</div>
<!-- 商配/市配 -->
<div class="el_Storage">
<div class="el_Storage" v-if="WarehousebillingmodeTitle">
<el-tabs class="demo-tabs">
<el-tab-pane :label="WarehousebillingmodeTitle">
<el-tab-pane
:label="WarehousebillingmodeTitle"
v-loading="Deliveryloading"
element-loading-text="Loading..."
>
<!-- 商配/市配内容 -->
<div class="el_Commercial_ercial">
<div class="el_Commercial_ercial" v-if="StateDelivery">
<!-- 按件计费 -->
<template v-for="Item in Commercialcial" :key="Item.title">
<div class="el_Storage">
<div class="el_Storage" v-if="Item.state">
<div class="Storage-cont">
<!-- 标题 -->
<span class="el_table_span">{{ Item.title }}</span>
@ -132,216 +135,260 @@
</el-tab-pane>
</el-tabs>
</div>
<!-- 附加费计费 -->
<div class="el_Surchargebilling">
<span class="el_title_span">附加费计费</span>
<!-- 是否有分货费 -->
<div class="el_Storage">
<span class="el_table_span">是否有分货费</span>
<el-radio-group v-model="form.Distributionfee" class="el_Cselect">
<el-radio v-for="item in Distributionfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 是否有操作/装卸费 -->
<div class="el_Storage">
<span class="el_table_span">是否有操作/装卸费</span>
<el-radio-group v-model="form.Operatingfee" class="el_Cselect">
<el-radio v-for="item in Operatingfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 是否有上楼费 -->
<div class="el_Storage el_upstairs">
<div class="el_upstairs_a">
<span class="el_table_span">是否有上楼费</span>
<el-radio-group v-model="form.upstairs" class="el_Cselect">
<el-radio v-for="item in upstairs" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<div class="el_upstairs_b">
<span class="el_table_span">是否配置免费层数</span>
<el-radio-group v-model="form.Numberlayers" class="el_Cselect">
<el-radio v-for="item in Numberlayers" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
<!-- 是否有平移费 -->
<div class="el_Storage">
<span class="el_table_span">是否有平移费</span>
<el-radio-group v-model="form.Translationfee" class="el_Cselect">
<el-radio v-for="item in Translationfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 附加费是否统一计费 -->
<div class="el_Storage">
<span class="el_table_span">附加费是否统一计费</span>
<el-radio-group v-model="form.Surchargefee" class="el_Cselect">
<el-radio v-for="item in Surchargefee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 附加费品类 -->
<div class="el_Storage">
<div class="Storage-cont">
<span class="el_table_span">附加费品类</span>
<!-- 表格 -->
<div
class="el_Storagecategory"
v-loading="goriesloading"
element-loading-text="Loading..."
>
<div class="el_table_span">
<div class="el_table_id">序号</div>
<div class="el_table_title">品类</div>
</div>
<!-- 表格循环 -->
<div class="el_table_td" v-for="item in AdditionalcategoriesList" :key="item.id">
<div class="el_table_idNumber">{{ item.id }}</div>
<el-select
class="el_Cselect"
v-model="item.AdditionalcategoriesInput"
filterable
clearable
placeholder="请选择品类"
style="width: 240px"
>
<el-option
v-for="items in item.Additionalcategories"
:key="items.value"
:label="items.label"
:value="items.value"
/>
</el-select>
<div class="el_table_operation">
<span
@click="categoriesduce(item.id)"
v-if="item.reduce"
class="el_table_operation_span_a"
>-</span
>
<span
@click="categoriesplus(item.id)"
v-if="item.plus"
class="el_table_operation_span_b"
>+</span
>
</div>
</div>
</div>
</div>
</div>
<!-- 最低计费 -->
<div class="el_Storage el_Minimumbilling">
<span class="el_table_title">最低计费</span>
<div class="el_Storage">
<div class="el_Minimumbillingbox">
<!-- 是否最低计费 -->
<div class="el_Minimumbilling_a">
<span class="el_table_span">是否最低计费</span>
<el-radio-group v-model="form.Minimumbilling" class="el_Cselect">
<el-radio v-for="item in Minimumbilling" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 最低计费方式 -->
<div class="el_Minimumbilling_b">
<span class="el_table_span">最低计费方式</span>
<el-radio-group v-model="form.Billingmethod" class="el_Cselect">
<el-radio v-for="item in Billingmethod" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
</div>
</div>
<!-- 最低计费类型 -->
<div class="el_Storage">
<span class="el_table_span">最低计费类型</span>
<el-radio-group v-model="form.chargetype" class="el_Cselect">
<el-radio v-for="item in chargetypeSelect" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 是否向上判断 -->
<div class="el_Storage">
<span class="el_table_span">是否向上判断</span>
<el-radio-group v-model="form.Upwardjudgment" class="el_Cselect">
<el-radio v-for="item in Upwardjudgment" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { ElMessage } from 'element-plus';
import { getDictionaryBiz } from '@/api/system/dict'; //
//
const form = ref({
Warehousebillingmode: '1', //
Distinguishcategories: '1', //
Leftoverparts: '1', //
}); //
//
const Warehousebillingmode = ref([
{ label: '市配', value: '1' },
{ label: '商配', value: '2' },
]);
const WarehousebillingmodeTitle = ref('市配'); //
//
const ServiceList = ref([
Warehousebillingmode: '', //
Distinguishcategories: '0', //
Leftoverparts: '0', //
Distributionfee: '0', //
Operatingfee: '0', //
upstairs: '0', //
Numberlayers: '0', //
Translationfee: '0', //
Surchargefee: '0', //
Minimumbilling: '0', //
Billingmethod: '1', //
chargetype: '1', //
Upwardjudgment: '0', //
});
//
const Upwardjudgment = ref([]);
//
const chargetypeSelect = ref([]);
//
const Billingmethod = ref([]);
//
const StateDelivery = ref(false);
//
const Minimumbilling = ref([]);
// loading
const goriesloading = ref(false);
//
const AdditionalcategoriesList = ref([
{
id: 1,
plus: true,
reduce: false,
AdditionalcategoriesInput: '', //
Additionalcategories: [
{
label: '按计件计费',
label: '衣柜',
value: '1',
check: false,
},
{
label: '按重量计费',
label: '橱柜',
value: '2',
check: false,
},
{
label: '按方计费',
value: '3',
check: false,
},
{
label: '按整车计费',
value: '4',
state: false,
check: false,
},
{
label: '按点位计费',
value: '5',
check: false,
},
{
label: '按吨计费',
value: '6',
check: false,
},
{
label: '按公里计费',
value: '7',
check: false,
],
},
]);
//
const Surchargefee = ref([]);
//
const Translationfee = ref([]);
//
const Numberlayers = ref([]);
//
const upstairs = ref([]);
//
const Distributionfee = ref([]);
//
const Operatingfee = ref([]);
const Deliveryloading = ref(false);
//
const Warehousebillingmode = ref([]);
const WarehousebillingmodeTitle = ref(''); //
//
const ServiceList = ref([]);
const Commercialcial = ref([
{
title: '按件数计费', //
state: false, //
Storageloading: false, //
sequence: [
//
{
id: 1, //
plus: true, //
reduce: false, //
StoragecategoryList: [], //
},
{
id: 2,
plus: true,
reduce: true,
StoragecategoryList: [],
},
],
},
{
title: '按重量计费',
state: false, //
Storageloading: false, //
sequence: [
//
{
id: 1, //
plus: true, //
reduce: false, //
StoragecategoryList: [], //
},
{
id: 2,
plus: true,
reduce: true,
StoragecategoryList: [],
},
],
},
{
title: '按方计费',
state: false, //
Storageloading: false, //
sequence: [
//
{
id: 1, //
plus: true, //
reduce: false, //
StoragecategoryList: [], //
},
{
id: 2,
plus: true,
reduce: true,
StoragecategoryList: [],
},
],
},
{
title: '按整车计费',
state: false, //
Storageloading: false, //
sequence: [
//
{
id: 1, //
plus: true, //
reduce: false, //
StoragecategoryList: [], //
},
{
id: 2,
plus: true,
reduce: true,
StoragecategoryList: [],
},
],
},
{
title: '按点位计费',
state: false,
state: false, //
Storageloading: false, //
sequence: [
//
{
id: 1, //
plus: true, //
reduce: false, //
StoragecategoryList: [], //
},
{
id: 2,
plus: true,
reduce: true,
StoragecategoryList: [],
},
],
},
{
title: '按吨计费',
state: false, //
Storageloading: false, //
sequence: [
//
{
id: 1, //
plus: true, //
reduce: false, //
StoragecategoryList: [], //
},
{
id: 2,
plus: true,
reduce: true,
StoragecategoryList: [],
},
],
},
{
title: '按公里计费',
state: false, //
Storageloading: false, //
sequence: [
//
{
id: 1, //
plus: true, //
reduce: false, //
StoragecategoryList: [], //
},
{
id: 2,
plus: true,
reduce: true,
StoragecategoryList: [],
},
],
},
// {
// title: '',
// state: false, //
// Storageloading: false, //
// sequence: [
// //
// {
// id: 1, //
// plus: true, //
// reduce: false, //
// StoragecategoryList: [], //
// Warehousecategory: '', //
// },
// ],
// },
]);
//
const Distinguishcategories = ref([
{ label: '是', value: '1' },
{ label: '否', value: '0' },
]);
const Distinguishcategories = ref([]);
//
const Leftoverparts = ref([
{ label: '是', value: '1' },
{ label: '否', value: '0' },
]);
const Leftoverparts = ref([]);
//
const chargetype = val => {
console.log(val);
@ -353,19 +400,6 @@ const chargetype = val => {
};
//
const Storageloading = ref(false);
//
const StoragecategoryList = ref([
{
id: 1,
plus: true,
reduce: false,
},
{
id: 2,
plus: true,
reduce: true,
},
]);
//
const Additionalcategories = ref([
{
@ -377,20 +411,59 @@ const Additionalcategories = ref([
value: '2',
},
]);
//
Commercialcial.value.forEach(res => {
console.log(res, '第一层');
res.sequence.forEach(rues => {
console.log(rues, '第二曾');
rues.StoragecategoryList = { ...Additionalcategories.value };
});
});
const Timedelive = () => {
Deliveryloading.value = true;
let timerId = setTimeout(() => {
Deliveryloading.value = false;
clearTimeout(timerId); //
}, 300);
};
//
const CommercialcialDisplay = () => {
if (Commercialcial.value.find(res => res.state)) {
StateDelivery.value = true;
} else {
StateDelivery.value = false;
}
};
//
const isChecked = val => {
console.log(val, '点击的');
const isChecked = value => {
if (!WarehousebillingmodeTitle.value) {
ElMessage({
message: '请先选择仓储计费类型',
type: 'warning',
});
form.value.ServiceType = []; //
value.check = false; //
return;
}
console.log(value, '当前点击的菜单');
// ,
let data = ServiceList.value.find(res => res.label == value.label);
Commercialcial.value.find(res => res.title == data.label).state = !Commercialcial.value.find(
res => res.title == data.label
).state;
CommercialcialDisplay(); //
Timedelive(); //
};
//
const removeTag = value => {
ServiceList.value.find(res => res.value == value).check = false;
Deliveryloading.value = true;
let data = ServiceList.value.find(res => res.value == value);
data.check = false;
Commercialcial.value.find(res => res.title == data.label).state = false;
//
CommercialcialDisplay(); //
Timedelive(); //
};
//
@ -415,11 +488,10 @@ function addItemAfterId(array, id) {
id: array.sequence.length + 1, // ID 1
plus: true, //
reduce: true, //
StoragecategoryList: [ ...Additionalcategories.value ], //
StoragecategoryList: [...Additionalcategories.value], //
Warehousecategory: '', //
};
const index = array.sequence.findIndex(item => item.id === id);
if (index !== -1) {
array.sequence.splice(index + 1, 0, newItem); // ID
@ -447,6 +519,121 @@ const storageplus = (item, id) => {
item.Storageloading = true;
addItemAfterId(item, id);
};
//
function FmremoveItemById(array, id) {
const index = array.findIndex(item => item.id === id);
if (index !== -1) {
array.splice(index, 1);
array.forEach((item, index) => {
item.id = index + 1;
});
}
let timerId = setTimeout(() => {
goriesloading.value = false;
clearTimeout(timerId); //
}, 300);
}
//
function FmaddItemAfterId(array, id, data) {
console.log(array);
const newItem = {
id: array.length + 1, // ID 1
plus: true, //
reduce: true, //
WarehousecategoryInput: '', //
Additionalcategories: [...data], //,
};
const index = array.findIndex(item => item.id === id);
if (index !== -1) {
array.splice(index + 1, 0, newItem); // ID
// ID
array.forEach((item, index) => {
item.id = index + 1;
});
}
let timerId = setTimeout(() => {
goriesloading.value = false; //
clearTimeout(timerId); //
}, 300);
//
}
//
const categoriesplus = id => {
goriesloading.value = true;
FmaddItemAfterId(AdditionalcategoriesList.value, id, Additionalcategories.value);
};
//
const categoriesduce = id => {
goriesloading.value = true;
FmremoveItemById(AdditionalcategoriesList.value, id);
};
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType)
.then(res => {
console.log(res, '字典');
if (res.data.code == 200) {
if (res.data.data.length) {
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
id: item.id,
});
});
}
}
//
if (dictionaryType == 'price_yes_no') {
Leftoverparts.value= {...Distinguishcategories.value};//
Distributionfee.value= {...Distinguishcategories.value};//
Operatingfee.value= {...Distinguishcategories.value};///
upstairs.value= {...Distinguishcategories.value};//
Numberlayers.value= {...Distinguishcategories.value};//
Translationfee.value= {...Distinguishcategories.value};//
Surchargefee.value= {...Distinguishcategories.value};//
Minimumbilling.value= {...Distinguishcategories.value};//
Upwardjudgment.value= {...Distinguishcategories.value};//
}
//
if (dictionaryType == 'dispatch_pricing_type') {
Commercialcial.value = []; //
res.data.data.forEach(res => {
let data = {
title: res.dictValue, //
id: res.id, //ID
state: false, //
Storageloading: false, //
sequence: [
//
{
id: 1, //
plus: true, //
reduce: false, //
StoragecategoryList: [], //
Warehousecategory: '', //
},
],
};
Commercialcial.value.push({
...data,
});
});
}
})
.catch(() => {})
.finally(() => {});
}
//
const onLoad = () => {
updateDictionary(Warehousebillingmode.value, 'dispatch_type'); //
updateDictionary(ServiceList.value, 'dispatch_pricing_type'); //
updateDictionary(Distinguishcategories.value, 'price_yes_no'); //
updateDictionary(Billingmethod.value, 'min_cost_way'); //
updateDictionary(chargetypeSelect.value, 'min_cost_type'); //
};
onLoad();
</script>
<style scoped lang="scss">
@ -464,6 +651,7 @@ const storageplus = (item, id) => {
width: 100% !important;
padding: 0 30px;
.el-checkbox__label {
width: 100%;
margin-left: 20px;
}
}
@ -496,7 +684,7 @@ const storageplus = (item, id) => {
}
.el_table_span {
font-size: 16px;
font-weight: bold;
font-weight: 500;
display: inline-block;
width: 160px;
}
@ -594,7 +782,7 @@ const storageplus = (item, id) => {
.el_Commercial_ercial {
width: 100%;
height: 500px;
max-height: 500px;
box-sizing: border-box;
border: 1px solid #ccc;
padding: 4px;
@ -602,4 +790,27 @@ const storageplus = (item, id) => {
overflow-y: scroll;
}
}
.el_Surchargebilling {
.el_title_span {
font-weight: bold;
}
}
.el_upstairs {
display: flex;
.el_upstairs_b {
margin-left: 70px;
}
}
.el_Minimumbilling {
.el_table_title {
font-weight: bold;
}
.el_Minimumbillingbox {
display: flex;
}
.el_Minimumbilling_b {
margin-left: 70px;
}
}
</style>

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

@ -233,12 +233,16 @@
</div>
</div>
</div>
<div>保存</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { defineProps } from 'vue';
import { getDictionaryBiz } from '@/api/system/dict'; //
//
const props = defineProps({
templateData: Object,
@ -246,66 +250,21 @@ const props = defineProps({
console.log(props, '来自父页面参数');
const Storageloading = ref(false); //
const goriesloading = ref(false); //
console.log('仓储子页面');
const form = ref({
CalculationBasis: '1', //
Distinguishcategories: '1', //
Managementfees: '1', //
Operatingunloading: '1', ///
Sortingfee: '1', //
Distinguishcategories: '0', //
Managementfees: '0', //
Operatingunloading: '0', ///
Sortingfee: '0', //
}); //
//
const Storagebillingtype = ref([
{
value: '1',
label: '按件',
},
{
value: '2',
label: '按方',
},
{
value: '3',
label: '按重量(KG)',
},
{
value: '4',
label: '按吨',
},
]);
const Storagebillingtype = ref([]);
//
const Warehousebillingmode = ref([
{
value: '1',
label: '分段式计费',
},
{
value: '2',
label: '最高标准计费',
},
]);
const Warehousebillingmode = ref([]);
//
const CalculationBasis = ref([
{
value: '1',
label: '按件/天',
},
{
value: '2',
label: '按件/月',
},
]);
const CalculationBasis = ref([]);
//
const Distinguishcategories = ref([
{
value: '1',
label: '是',
},
{
value: '2',
label: '否',
},
]);
const Distinguishcategories = ref([]);
//
const Warehousecategory = ref([
{
@ -366,67 +325,15 @@ const Additionalcategories = ref([
]);
//
const Surchargepricingunit = ref([
{
label: '件',
value: '1',
},
{
label: '方',
value: '2',
},
{
label: '重量(KG)',
value: '3',
},
{
label: '吨(KG)',
value: '4',
},
]);
//
const Managementfees = ref([
{
value: '1',
label: '是',
},
{
value: '0',
label: '否',
},
]);
const Managementfees = ref([]);
// /
const Operatingunloading = ref([
{
value: '1',
label: '是',
},
{
value: '0',
label: '否',
},
]);
const Operatingunloading = ref([]);
//
const Sortingfee = ref([
{
value: '1',
label: '是',
},
{
value: '0',
label: '否',
},
]);
const Sortingfee = ref([]);
//
const Additionalfeebilling = ref([
{
value: '1',
label: '是',
},
{
value: '2',
label: '否',
},
]);
const Additionalfeebilling = ref([]);
//
function removeItemById(array, id) {
@ -490,6 +397,41 @@ const categoriesduce = id => {
goriesloading.value = true;
removeItemById(AdditionalcategoriesList.value, id);
};
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
console.log(res, '字典');
if(res.data.code ==200){
if(res.data.data.length){
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
id: item.id,
});
});
}
}
if(dictionaryType == 'price_yes_no'){
Managementfees.value ={...Distinguishcategories.value};//
Operatingunloading.value ={...Distinguishcategories.value};///
Sortingfee.value ={...Distinguishcategories.value};//
Additionalfeebilling.value ={...Distinguishcategories.value};//
}
}).catch(()=>{
}).finally(()=>{
});
}
//
const onLoad=()=>{
updateDictionary(Storagebillingtype.value,'warehouse_pricing_type');//
updateDictionary(Warehousebillingmode.value,'warehouse_pricing_mode');//
updateDictionary(CalculationBasis.value,'warehouse_calculation_basis');//
updateDictionary(Distinguishcategories.value,'price_yes_no');//
updateDictionary(Surchargepricingunit.value,'warehouse_pricing_unit');//
}
onLoad()
</script>
<style scoped lang="scss">

Loading…
Cancel
Save