qb 12 months ago
parent
commit
b94d5bb9b9
  1. 17
      src/router/views/index.js
  2. 232
      src/views/Pricesystem/PricesyHome.vue
  3. 7
      src/views/financialsector/FinanceHome.vue
  4. 434
      src/views/financialsector/Financialse/FinancialDelivery.vue
  5. 92
      src/views/financialsector/Financialse/FinancialTrunkLine.vue
  6. 7
      src/views/financialsector/Financialse/FinancialWarehousing.vue

17
src/router/views/index.js

@ -1551,7 +1551,22 @@ export default [
},
],
},
{
path: '/Pricesystem/PricesyHome',
component: Layout,
redirect: '/Pricesystem/PricesyHome',
children: [
{
meta: {
i18n: 'dict',
keepAlive: true,
},
path: '/Pricesystem/PricesyHome',
name: '价格体系配置',
component: () => import('@/views/Pricesystem/PricesyHome.vue'),
},
],
},
// {
// // 这是父路由,财务主页面
// path: '/financialsector/FinanceHome',

232
src/views/Pricesystem/PricesyHome.vue

@ -0,0 +1,232 @@
<template>
<div class="content_box" v-loading='ServiceTypeLoading'>
<div class="header">
<!-- <div class="el_Template">
<span class="name">模板名称</span>
<el-input v-model="form.TemplateName" style="width: 240px" placeholder="请输入模板名称" />
</div>
<div class="el_Service">
<span class="name">品牌</span>
<el-select
v-model="form.brand"
filterable
placeholder="请选择品牌"
:popper-append-to-body="false"
style="width: 340px"
>
<el-option
v-for="item in brand"
:key="item.value"
:label="item.brandName"
:value="item.id"
>
</el-option>
</el-select>
</div> -->
<!-- 服务类型 -->
<div class="el_Service">
<span class="name">服务类型</span>
<el-select
v-model="form.ServiceType"
filterable
placeholder="请选择服务类型"
:popper-append-to-body="false"
style="width: 340px"
multiple
@remove-tag="removeTag"
:loading='ServiceTypeLoading'
>
<el-option
v-for="item in ServiceList"
:key="item.value"
:label="item.label"
:value="item.value"
>
<el-checkbox v-model="item.check" @change="isChecked(item)">
{{ item.label }}
</el-checkbox>
</el-option>
</el-select>
</div>
</div>
<!-- 模板内容 -->
<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">
<span v-if="item.label == '提货'"><FinancialBill /></span>
<span v-if="item.label == '干线'"><FinancialTrunkLine @request-data="provideData" :templateData="templateInfo"/></span>
<span v-if="item.label == '仓储'"
><FinancialWarehousing @request-data="provideData" :templateData="templateInfo"
/></span>
<span v-if="item.label == '配送'"><FinancialDelivery @request-data="provideData" :templateData="templateInfo"/></span>
<span v-if="item.label == '安装'">安装</span>
</el-tab-pane>
</template>
</el-tabs>
</div>
</div>
</template>
<script setup>
import { ref, defineAsyncComponent } from 'vue';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { $_basicdataBrande} from '@/api/financialsector/index'; //
//
const FinancialWarehousing = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialWarehousing.vue')
);
/** 提货模板 */
const FinancialBill = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialBill.vue')
);
/** 干线模板 */
const FinancialTrunkLine = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialTrunkLine.vue')
);
//
const FinancialDelivery = defineAsyncComponent(() =>
import('@/views/financialsector/Financialse/FinancialDelivery.vue')
);
const ServiceTypeLoading=ref(true);//
const form = ref({});
const brand=ref([]);//
const Tabmenu = ref('仓储');
const templateInfo = ref({});
//
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');//
let data={
current:1,
size:1000,
}
$_basicdataBrande(data).then(res=>{
console.log(res,'品牌');
if(res.data.code == 200){
brand.value=res.data.data
}
})
}
onLoad()
//
const isChecked = 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;
}
};
//
const provideData = (data) => {
console.log(data,'来自子页面的数据');
console.log(form.value,'form.value');
templateInfo.value = form.value;
if(data){
templateInfo.value.code=data;//
}
};
</script>
<style scoped lang="scss">
.content_box {
width: 100%;
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;
.el-checkbox__label {
width: 100%;
margin-left: 20px;
}
}
.name {
font-size: 16px;
}
}
}
.el-checkbox {
width: 100% !important;
padding-left: 10px;
box-sizing: border-box;
.el-checkbox__label {
margin-left: 20px;
}
}
.el-select-dropdown__item {
padding: 0;
}
.el-select-dropdown__item::after {
content: '';
display: none;
}
.content {
margin-top: 6px;
height: 100%;
}
</style>

7
src/views/financialsector/FinanceHome.vue

@ -61,11 +61,11 @@
<template v-for="item in ServiceList" :key="item.label">
<el-tab-pane :name="item.label" v-if="item.state" :label="item.label">
<span v-if="item.label == '提货'"><FinancialBill /></span>
<span v-if="item.label == '干线'"><FinancialTrunkLine /></span>
<span v-if="item.label == '干线'"><FinancialTrunkLine @request-data="provideData" :templateData="templateInfo"/></span>
<span v-if="item.label == '仓储'"
><FinancialWarehousing @request-data="provideData" :templateData="templateInfo"
/></span>
<span v-if="item.label == '配送'"><FinancialDelivery /></span>
<span v-if="item.label == '配送'"><FinancialDelivery @request-data="provideData" :templateData="templateInfo"/></span>
<span v-if="item.label == '安装'">安装</span>
</el-tab-pane>
</template>
@ -161,10 +161,11 @@ const removeTag = value => {
const provideData = (data) => {
console.log(data,'来自子页面的数据');
console.log(form.value,'form.value');
templateInfo.value = form.value;
if(data){
templateInfo.value.code=data;//
}
templateInfo.value = form.value;
};
</script>

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

@ -2,10 +2,10 @@
<div class="content_max">
<!-- 配送服务类型 -->
<div class="el_Storage">
<span class="el_table_span">仓储计费类型</span>
<span class="el_table_span">配送服务类型</span>
<el-select
class="el_Cselect"
v-model="form.Warehousebillingmode"
v-model="form.dispatchServiceType"
filterable
placeholder="选择计费类型"
style="width: 240px"
@ -22,11 +22,11 @@
<!-- 配送计费模式 -->
<div class="el_select_check">
<div class="el_Storage el_Service">
<span class="el_table_span name">服务类型</span>
<span class="el_table_span name">配送计费模式</span>
<el-select
v-model="form.ServiceType"
v-model="form.dispatchPricingType"
filterable
placeholder="请选择服务类型"
placeholder="请选择配送计费模式"
:popper-append-to-body="false"
style="width: 760px"
multiple
@ -48,7 +48,11 @@
<!-- 是否区分品类 -->
<div class="el_Storage">
<span class="el_table_span">是否区分品类</span>
<el-radio-group v-model="form.Distinguishcategories" class="el_Cselect">
<el-radio-group
@change="categoryChange"
v-model="form.dispatchIsByCategory"
class="el_Cselect"
>
<el-radio v-for="item in Distinguishcategories" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
@ -58,7 +62,7 @@
<!-- 是否有遗留件 -->
<div class="el_Storage">
<span class="el_table_span">是否有遗留件</span>
<el-radio-group v-model="form.Leftoverparts" class="el_Cselect">
<el-radio-group v-model="form.dispatchIsLeaveBehind" class="el_Cselect">
<el-radio v-for="item in Leftoverparts" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
@ -66,7 +70,7 @@
</div>
<!-- 商配/市配 -->
<div class="el_Storage" v-if="WarehousebillingmodeTitle">
<div class="el_Storage" v-if="WarehousebillingmodeTitle && categoriesState">
<el-tabs class="demo-tabs">
<el-tab-pane
:label="WarehousebillingmodeTitle"
@ -100,13 +104,18 @@
class="el_Cselect"
v-model="item.Warehousecategory"
filterable
remote
clearable
reserve-keyword
placeholder="请选择品类"
style="width: 240px"
remote-show-suffix
:remote-method="categoriesearch"
@focus="categoriesSearchfocus(item)"
>
<!-- 品类列表 -->
<el-option
v-for="option in item.StoragecategoryList"
v-for="option in item.Additionalcategories"
:key="option.value"
:label="option.label"
:value="option.value"
@ -141,7 +150,7 @@
<!-- 是否有分货费 -->
<div class="el_Storage">
<span class="el_table_span">是否有分货费</span>
<el-radio-group v-model="form.Distributionfee" class="el_Cselect">
<el-radio-group v-model="form.dispatchIsSortFee" class="el_Cselect">
<el-radio v-for="item in Distributionfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
@ -150,7 +159,7 @@
<!-- 是否有操作/装卸费 -->
<div class="el_Storage">
<span class="el_table_span">是否有操作/装卸费</span>
<el-radio-group v-model="form.Operatingfee" class="el_Cselect">
<el-radio-group v-model="form.dispatchIsOperateFee" class="el_Cselect">
<el-radio v-for="item in Operatingfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
@ -161,16 +170,20 @@
<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-group
@change="UpstairsChange"
v-model="form.dispatchIsStairsCarryingCharge"
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">
<div class="el_upstairs_b" v-if="UpstairsState">
<span class="el_table_span">是否配置免费层数</span>
<el-radio-group v-model="form.Numberlayers" class="el_Cselect">
<el-radio-group v-model="form.dispatchIsFeeFloor" class="el_Cselect">
<el-radio v-for="item in Numberlayers" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
@ -181,7 +194,7 @@
<!-- 是否有平移费 -->
<div class="el_Storage">
<span class="el_table_span">是否有平移费</span>
<el-radio-group v-model="form.Translationfee" class="el_Cselect">
<el-radio-group v-model="form.dispatchIsShiftingCharge" class="el_Cselect">
<el-radio v-for="item in Translationfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
@ -190,16 +203,20 @@
<!-- 附加费是否统一计费 -->
<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>
<span class="el_table_span">附加费是否按品类计费</span>
<el-radio-group v-model="form.dispatchIsCategorySubjoin" class="el_Cselect">
<el-radio
@change="SurchargeChange"
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="el_Storage" v-if="SurchargeState">
<div class="Storage-cont">
<span class="el_table_span">附加费品类</span>
<!-- 表格 -->
@ -217,11 +234,16 @@
<div class="el_table_idNumber">{{ item.id }}</div>
<el-select
class="el_Cselect"
v-model="item.AdditionalcategoriesInput"
v-model="item.Warehousecategory"
filterable
remote
clearable
reserve-keyword
placeholder="请选择品类"
style="width: 240px"
remote-show-suffix
:remote-method="categoriesearch"
@focus="categoriesSearchfocus(item)"
>
<el-option
v-for="items in item.Additionalcategories"
@ -257,16 +279,20 @@
<!-- 是否最低计费 -->
<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 v-model="form.dispatchIsMinCost" class="el_Cselect">
<el-radio
@change="MinimumChange"
v-for="item in Minimumbilling"
:key="item.label"
:label="item.value"
>{{ item.label }}</el-radio
>
</el-radio-group>
</div>
<!-- 最低计费方式 -->
<div class="el_Minimumbilling_b">
<div class="el_Minimumbilling_b" v-if="MinimumState">
<span class="el_table_span">最低计费方式</span>
<el-radio-group v-model="form.Billingmethod" class="el_Cselect">
<el-radio-group v-model="form.dispatchMinCostMode" class="el_Cselect">
<el-radio v-for="item in Billingmethod" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
@ -277,9 +303,9 @@
</div>
<!-- 最低计费类型 -->
<div class="el_Storage">
<div class="el_Storage" v-if="MinimumState">
<span class="el_table_span">最低计费类型</span>
<el-radio-group v-model="form.chargetype" class="el_Cselect">
<el-radio-group v-model="form.dispatchMinCostType" class="el_Cselect">
<el-radio v-for="item in chargetypeSelect" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
@ -287,38 +313,58 @@
</div>
<!-- 是否向上判断 -->
<div class="el_Storage">
<div class="el_Storage" v-if="!MinimumState">
<span class="el_table_span">是否向上判断</span>
<el-radio-group v-model="form.Upwardjudgment" class="el_Cselect">
<el-radio-group v-model="form.dispatchIsUpwardJudgment" 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 class="flex-c-c">
<!-- <el-button type="primary" icon="Refresh" @click="resetFormData">重置</el-button> -->
<el-button type="primary" icon="Position" @click="handleSubmit">保存</el-button>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { ref, defineEmits, defineComponent } from 'vue';
import { ElMessage } from 'element-plus';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { deepClone } from '@/utils/util';
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
import { submit } from '@/api/base/region';
import { $_priceTemplate } from '@/api/financialsector/index'; //
const emit = defineEmits(['request-data']);
defineComponent({
emits: ['request-data'],
});
//
const props = defineProps({
templateData: Object,
});
console.log(props, '来自父页面参数');
//
const formCopy = ref(null); //
const form = 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', //
dispatchServiceType: '', //
dispatchIsByCategory: '0', //
dispatchIsLeaveBehind: '0', //
dispatchIsSortFee: '0', //
dispatchIsOperateFee: '0', //
dispatchIsStairsCarryingCharge: '0', //
dispatchIsFeeFloor: null, //
dispatchIsShiftingCharge: '0', //
dispatchIsCategorySubjoin: '0', //
dispatchIsMinCost: '0', //
dispatchMinCostMode: null, //
dispatchMinCostType: '1', //
dispatchIsUpwardJudgment: '0', //
});
const SelectOpin = ref(null); //
//
const Upwardjudgment = ref([]);
//
@ -331,23 +377,21 @@ const StateDelivery = ref(false);
const Minimumbilling = ref([]);
// loading
const goriesloading = ref(false);
//
const SurchargeState = ref(false);
//
const UpstairsState = ref(false);
//
const categoriesState = ref(false);
//
const AdditionalcategoriesList = ref([
{
id: 1,
plus: true,
reduce: false,
AdditionalcategoriesInput: '', //
Additionalcategories: [
{
label: '衣柜',
value: '1',
},
{
label: '橱柜',
value: '2',
},
],
StateName: 'additional', //
Warehousecategory: '', //
Additionalcategories: [],
},
]);
//
@ -358,6 +402,8 @@ const Translationfee = ref([]);
const Numberlayers = ref([]);
//
const upstairs = ref([]);
//
const MinimumState = ref(false);
//
const Distributionfee = ref([]);
//
@ -368,23 +414,7 @@ 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: [], //
// Warehousecategory: '', //
// },
// ],
// },
]);
const Commercialcial = ref([]);
//
const Distinguishcategories = ref([]);
//
@ -411,12 +441,7 @@ const Additionalcategories = ref([
value: '2',
},
]);
//
Commercialcial.value.forEach(res => {
res.sequence.forEach(rues => {
rues.StoragecategoryList = { ...Additionalcategories.value };
});
});
const Timedelive = () => {
Deliveryloading.value = true;
let timerId = setTimeout(() => {
@ -433,7 +458,36 @@ const CommercialcialDisplay = () => {
StateDelivery.value = false;
}
};
//
const UpstairsChange = val => {
if (val == 1) {
UpstairsState.value = true;
form.value.dispatchIsFeeFloor = '0'; //
} else {
UpstairsState.value = false;
form.value.dispatchIsFeeFloor = null; //
}
};
//
const categoryChange = val => {
if (val == 1) {
categoriesState.value = true;
} else {
categoriesState.value = false;
}
};
//
const MinimumChange = val => {
if (val == 1) {
MinimumState.value = true;
form.value.dispatchMinCostMode = '1';
form.value.dispatchIsUpwardJudgment = null; //
} else {
MinimumState.value = false;
form.value.dispatchMinCostMode = null;
form.value.dispatchIsUpwardJudgment = '0'; //
}
};
//
const isChecked = value => {
if (!WarehousebillingmodeTitle.value) {
@ -441,16 +495,18 @@ const isChecked = value => {
message: '请先选择仓储计费类型',
type: 'warning',
});
form.value.ServiceType = []; //
form.value.dispatchPricingType = []; //
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;
if (value.value == '1' || value.value == '2' || value.value == '3') {
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(); //
@ -488,7 +544,8 @@ function addItemAfterId(array, id) {
id: array.sequence.length + 1, // ID 1
plus: true, //
reduce: true, //
StoragecategoryList: [...Additionalcategories.value], //
StateName: 'storage', //
Additionalcategories: [], //
Warehousecategory: '', //
};
@ -518,6 +575,7 @@ const storageplus = (item, id) => {
console.log(item, '按钮接收参数');
item.Storageloading = true;
addItemAfterId(item, id);
console.log(Commercialcial.value, 'Commercialcial');
};
//
function FmremoveItemById(array, id) {
@ -535,14 +593,15 @@ function FmremoveItemById(array, id) {
}
//
function FmaddItemAfterId(array, id, data) {
function FmaddItemAfterId(array, id) {
console.log(array);
const newItem = {
id: array.length + 1, // ID 1
plus: true, //
StateName: 'additional', //
reduce: true, //
WarehousecategoryInput: '', //
Additionalcategories: [...data], //,
Warehousecategory: '', //
Additionalcategories: [], //,
};
const index = array.findIndex(item => item.id === id);
if (index !== -1) {
@ -561,7 +620,7 @@ function FmaddItemAfterId(array, id, data) {
//
const categoriesplus = id => {
goriesloading.value = true;
FmaddItemAfterId(AdditionalcategoriesList.value, id, Additionalcategories.value);
FmaddItemAfterId(AdditionalcategoriesList.value, id);
};
//
const categoriesduce = id => {
@ -586,15 +645,15 @@ function updateDictionary(targetArray, dictionaryType) {
}
//
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};//
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') {
@ -602,7 +661,7 @@ function updateDictionary(targetArray, dictionaryType) {
res.data.data.forEach(res => {
let data = {
title: res.dictValue, //
id: res.id, //ID
id: res.dictKey, //ID
state: false, //
Storageloading: false, //
sequence: [
@ -611,8 +670,9 @@ function updateDictionary(targetArray, dictionaryType) {
id: 1, //
plus: true, //
reduce: false, //
StoragecategoryList: [], //
Additionalcategories: [], //
Warehousecategory: '', //
StateName: 'storage', //
},
],
};
@ -625,15 +685,179 @@ function updateDictionary(targetArray, dictionaryType) {
.catch(() => {})
.finally(() => {});
}
const categoriesSearchfocus = item => {
console.log(item, 'item');
SelectOpin.value = item; //
};
//
const SurchargeChange = val => {
if (val == 1) {
SurchargeState.value = true;
AdditionalcategoriesList.value = [
{
id: 1,
plus: true,
reduce: false,
StateName: 'additional', //
Warehousecategory: '', //
Additionalcategories: [],
},
];
} else {
SurchargeState.value = false;
}
};
//
const categoriesearch = goodsName => {
console.log(goodsName, '当前搜索参数');
if (!goodsName) {
return;
}
let data = {
goodsName: goodsName,
};
console.log(SelectOpin.value, '当前点击的谁');
postFindCategoryInfo(data).then(res => {
console.log(res, '附加费品类计费');
if (res.data.code == 200) {
if (res.data.data.length) {
SelectOpin.value.Additionalcategories = []; //
res.data.data.forEach(item => {
SelectOpin.value.Additionalcategories.push({
label: item.goodsName,
value: item.goodsId,
});
});
}
}
});
};
//
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'); //
updateDictionary(Distinguishcategories.value, 'price_yes_no'); //
updateDictionary(Billingmethod.value, 'min_cost_way'); //
updateDictionary(chargetypeSelect.value, 'min_cost_type'); //
};
onLoad();
//
const handleSubmit = async() => {
await emit('request-data'); //
console.log(props, 'props');
if (!props.templateData.TemplateName) {
ElMessage({
message: '请输入模板名称',
type: 'warning',
});
return;
} else {
form.value.name = props.templateData.TemplateName; //
}
if (!props.templateData.brand) {
ElMessage({
message: '请选择品牌',
type: 'warning',
});
return;
} else {
form.value.brandId = props.templateData.brand; //ID
}
if(!form.value.dispatchServiceType){
ElMessage({
message: '请选择配送服务类型',
type: 'warning',
});
return;
}
if(!form.value.dispatchPricingType.length){
ElMessage({
message: '请选择配送计费模式',
type: 'warning',
});
return;
}
form.value.serviceType = '4'; //
console.log(form.value, '初始表单');
console.log(Commercialcial.value, 'Commercialcial');
//
const Submit = deepClone(form.value); //
console.log(Commercialcial.value, '服务类型');
Submit.dispatchPricingType = Submit.dispatchPricingType.join(','); //
console.log(AdditionalcategoriesList.value, '附加费品类');
//
function checkAndProcessServiceType(serviceTypeId, message, submitField) {
const item = Commercialcial.value.find(res => res.id == serviceTypeId);
if (item.sequence.find(res => !res.Warehousecategory)) {
ElMessage({
message,
type: 'warning',
});
return true; //
}
Submit[submitField] = item.sequence.map(res => res.Warehousecategory).join(','); //
return false; //
}
//
if (categoriesState.value) {
for (const res of form.value.dispatchPricingType) {
let shouldReturn = false;
switch (res) {
case '1':
shouldReturn = checkAndProcessServiceType(
'1',
'请填写完整按件处理',
'dispatchPieceCategory'
);
break;
case '2':
shouldReturn = checkAndProcessServiceType(
'2',
'请填写完整按重量处理',
'dispatchWeightCategory'
);
break;
case '3':
shouldReturn = checkAndProcessServiceType(
'3',
'请填写完整按方处理',
'dispatchCubeCategory'
);
break;
default:
break;
}
if (shouldReturn) return; // 退
}
}
//
if (SurchargeState.value) {
Submit.dispatchSubjoinCategory = AdditionalcategoriesList.value
.map(res => res.Warehousecategory)
.join(','); //
}
console.log(Submit, '要提交的数据');
let data={
...Submit
}
$_priceTemplate(data).then(res=>{
console.log(res,'提交成功后返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
emit('request-data',res.data.data);//
}
})
};
</script>
<style scoped lang="scss">

92
src/views/financialsector/Financialse/FinancialTrunkLine.vue

@ -171,13 +171,21 @@
</template>
<script setup lang="ts">
import { ref, reactive, getCurrentInstance, nextTick } from 'vue';
import { ref, reactive, getCurrentInstance, nextTick,defineEmits, defineComponent } from 'vue';
import { debounce, deepClone } from '@/utils/util';
import { ElMessage, ElMessageBox } from 'element-plus';
import { getDictionaryBiz } from '@/api/system/dict';
import { $_priceTemplate } from '@/api/financialsector/index'; //
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
const emit = defineEmits(['request-data']);
defineComponent({
emits: ['request-data'],
});
//
const props = defineProps({
templateData: Object,
});
console.log(props, '来自父页面参数');
const instance = getCurrentInstance();
//
@ -274,15 +282,15 @@ const details = reactive({
/** 计价方式 */
trunklinePricingType: [],
/** 是否统一区域计费 */
trunklineIsUnifyAreaBill: '1',
trunklineIsUnifyAreaBill: '0',
/** 是否区分品类 */
trunklineIsByCategory: '1',
trunklineIsByCategory: '0',
/** 是否特殊配置 */
trunklineIsPeculiarSetup: '1',
trunklineIsPeculiarSetup: '0',
/** 是否最低计费 */
trunklineIsMinCost: '1',
trunklineIsMinCost: '0',
/** 最低计费类型 */
trunklineMinCostType: '0',
trunklineMinCostType: '1',
/** 计费模版详情 */
billTemplateDetail: [] as BillTemplateDetail[],
},
@ -324,8 +332,11 @@ const handleTrunkLinePricingType = response => {
const _billTemplateDetailArr = [];
for (let i = 0; i < details.priceMethodType.length; i++) {
const value = details.priceMethodType[i];
_billTemplateDetailArr.push({
console.log(value,'value');
if(value.dictKey !='2'){
console.log(value,'value====');
_billTemplateDetailArr.push({
title: value.dictValue + '计费品类',
code: value.dictKey,
categories: [
@ -340,6 +351,8 @@ const handleTrunkLinePricingType = response => {
},
],
});
}
}
details.form.billTemplateDetail = _billTemplateDetailArr;
@ -469,11 +482,68 @@ const resetFormData = () => {
};
/** 提交 */
const handleSubmit = () => {
const handleSubmit = async() => {
if (details.form.trunklinePricingType.length === 0) ElMessage.error('请选择计价方式');
formRef.value.validate(async valid => {
await emit('request-data'); //
if (!valid) return;
console.log(props, 'props');
if (!props.templateData.TemplateName) {
ElMessage({
message: '请输入模板名称',
type: 'warning',
});
return;
} else {
details.form.name = props.templateData.TemplateName; //
}
if (!props.templateData.brand) {
ElMessage({
message: '请选择品牌',
type: 'warning',
});
return;
} else {
details.form.brandId = props.templateData.brand; //ID
}
console.log(details.form,'初始表单');
const submitData = deepClone(details.form);//
//
submitData.trunklinePricingType= submitData.trunklinePricingType.join(',')
//
submitData.billTemplateDetail.forEach(item=>{
switch (item.code) {
case '1':
submitData.trunklinePieceCategory = item.categories.filter(res => res.goodsId).map(res => res.goodsId).join(',');
break;
case '3':
submitData.trunklineCubeCategory = item.categories.filter(res => res.goodsId).map(res => res.goodsId).join(',');
break;
case '4':
submitData.trunklineWeightCategory = item.categories.filter(res => res.goodsId).map(res => res.goodsId).join(',');
break;
default:
break;
}
})
submitData.serviceType = '2'; //线
delete submitData.billTemplateDetail;//
console.log(submitData,'处理好的参数');
let data={
...submitData,//
}
$_priceTemplate(data).then(res=>{
console.log(res,'提交成功返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
emit('request-data',res.data.data);//
}
})
});
};
</script>

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

@ -251,10 +251,9 @@
<script setup>
import { ref } from 'vue';
import { defineProps, defineEmits } from 'vue';
import { defineProps, defineEmits ,defineComponent} from 'vue';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { $_priceTemplate, $_basicdataBrande } from '@/api/financialsector/index'; //
import { defineComponent } from 'vue';
import { ElMessage } from 'element-plus';
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
const SelectOpin = ref(null); //
@ -483,8 +482,6 @@ const onLoad = () => {
onLoad();
//
const Submit = async () => {
emit('request-data','123')
return
await emit('request-data'); //
console.log(props, 'props');
if (!props.templateData.TemplateName) {
@ -554,7 +551,7 @@ const Submit = async () => {
message: res.data.msg,
type: 'success',
});
$emit('data-to-parent',res.data.data);
emit('request-data',res.data.data);//
}
// res.data.data
});

Loading…
Cancel
Save