qb 1 year ago
parent
commit
0c45b3c133
  1. 25
      src/views/financialsector/FinanceHome.vue
  2. 360
      src/views/financialsector/Financialse/FinancialDelivery.vue
  3. 89
      src/views/financialsector/Financialse/FinancialWarehousing.vue

25
src/views/financialsector/FinanceHome.vue

@ -34,17 +34,15 @@
<!-- 模板内容 -->
<div class="content">
<el-tabs type="border-card">
<el-tabs type="border-card" v-model="Tabmenu">
<template v-for="item in ServiceList" :key="item.label">
<el-tab-pane v-if="item.state" :label="item.label">
<span v-if="item.label == '提货'"><FinancialBill /></span>
<el-tab-pane :name="item.label" 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 == '仓储'"><FinancialWarehousing :templateData="templateInfo"/></span>
<span v-if="item.label == '配送'"><FinancialDelivery/></span>
<span v-if="item.label == '配送'"><FinancialDelivery /></span>
<span v-if="item.label == '安装'">安装</span>
</el-tab-pane>
</template>
@ -66,10 +64,11 @@ const FinancialDelivery = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialDelivery.vue')
);
const form = ref({});
const tabNum = ref('干线');
const Tabmenu = ref('仓储');
const templateInfo = ref({
name: '参数',
});
//
const ServiceList = ref([
{
label: '提货',
@ -104,13 +103,23 @@ const ServiceList = ref([
]);
//
const isChecked = val => {
console.log(val, '点击的');
///
val.state = !val.state;
//
Tabmenu.value = val.label;
//
if (!val.state && form.value.ServiceType.length) {
Tabmenu.value = ServiceList.value.find(res => res.state).label;
}
};
//
const removeTag = value => {
ServiceList.value.find(res => res.value == value).check = false;
ServiceList.value.find(res => res.value == value).state = false;
//
if (form.value.ServiceType.length) {
Tabmenu.value = ServiceList.value.find(res => res.state).label;
}
};
</script>

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

@ -10,6 +10,7 @@
clearable
placeholder="选择计费类型"
style="width: 240px"
@change="chargetype"
>
<el-option
v-for="item in Warehousebillingmode"
@ -48,23 +49,105 @@
<!-- 是否区分品类 -->
<div class="el_Storage">
<span class="el_table_span">是否区分品类</span>
<el-radio-group v-model="form.CalculationBasis" class="el_Cselect">
<el-radio v-for="item in CalculationBasis" :key="item.label" :label="item.value">{{
<el-radio-group v-model="form.Distinguishcategories" class="el_Cselect">
<el-radio v-for="item in Distinguishcategories" :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.Leftoverparts" class="el_Cselect">
<el-radio v-for="item in Leftoverparts" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 商配/市配 -->
<div class="el_Storage">
<el-tabs class="demo-tabs">
<el-tab-pane :label="WarehousebillingmodeTitle">
<!-- 商配/市配内容 -->
<div class="el_Commercial_ercial">
<!-- 按件计费 -->
<template v-for="Item in Commercialcial" :key="Item.title">
<div class="el_Storage">
<div class="Storage-cont">
<!-- 标题 -->
<span class="el_table_span">{{ Item.title }}</span>
<!-- 表格 -->
<div
class="el_Storagecategory"
v-loading="Item.Storageloading"
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 Item.sequence" :key="item.id">
<!-- 序号 -->
<div class="el_table_idNumber">{{ item.id }}</div>
<!-- 选择的品类 -->
<el-select
class="el_Cselect"
v-model="item.Warehousecategory"
filterable
clearable
placeholder="请选择品类"
style="width: 240px"
>
<!-- 品类列表 -->
<el-option
v-for="option in item.StoragecategoryList"
:key="option.value"
:label="option.label"
:value="option.value"
/>
</el-select>
<div class="el_table_operation">
<span
@click="storagereduce(Item, item.id)"
v-if="item.reduce"
class="el_table_operation_span_a"
>-</span
>
<span
@click="storageplus(Item, item.id)"
v-if="item.plus"
class="el_table_operation_span_b"
>+</span
>
</div>
</div>
</div>
</div>
</div>
</template>
</div>
</el-tab-pane>
</el-tabs>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
const form = ref({}); //
const form = ref({
Warehousebillingmode: '1', //
Distinguishcategories: '1', //
Leftoverparts: '1', //
}); //
//
const Warehousebillingmode = ref([
{ label: '市配', value: '1' },
{ label: '商配', value: '2' },
]);
const WarehousebillingmodeTitle = ref('市配'); //
//
const ServiceList = ref([
{
@ -105,11 +188,202 @@ 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: [],
},
],
},
]);
//
const Distinguishcategories = ref([
{label: '是', value: '1'},
{label: '否', value: '0'},
])
{ label: '是', value: '1' },
{ label: '否', value: '0' },
]);
//
const Leftoverparts = ref([
{ label: '是', value: '1' },
{ label: '否', value: '0' },
]);
//
const chargetype = val => {
console.log(val);
if (val) {
WarehousebillingmodeTitle.value = Warehousebillingmode.value.find(
res => res.value == val
).label;
}
};
//
const Storageloading = ref(false);
//
const StoragecategoryList = ref([
{
id: 1,
plus: true,
reduce: false,
},
{
id: 2,
plus: true,
reduce: true,
},
]);
//
const Additionalcategories = ref([
{
label: '衣柜',
value: '1',
},
{
label: '橱柜',
value: '2',
},
]);
Commercialcial.value.forEach(res => {
console.log(res, '第一层');
res.sequence.forEach(rues => {
console.log(rues, '第二曾');
rues.StoragecategoryList = { ...Additionalcategories.value };
});
});
//
const isChecked = val => {
console.log(val, '点击的');
@ -118,6 +392,61 @@ const isChecked = val => {
const removeTag = value => {
ServiceList.value.find(res => res.value == value).check = false;
};
//
function removeItemById(array, id) {
const index = array.sequence.findIndex(item => item.id === id);
if (index !== -1) {
array.sequence.splice(index, 1);
array.sequence.forEach((item, index) => {
item.id = index + 1;
});
}
let timerId = setTimeout(() => {
array.Storageloading = false;
clearTimeout(timerId); //
}, 300);
}
//
function addItemAfterId(array, id) {
console.log(array, 'array');
const newItem = {
id: array.sequence.length + 1, // ID 1
plus: true, //
reduce: true, //
StoragecategoryList: [ ...Additionalcategories.value ], //
};
const index = array.sequence.findIndex(item => item.id === id);
if (index !== -1) {
array.sequence.splice(index + 1, 0, newItem); // ID
// ID
array.sequence.forEach((item, index) => {
item.id = index + 1;
});
}
let timerId = setTimeout(() => {
array.Storageloading = false;
clearTimeout(timerId); //
}, 300);
//
}
//
const storagereduce = (item, id) => {
console.log(item);
item.Storageloading = true;
removeItemById(item, id);
};
//
const storageplus = (item, id) => {
console.log(item, '按钮接收参数');
item.Storageloading = true;
addItemAfterId(item, id);
};
</script>
<style scoped lang="scss">
@ -167,7 +496,7 @@ const removeTag = value => {
}
.el_table_span {
font-size: 16px;
font-weight: 500;
font-weight: bold;
display: inline-block;
width: 160px;
}
@ -256,4 +585,21 @@ const removeTag = value => {
}
}
}
:deep(.demo-tabs) {
.el-tabs__item {
font-size: 26px;
font-weight: bold;
}
.el_Commercial_ercial {
width: 100%;
height: 500px;
box-sizing: border-box;
border: 1px solid #ccc;
padding: 4px;
border-radius: 4px;
overflow-y: scroll;
}
}
</style>

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

@ -78,17 +78,17 @@
<div class="el_table_idNumber">{{ item.id }}</div>
<el-select
class="el_Cselect"
v-model="item.Warehousecategory"
v-model="item.WarehousecategoryInput"
filterable
clearable
placeholder="请选择品类"
style="width: 240px"
>
<el-option
v-for="item in Warehousecategory"
:key="item.value"
:label="item.label"
:value="item.value"
v-for="items in item.Additionalcategories"
:key="items.value"
:label="items.label"
:value="items.value"
/>
</el-select>
<div class="el_table_operation">
@ -208,10 +208,10 @@
style="width: 240px"
>
<el-option
v-for="item in Additionalcategories"
:key="item.value"
:label="item.label"
:value="item.value"
v-for="items in item.Additionalcategories"
:key="items.value"
:label="items.label"
:value="items.value"
/>
</el-select>
<div class="el_table_operation">
@ -237,14 +237,13 @@
</template>
<script setup>
import { ref } from 'vue';
import { defineProps } from 'vue';
//
const props = defineProps({
templateData: Object
templateData: Object,
});
console.log(props,'来自父页面参数');
console.log(props, '来自父页面参数');
const Storageloading = ref(false); //
const goriesloading = ref(false); //
console.log('仓储子页面');
@ -324,11 +323,16 @@ const StoragecategoryList = ref([
id: 1,
plus: true,
reduce: false,
},
{
id: 2,
plus: true,
reduce: true,
Additionalcategories: [
{
label: '衣柜',
value: '1',
},
{
label: '橱柜',
value: '2',
},
],
},
]);
//
@ -337,11 +341,16 @@ const AdditionalcategoriesList = ref([
id: 1,
plus: true,
reduce: false,
},
{
id: 2,
plus: true,
reduce: true,
Additionalcategories: [
{
label: '衣柜',
value: '1',
},
{
label: '橱柜',
value: '2',
},
],
},
]);
//
@ -418,6 +427,7 @@ const Additionalfeebilling = ref([
label: '否',
},
]);
//
function removeItemById(array, id) {
const index = array.findIndex(item => item.id === id);
@ -433,12 +443,16 @@ function removeItemById(array, id) {
clearTimeout(timerId); //
}, 300);
}
//
function addItemAfterId(array, id) {
function addItemAfterId(array, id, data) {
console.log(array);
const newItem = {
id: array.length + 1, // ID 1
plus: true,
reduce: true,
plus: true, //
reduce: true, //
WarehousecategoryInput: '', //
Additionalcategories: [...data], //,
};
const index = array.findIndex(item => item.id === id);
if (index !== -1) {
@ -449,33 +463,32 @@ function addItemAfterId(array, id) {
});
}
let timerId = setTimeout(() => {
goriesloading.value = false;
Storageloading.value = false;
goriesloading.value = false; //
Storageloading.value = false; //
clearTimeout(timerId); //
}, 300);
//
}
//
const storagereduce = val => {
console.log(val);
Storageloading.value = true;
removeItemById(StoragecategoryList.value, val);
const storagereduce = id => {
// ID
Storageloading.value = true; //
removeItemById(StoragecategoryList.value, id); //ID
};
//
const storageplus = val => {
const storageplus = id => {
Storageloading.value = true;
addItemAfterId(StoragecategoryList.value, val);
addItemAfterId(StoragecategoryList.value, id, Warehousecategory.value);
};
//
const categoriesplus = val => {
const categoriesplus = id => {
goriesloading.value = true;
addItemAfterId(AdditionalcategoriesList.value, val);
addItemAfterId(AdditionalcategoriesList.value, id, Additionalcategories.value);
};
//
const categoriesduce = val => {
const categoriesduce = id => {
goriesloading.value = true;
removeItemById(AdditionalcategoriesList.value, val);
removeItemById(AdditionalcategoriesList.value, id);
};
</script>

Loading…
Cancel
Save