qb 12 months ago
parent
commit
f561672679
  1. 8
      src/api/distribution/distributionReservation.js
  2. 27
      src/components/pric/tablePric.vue
  3. 92
      src/views/Pricesystem/Price/PriceDelivery.vue
  4. 177
      src/views/Pricesystem/Price/PriceWarehousing.vue
  5. 43
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  6. 8
      src/views/financialsector/FinanceHome.vue
  7. 112
      src/views/financialsector/Financialse/FinancialDelivery.vue
  8. 598
      src/views/financialsector/Financialse/FinancialWarehousing.vue

8
src/api/distribution/distributionReservation.js

@ -126,6 +126,14 @@ export const cancelReservationPackage = data => {
data: data,
});
};
// 零担批量取消
export const $_cancelZeroPackage = data => {
return request({
url: '/api/logpm-distribution/deliveryList/cancelZeroPackage',
method: 'post',
data: data,
});
};
export const autonomouslySave = row => {
return request({

27
src/components/pric/tablePric.vue

@ -23,10 +23,17 @@
v-model="scope.row[column.prop]"
filterable
clearable
reserve-keyword
remote
remote-show-suffix
:remote-method="categoriesearch"
:placeholder="'请选择' + column.label"
:loading=scope.row.loading
loading-text='正在查询中...'
@focus="categoriesSearchfocus(column, scope.row)"
>
<el-option
v-for="item in column.options"
v-for="item in scope.row.options"
:key="item.value"
:label="item.label"
:value="item.value"
@ -43,6 +50,20 @@
<script setup>
import { ElTable, ElTableColumn, ElInputNumber } from 'element-plus';
// 使 defineProps props
import { computed, defineComponent,ref } from 'vue';
const SelectOpin=ref({})
defineComponent({
emits: ['focus', 'search'],
});
const emit = defineEmits(['focus', 'search']);
function categoriesSearchfocus(column, row) {
console.log(row.index,'row');
emit('focus', { column, row });
}
function categoriesearch(data) {
emit('search', data);
}
const props = defineProps({
SurchargeData: {
type: Array,
@ -52,5 +73,9 @@ const props = defineProps({
type: Array,
required: true,
},
surchargeOptions: {
type: Array,
default: () => [],
},
});
</script>

92
src/views/Pricesystem/Price/PriceDelivery.vue

@ -12,14 +12,14 @@
</div>
</div>
<!-- 服务类型 -->
<div>
<div class="el_sever_title">
<span>市配</span>
</div>
<div class="el_flex">
<div class="el_flex_row el_flex_right">
<span>按件计费 </span>
<div>
<div class="el_flex_row el_flex_right el_flex_input">
<span class="Subtitle">按件计费 </span>
<div class="el_flex_row_1">
<el-form-item label="统一计费(元/件)">
<el-input-number
v-model="form.ss"
@ -40,9 +40,9 @@
</el-form-item>
</div>
<!-- 按方计费 -->
<div class="el_flex_row">
<span>按方计费</span>
<div>
<div class="el_flex_row el_flex_input">
<span class="Subtitle">按方计费</span>
<div class="el_flex_row_1">
<el-form-item label="统一计费(元/m³)">
<el-input-number
v-model="form.ss"
@ -65,9 +65,9 @@
<!-- 按重量计费 -->
<div class="el_flex_row el_flex_right">
<span>按重量计费</span>
<span class="Subtitle">按重量计费</span>
<div>
<el-form-item label="统一计费(元/KG)" style=" margin-right: 0;">
<el-form-item label="统一计费(元/KG)" style="margin-right: 0">
<el-input-number
v-model="form.ss"
:precision="2"
@ -90,7 +90,7 @@
<div class="el_flex">
<div class="el_flex_h">
<span>按公里计费</span>
<span class="Subtitle">按公里计费</span>
<div>
<el-form-item label="按公里计费(元/km)">
<el-input-number
@ -106,7 +106,7 @@
</div>
<div class="el_flex_h">
<span>按吨公里计费</span>
<span class="Subtitle">按吨公里计费</span>
<div>
<el-form-item label="统一计费(元/吨/吨公里)">
<el-input-number
@ -122,7 +122,7 @@
</div>
<div class="el_flex_h">
<span>按吨计费</span>
<span class="Subtitle">按吨计费</span>
<div>
<el-form-item label="按吨位计费(元/t)">
<el-input-number
@ -138,7 +138,7 @@
</div>
<div class="el_flex_h">
<span>按点位计费</span>
<span class="Subtitle">按点位计费</span>
<div>
<el-form-item label="按点位计费点位(元/点位)">
<el-input-number
@ -176,8 +176,10 @@
</el-form-item>
<!-- 附加费用 -->
<div class="el_flex_Surcharge">
<h3>附加费用</h3>
<span>统一计费</span>
<div class="el_sever_title">
<span>附加费用</span>
</div>
<span class="Subtitle">统一计费</span>
<div class="el_flex">
<div class="el_flex_h">
<span>按公里计费</span>
@ -251,7 +253,11 @@
<!-- 最低等级计费 -->
<div>
<h3>最低计费等级</h3>
<div class="el_sever_title">
<span>
最低计费等级
</span>
</div>
<div class="el_flex_Minimum">
<template v-for="item in form.Minimumbilling" :key="item.label">
<el-form-item :label="item.label" v-if="item.disabled" class="el_row">
@ -522,14 +528,13 @@ const view = val => {
width: 100%;
height: 10%;
display: flex;
.el-form-item{
.el-form-item {
width: 48%;
}
.el_flex_row{
.el_flex_row {
width: 50%;
display: flex;
justify-content: center;
}
}
.el_row_2 {
@ -570,8 +575,8 @@ const view = val => {
}
}
}
.el_flex_Surcharge{
.el_flex_row{
.el_flex_Surcharge {
.el_flex_row {
width: 48%;
}
}
@ -580,16 +585,26 @@ const view = val => {
justify-content: space-between;
flex-direction: row;
flex-wrap: wrap;
.el_flex_right{
.el-form-item{
margin-right: 0;
.el_flex_right {
.el-form-item {
margin-right: 0;
}
}
}
.el_row {
width: 48%;
}
:deep(.el_flex_row_1){
.el-form-item__content{
width: 48% !important;
.el-input-number {
width: 100%;
}
}
}
}
.el_flex_row {
width: 48%;
@ -616,4 +631,29 @@ const view = val => {
}
}
}
.el_sever_title{
span{
padding-left: 10px;
color: #d58833;
font-size: 18px;
font-weight: bold;
position: relative;
}
span::before{
content: '';
width: 4px;
height: 70%;
background-color: #d58833;
position: absolute;
left: 0px;
top:4px;
}
}
.Subtitle{
display: block;
margin-top: 10px;
color: #d58833;
}
</style>

177
src/views/Pricesystem/Price/PriceWarehousing.vue

@ -2,56 +2,65 @@
<el-form label-position="top" label-width="400" :model="form" class="el_form">
<div class="content">
<div class="el_row_1">
<el-form-item label="计算类型">
<el-input v-model="form.name" disabled placeholder="自动带出无法更改" />
</el-form-item>
<el-form-item label="计算模式">
<el-input v-model="form.region" disabled placeholder="自动带出无法更改" />
</el-form-item>
<el-form-item label="计算基准">
<el-input v-model="form.type" disabled placeholder="自动带出无法更改" />
</el-form-item>
<div class="el_flex_row">
<el-form-item label="计算类型">
<el-input v-model="form.name" disabled placeholder="自动带出无法更改" />
</el-form-item>
<el-form-item label="计算模式">
<el-input v-model="form.region" disabled placeholder="自动带出无法更改" />
</el-form-item>
</div>
<div class="el_flex_row">
<el-form-item label="计算基准">
<el-input v-model="form.type" disabled placeholder="自动带出无法更改" />
</el-form-item>
</div>
</div>
<div class="el_row_2">
<h4>附加费用</h4>
<span>统一计费单价</span>
<div class="el_sever_title">
<span> 附加费用</span>
</div>
<span class="Subtitle">统一计费单价</span>
<div class="el_row_2_1">
<el-form-item label="仓储操作/装卸费">
<el-input-number
v-model="form.a"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
/>
</el-form-item>
<el-form-item label="仓储管理费">
<el-input-number
v-model="form.a"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
/>
</el-form-item>
<el-form-item label="仓储分货费">
<el-input-number
v-model="form.a"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
/>
</el-form-item>
<div class="el_flex_row">
<el-form-item label="仓储操作/装卸费" class="el_lable_title">
<el-input-number
v-model="form.a"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
/>
</el-form-item>
<el-form-item label="仓储管理费" style="margin-top: 10px">
<el-input-number
v-model="form.a"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
/>
</el-form-item>
</div>
<div class="el_flex_row" style="margin-top: 10px">
<el-form-item label="仓储分货费">
<el-input-number
v-model="form.a"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
/>
</el-form-item>
</div>
</div>
</div>
<!-- 品类计费单价 -->
<div class="el_row" style="width: 48%;">
<div class="el_row" style="width: 50%">
<el-form-item label="品类计费单价">
<SurchargeTable :SurchargeData="form.SurchargeData" :Surcharge="form.Surcharge" />
</el-form-item>
@ -60,8 +69,8 @@
<div class="el_flex">
<!-- 按件计费 -->
<div class="el_row">
<h3>按件计费</h3>
<el-form-item label="统一计费单价">
<span class="Subtitle">按件计费</span>
<el-form-item label="统一计费单价" class="el_lable_title">
<SurchargeTable :SurchargeData="form.piecebillingData" :Surcharge="form.piecebilling" />
</el-form-item>
<el-form-item label="按件计费品类单价">
@ -73,8 +82,8 @@
</div>
<div class="el_row">
<h3>按方计费</h3>
<el-form-item label="统一计费单价">
<span class="Subtitle">按方计费</span>
<el-form-item label="统一计费单价" class="el_lable_title">
<SurchargeTable :SurchargeData="form.piecebillingData" :Surcharge="form.piecebilling" />
</el-form-item>
<el-form-item label="按件计费品类单价">
@ -86,8 +95,8 @@
</div>
<div class="el_row">
<h3>按重量计费(kg)</h3>
<el-form-item label="统一计费单价">
<span class="Subtitle">按重量计费(kg)</span>
<el-form-item label="统一计费单价" class="el_lable_title">
<SurchargeTable
:SurchargeData="form.BillingbyweightPLData"
:Surcharge="form.Billingbyweight"
@ -102,8 +111,8 @@
</el-form-item>
</div>
<div class="el_row">
<h3>按吨计费(t)</h3>
<el-form-item label="统一计费单价">
<span class="Subtitle">按吨计费(t)</span>
<el-form-item label="统一计费单价" class="el_lable_title">
<SurchargeTable :SurchargeData="form.piecebillingData" :Surcharge="form.piecebilling" />
</el-form-item>
<el-form-item label="按件计费品类单价">
@ -116,11 +125,11 @@
</div>
</div>
</el-form>
<!-- 操作按钮 -->
<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 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>
</template>
<script setup>
@ -129,7 +138,7 @@ import SurchargeTable from '@/components/pric/tablePric.vue';
const form = ref({
//
Surcharge: [
{ label: '序号', prop: 'index', width: '80', disabled: true },
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true },
{ label: '产品品类', prop: 'category', type: 'string', width: '150', disabled: true },
{ label: '仓储操作/装卸费', prop: 'storageFee', type: 'number', width: '180', disabled: true },
{ label: '仓储管理费', prop: 'managementFeea', type: 'number', width: '180', disabled: true },
@ -179,7 +188,7 @@ const form = ref({
//
piecebillingPL: [
{ label: '序号', prop: 'index', width: '80', disabled: true },
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true },
{ label: '产品品类', prop: 'category', type: 'string', width: '150', disabled: true },
{ label: '30天内(元/件)', prop: 'category', type: 'number', width: '150', disabled: true },
{
@ -242,7 +251,7 @@ const form = ref({
// (kg)
BillingbyweightPL: [
{ label: '序号', prop: 'index', width: '80', disabled: true },
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true },
{ label: '产品品类', prop: 'category', type: 'string', width: '150', disabled: true },
{ label: '30天内(元/件)', prop: 'category', type: 'number', width: '150', disabled: true },
{
@ -287,12 +296,33 @@ const btn = () => {
width: 100%;
height: 10%;
display: flex;
justify-content: space-between;
.el_flex_row {
width: 50%;
display: flex;
justify-content: space-between;
.el-form-item {
width: 48%;
}
}
}
.el_row_2 {
width: 100%;
height: 90%;
.el_row_2_1 {
display: flex;
justify-content: space-between;
.el_flex_row {
width: 50%;
display: flex;
justify-content: space-between;
.el-form-item {
width: 50%;
.el-input-number {
width: 100%;
}
}
}
}
}
.el_form {
@ -332,7 +362,34 @@ const btn = () => {
flex-direction: row;
flex-wrap: wrap;
.el_row {
width: 48%;
width: 50%;
}
}
.el_sever_title {
span {
padding-left: 10px;
color: #d58833;
font-size: 18px;
font-weight: bold;
position: relative;
}
span::before {
content: '';
width: 4px;
height: 70%;
background-color: #d58833;
position: absolute;
left: 0px;
top: 4px;
}
}
.Subtitle {
display: block;
margin-top: 10px;
color: #d58833;
}
.el_lable_title {
margin-top: 10px;
font-weight: bold;
}
</style>

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

@ -605,6 +605,9 @@
<el-button @click="LdBatchsigning" style="margin-bottom: 4px" type="primary"
>批量签收</el-button
>
<el-button @click="Ldcancellation" style="margin-bottom: 4px" type="primary"
>批量计划取消</el-button
>
<!-- <el-button @click="LdBatchcancellation" style="margin-bottom: 4px" type="primary"
>批量计划取消</el-button
> -->
@ -931,6 +934,7 @@ import dayjs from 'dayjs';
import {
updateReservation,
cancelReservationPackage,
$_cancelZeroPackage,
patchPrintList,
} from '@/api/distribution/distributionReservation';
import { ElMessage, ElMessageBox } from 'element-plus';
@ -4514,7 +4518,46 @@ export default {
})
.catch(() => {});
},
//
Ldcancellation(){
if(!this.selectionList.length){
ElMessage({
message: '请勾选要批量取消的数据',
type: 'warning',
});
return;
}
this.$confirm('是否进行批量计划取消?')
.then(() => {
let data={
reservationId:this.wid,
deliveryId:this.deliveryId,
zeroPackageIds:this.selectionList.map(item => item.id).join(','),
}
console.log(data,'发送的参数');
this.loading = true; //
$_cancelZeroPackage(data).then(res=>{
console.log(res,'返回成功');
if (res.data.code === 200) {
this.$message.success(res.data.msg);
this.truckload(this.page);
this.selectionList = []; //
}
}).catch((res)=>{
console.log(res,'erro');
}).finally(()=>{
this.loading = false;
})
})
.catch(() => {
})
},
//
Batchsigning() {
console.log(this.selectionList, 'this.selectionList');

8
src/views/financialsector/FinanceHome.vue

@ -350,4 +350,12 @@ const handleChange = () => {
margin-top: 6px;
height: 100%;
}
:deep(.el-scrollbar__view){
padding: 0 10px !important;
}
.el-scrollbar__view{
.el-select-dropdown__item {
padding:0 10px !important;
}
}
</style>

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

@ -2,11 +2,11 @@
<div class="content_max" v-loading='pageLoading'>
<!-- 配送服务类型 -->
<div class="el_row_f1">
<div class="el_Storage el_flex">
<div class="el_Storage ">
<span class="el_table_span">配送服务类型</span>
<el-select
class="el_Cselect"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
style="width: 100%;"
v-model="form.dispatchServiceType"
filterable
placeholder="选择计费类型"
@ -21,15 +21,15 @@
</el-select>
</div>
<!-- 配送计费模式 -->
<div class="el_select_check">
<div class="el_Storage el_Service el_flex">
<div class="el_select_check el_Storage ">
<span class="el_table_span name">配送计费模式</span>
<el-select
v-model="form.dispatchPricingType"
filterable
placeholder="请选择配送计费模式"
:popper-append-to-body="false"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
style="width:100%;"
multiple
@remove-tag="removeTag"
>
@ -44,19 +44,16 @@
</el-checkbox>
</el-option>
</el-select>
</div>
</div>
<!-- 是否区分品类 -->
<div
class="el_Storage el_flex"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<div class="el_Storage" >
<span class="el_table_span">是否区分品类</span>
<el-radio-group
@change="categoryChange"
v-model="form.dispatchIsByCategory"
class="el_Cselect el_fx"
style="width: 300px"
style="width: 100%"
>
<el-radio v-for="item in Distinguishcategories" :key="item.label" :label="item.value">{{
item.label
@ -65,15 +62,12 @@
</div>
<!-- 是否有遗留件 -->
<div
class="el_Storage el_flex"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<div class="el_Storage">
<span class="el_table_span">是否有遗留件</span>
<el-radio-group
v-model="form.dispatchIsLeaveBehind"
class="el_Cselect el_fx"
style="width: 300px"
style="width:100%"
>
<el-radio v-for="item in Leftoverparts" :key="item.label" :label="item.value">{{
item.label
@ -219,12 +213,9 @@
</div>
</div>
</div>
<div style="display: flex">
<div class="el_translation">
<!-- 是否有平移费 -->
<div
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<div class="el_Storage" >
<span class="el_table_span">是否有平移费</span>
<el-radio-group v-model="form.dispatchIsShiftingCharge" class="el_Cselect el_fx">
<el-radio v-for="item in Translationfee" :key="item.label" :label="item.value">{{
@ -234,10 +225,7 @@
</div>
<!-- 附加费是否统一计费 -->
<div
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<div class="el_Storage">
<span class="el_table_span">附加费是否按品类计费</span>
<el-radio-group v-model="form.dispatchIsCategorySubjoin" class="el_Cselect el_fx">
<el-radio
@ -250,23 +238,6 @@
</el-radio-group>
</div>
<!-- -->
<div
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span"></span>
<div class="el_Cselect el_fx"></div>
</div>
<!-- -->
<div
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<span class="el_table_span"></span>
<div class="el_Cselect el_fx"></div>
</div>
</div>
<!-- 附加费品类 -->
@ -342,10 +313,7 @@
<div class="el_Storage">
<div class="el_Minimumbillingbox">
<!-- 是否最低计费 -->
<div
class="el_Minimumbilling_a"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<div class="el_flex_row" >
<span class="el_table_span">是否最低计费</span>
<el-radio-group v-model="form.dispatchIsMinCost" class="el_Cselect el_fx">
<el-radio
@ -360,10 +328,7 @@
<!-- 最低计费方式 -->
<!-- v-if="form.dispatchIsMinCost" -->
<div
v-if="form.dispatchIsMinCost"
class="el_Minimumbilling_b"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
v-if="form.dispatchIsMinCost" class="el_flex_row" >
<span class="el_table_span">最低计费方式</span>
<el-radio-group v-model="form.dispatchMinCostMode" class="el_Cselect el_fx">
<el-radio v-for="item in Billingmethod" :key="item.label" :label="item.value">{{
@ -372,8 +337,8 @@
</el-radio-group>
</div>
<!-- 最低计费类型 -->
<!-- v-if="form.dispatchIsMinCost" -->
<div class="el_Storage" v-if="form.dispatchIsMinCost" style="width: 320px; margin-right: 10px; display: flex; flex-direction: column">
<div class="el_flex_row" v-if="form.dispatchIsMinCost">
<span class="el_table_span">最低计费类型</span>
<el-radio-group v-model="form.dispatchMinCostType" class="el_Cselect el_fx">
<el-radio v-for="item in chargetypeSelect" :key="item.label" :label="item.value">{{
@ -383,12 +348,8 @@
</div>
<!-- 是否向上判断 -->
<!-- v-if="!form.dispatchIsMinCost" -->
<div
v-if="!form.dispatchIsMinCost"
class="el_Storage"
style="width: 320px; margin-right: 10px; display: flex; flex-direction: column"
>
<div v-if="!form.dispatchIsMinCost" class="el_flex_row" >
<span class="el_table_span">是否向上判断</span>
<el-radio-group v-model="form.dispatchIsUpwardJudgment" class="el_Cselect el_fx">
<el-radio v-for="item in Upwardjudgment" :key="item.label" :label="item.value">{{
@ -1410,9 +1371,17 @@ const handleSubmit = async () => {
.el_Minimumbilling {
.el_Minimumbillingbox {
display: flex;
.el_flex_row{
display: flex;
flex-direction: column;
width: 24%;
margin-right: 30px;
.el-radio-group{
width: 100%;
}
}
}
.el_Minimumbilling_b {
}
}
.el_flex {
display: flex;
@ -1424,10 +1393,13 @@ const handleSubmit = async () => {
}
:deep(.el_row_f1) {
display: flex;
align-items: center;
align-items: flex-start;
justify-content: space-between;
.el-select {
}
.el_Storage {
width: 24%;
}
.el-select__tags {
width: 100%;
}
@ -1440,11 +1412,12 @@ const handleSubmit = async () => {
.el_fj {
display: flex;
align-items: center;
width: 100%;
justify-content: space-between;
.el_Storage {
display: flex;
flex-direction: column;
width: 400px;
margin-right: 22px;
width: 24%;
.el_Cselect {
background-color: #f6f6f6;
width: 100%;
@ -1500,4 +1473,17 @@ const handleSubmit = async () => {
color: #ff0000;
}
}
.el_translation{
display: flex;
width: 100%;
.el_Storage{
width: 24%;
display: flex;
flex-direction: column;
margin-right: 24px;
.el-radio-group {
width: 100%
}
}
}
</style>

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

@ -1,75 +1,97 @@
<template>
<div class="content_max" v-loading='pageLoading'>
<div>
<!-- 仓储计费类型 -->
<div class="el_Storage el_flex">
<span class="el_table_span">仓储计费类型</span>
<el-select
class="el_Cselect"
v-model="form.warehousePricingType"
filterable
clearable
placeholder="选择计费类型"
style="width: 240px"
>
<el-option
v-for="item in Storagebillingtype"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</div>
<div class="content_max" v-loading="pageLoading">
<div class="el_flex_box">
<!-- 仓储计费类型 -->
<div class="el_Storage el_flex">
<span class="el_table_span">仓储计费类型</span>
<el-select
class="el_Cselect"
v-model="form.warehousePricingType"
filterable
clearable
placeholder="选择计费类型"
>
<el-option
v-for="item in Storagebillingtype"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</div>
<!-- 仓储计费模式 -->
<div class="el_Storage">
<span class="el_table_span">仓储计费模式</span>
<el-select
class="el_Cselect"
v-model="form.warehousePricingMode"
filterable
clearable
placeholder="选择仓储计费模式"
style="width: 240px"
>
<el-option
v-for="item in Warehousebillingmode"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</div>
</div>
<!-- 计算基准 -->
<div class="el_Storage">
<span class="el_table_span">计算基准</span>
<el-radio-group v-model="form.warehouseCalculationBasis" class="el_Cselect">
<el-radio v-for="item in CalculationBasis" :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-select
class="el_Cselect"
v-model="form.warehousePricingMode"
filterable
clearable
placeholder="选择仓储计费模式"
>
<el-option
v-for="item in Warehousebillingmode"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</div>
<!-- 是否区分品类 -->
<div class="el_Storage">
<span class="el_table_span">是否区分品类</span>
<el-radio-group
@change="categoriesDisplayChange"
v-model="form.warehouseIsByCategory"
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.warehouseCalculationBasis"
class="el_Cselect"
style="padding-left: 4px"
>
<el-radio v-for="item in CalculationBasis" :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
@change="categoriesDisplayChange"
v-model="form.warehouseIsByCategory"
class="el_Cselect"
style="padding-left: 4px"
>
<el-radio v-for="item in Distinguishcategories" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
<!-- 仓储品类配置 -->
<div class="el_Storage" v-if="categoriesDisplay">
<div class="Storage-cont">
<!-- -->
<div class="el_Storage Storage-cont" v-if="form.warehouseIsByCategory" style="width: 24%;">
<span class="el_table_span">仓储品类配置</span>
<SurchargeTable :SurchargeData="StoragecategoryData" :Surcharge="Storagecategory" @focus="handleRowFocus" @search='search'>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="eml_btn">
<span @click="storageplus" class="el_btn_a" v-if="slotProps.scope.row.plus">
<el-icon style="font-size: 12px; color: #409eff; margin-right: 3px"
><CirclePlus /></el-icon
>新增
</span>
<span @click="storagereduce(slotProps.scope.row.index)" class="el_btn_b" v-if="slotProps.scope.row.reduce">
<el-icon style="font-size: 12px; color: #f00; margin-right: 3px"><Delete /></el-icon
>删除
</span>
</div>
</template>
</template>
</SurchargeTable>
<!-- <div class="Storage-cont">
<span class="el_table_span">仓储品类配置</span>
<!-- 表格 -->
<div
class="el_Storagecategory"
v-loading="Storageloading"
@ -79,7 +101,7 @@
<div class="el_table_id">序号</div>
<div class="el_table_title">产品品类</div>
</div>
<!-- 表格循环 -->
<div class="el_table_td" v-for="item in StoragecategoryList" :key="item.id">
<div class="el_table_idNumber">{{ item.id }}</div>
<el-select
@ -112,11 +134,12 @@
class="el_table_operation_span_a"
>-</span
>
</div>
</div>
</div>
</div>
</div> -->
</div>
<hr class="el_hr" />
<!-- 附加费 -->
@ -125,6 +148,7 @@
</div>
<div class="el_Surcharge">
<!-- 附加费计价单位 -->
<div class="el_flex_row">
<div class="el_Storage">
<span class="el_table_span">附加费计价单位</span>
<el-select
@ -133,7 +157,7 @@
filterable
clearable
placeholder="选择计费类型"
style="width: 240px"
style="width:100%"
>
<el-option
v-for="item in Surchargepricingunit"
@ -173,7 +197,7 @@
}}</el-radio>
</el-radio-group>
</div>
</div>
<!-- 附加费用是否统一计费 -->
<div class="el_Storage">
<span class="el_table_span">附加费是否按品类计费</span>
@ -190,11 +214,28 @@
</div>
<!-- 附加费品类配置 -->
<div class="el_Storage" v-if="SurchargeDisplay">
<div class="el_Storage" v-if="form.warehouseIsCategorySubjoin" style="width: 24%;">
<div class="Storage-cont">
<span class="el_table_span">附加费品类配置</span>
<!-- 表格 -->
<div
<SurchargeTable :SurchargeData="AdditionalcategoriesData" :Surcharge="Additionalcategories" @focus="handleRowFocus" @search='search'>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="eml_btn">
<span @click="categoriesplus" class="el_btn_a" v-if="slotProps.scope.row.plus">
<el-icon style="font-size: 19px; color: #409eff; margin-right: 3px"
><CirclePlus /></el-icon
>新增
</span>
<span @click="categoriesduce(slotProps.scope.row.index)" class="el_btn_b" v-if="slotProps.scope.row.reduce">
<el-icon style="font-size: 19px; color: #f00; margin-right: 3px"><Delete /></el-icon
>删除
</span>
</div>
</template>
</template>
</SurchargeTable>
<!-- <div
class="el_Storagecategory"
v-loading="goriesloading"
element-loading-text="Loading..."
@ -203,7 +244,7 @@
<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
@ -239,37 +280,124 @@
class="el_table_operation_span_a"
>-</span
>
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
<!-- 操作按钮 -->
<div class="flex-c-c">
<!-- 操作按钮 -->
<div class="flex-c-c">
<el-button type="primary" icon="Refresh" @click="resetFormData">重置</el-button>
<el-button type="primary" icon="Position" @click="Submit">保存</el-button>
</div>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { defineProps, defineEmits ,defineComponent} from 'vue';
import { defineProps, defineEmits, defineComponent } from 'vue';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { $_priceTemplate, $_basicdataBrande,$_putpriceTemplate } from '@/api/financialsector/index'; //
import { ElMessage ,ElMessageBox } from 'element-plus';
import {
$_priceTemplate,
$_basicdataBrande,
$_putpriceTemplate,
} from '@/api/financialsector/index'; //
import { ElMessage, ElMessageBox } from 'element-plus';
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
import { deepClone } from '@/utils/util';
import { useRoute } from 'vue-router';
const pageLoading=ref(false);//
const formCopy=ref({});//
import SurchargeTable from '@/components/pric/tablePric.vue';
const pageLoading = ref(false); //
const SelectData=ref({})
//
const StoragecategoryData = ref([
{
index: 1,
warehousePieceCategory: '',
options: [],
plus: true,
reduce: false,
StateName: 'storage', //
loading:false,
},
]);
const Storagecategory = ref([
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true },
{
label: '产品品类',
prop: 'warehousePieceCategory',
type: 'select',
width: 'auto',
disabled: true,
},
{ label: '操作', prop: '', type: '', width: 'auto', disabled: true },
]);
//
const AdditionalcategoriesData=ref([
{
index: 1,
warehousePieceCategory: '',
options: [],
plus: true,
reduce: false,
StateName: 'additional', //
loading:false,
},
])
const Additionalcategories=ref([
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true },
{
label: '产品品类',
prop: 'warehousePieceCategory',
type: 'select',
width: 'auto',
disabled: true,
},
{ label: '操作', prop: '', type: '', width: 'auto', disabled: true },
])
const handleRowFocus = (data) => {
SelectData.value =data.row
console.log( SelectData.value,' SelectData.value');
console.log('row:', data.row);
console.log('column:', data.column);
};
//
const search=(val)=>{
if(val){
let data = {
goodsName: val,
};
SelectData.value.loading=true
postFindCategoryInfo(data).then(res => {
console.log(res, '附加费品类计费');
if (res.data.code == 200) {
if (res.data.data.length) {
SelectData.value.options = []; //
res.data.data.forEach(item => {
SelectData.value.options.push({
label: item.goodsName,
value: item.goodsId,
});
});
}
}
}).catch(res=>{
}).finally(()=>{
SelectData.value.loading=false
});
}
}
const formCopy = ref({}); //
const SelectOpin = ref(null); //
const $route = useRoute(); //
// ()
const categoriesDisplay = ref(false); ///
const SurchargeDisplay = ref(false); //(/)
const categoriesSearchfocus = item => {
console.log(item, 'item');
SelectOpin.value = item; //
@ -289,7 +417,7 @@ const categoriesearch = goodsName => {
if (SelectOpin.value.StateName == 'storage') {
selectionList = StoragecategoryList.value.find(res => res.id == SelectOpin.value.id); //
} else {
selectionList = AdditionalcategoriesList.value.find(res => res.id == SelectOpin.value.id); //
selectionList = AdditionalcategoriesData.value.find(res => res.id == SelectOpin.value.id); //
}
console.log(selectionList, 'selectionList');
postFindCategoryInfo(data).then(res => {
@ -370,69 +498,54 @@ const Additionalfeebilling = ref([]);
//
function removeItemById(array, id) {
const index = array.findIndex(item => item.id === id);
const index = array.findIndex(item => item.index === id);
if (index !== -1) {
array.splice(index, 1);
array.forEach((item, index) => {
item.id = index + 1;
item.index = index + 1;
});
}
let timerId = setTimeout(() => {
goriesloading.value = false;
Storageloading.value = false;
clearTimeout(timerId); //
}, 300);
}
// StateName:'storage',//
// StateName:'additional',//
//
function addItemAfterId(array, id, StateName) {
function addItemAfterId(array, StateName) {
console.log(array);
const newItem = {
id: array.length + 1, // ID 1
plus: true, //
reduce: true, //
StateName, //
warehousePieceCategory: '', //
Additionalcategories: [], //,
index: array.length + 1, // ID 1
plus: false, //
reduce: true, //
StateName, //
warehousePieceCategory: '', //
options: [], //
loading:false
};
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; //
Storageloading.value = false; //
clearTimeout(timerId); //
}, 300);
//
array.push(newItem)
}
//
const storagereduce = id => {
// ID
Storageloading.value = true; //
removeItemById(StoragecategoryList.value, id); //ID
// Storageloading.value = true; //
removeItemById(StoragecategoryData.value, id); //ID
};
// StateName:'storage',//
// StateName:'additional',//
//
const storageplus = id => {
Storageloading.value = true;
addItemAfterId(StoragecategoryList.value, id, 'storage');
const storageplus = data => {
console.log(data.row);
// Storageloading.value = true;
addItemAfterId(StoragecategoryData.value, 'storage');
console.log(StoragecategoryData.value,'StoragecategoryData.value');
};
//
const categoriesplus = id => {
goriesloading.value = true;
addItemAfterId(AdditionalcategoriesList.value, id, 'additional');
addItemAfterId(AdditionalcategoriesData.value, 'additional');
};
//
const categoriesduce = id => {
goriesloading.value = true;
removeItemById(AdditionalcategoriesList.value, id);
removeItemById(AdditionalcategoriesData.value, id);
};
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType)
@ -460,7 +573,6 @@ function updateDictionary(targetArray, dictionaryType) {
.finally(() => {});
}
/** 重置数据 */
const resetFormData = () => {
ElMessageBox.confirm('是否重置数据?', '提示', {
@ -468,68 +580,67 @@ const resetFormData = () => {
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
pageLoading.value = true;
form.value = deepClone(formCopy.value);
pageLoading.value = true;
form.value = deepClone(formCopy.value);
setTimeout(() => {
pageLoading.value = false;
pageLoading.value = false;
}, 300);
});
};
//
const onLoad = async() => {
const onLoad = async () => {
formCopy.value = deepClone(form.value);
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'); //
if(props.templateData.request){
let request =props.templateData.request
//
form.value= await deepClone(request)
if(request.warehouseIsByCategory==1){
categoriesDisplay.value=true;//
console.log(StoragecategoryList.value,'品类');
StoragecategoryList.value=[]
request.warehousePieceCategorys.forEach((res,index)=>{
StoragecategoryList.value.push({
id:index+1,
plus:true,
reduce:!index?false:true,
StateName:'storage',//
warehousePieceCategory:res.id,
Additionalcategories:[{
label:res.name,
value:res.id,
}]
})
})
}
if(request.warehouseIsCategorySubjoin==1){
AdditionalcategoriesList.value=[]
console.log(AdditionalcategoriesList.value,'附加品类');
SurchargeDisplay.value=true;//
request.warehouseSubjoinCategorys.forEach((res,index)=>{
AdditionalcategoriesList.value.push({
id:index+1,
plus:true,
reduce:!index?false:true,
StateName:'additional',//
warehousePieceCategory:res.id,
Additionalcategories:[{
label:res.name,
value:res.id,
}]
})
})
}
}
if (props.templateData.request) {
let request = props.templateData.request;
//
form.value = await deepClone(request);
if (request.warehouseIsByCategory == 1) {
console.log(StoragecategoryData.value, '品类');
StoragecategoryData.value = [];
request.warehousePieceCategorys.forEach((res, index) => {
StoragecategoryData.value.push({
index: index + 1,
plus: !index?true:false,
reduce: index ? true : false,
StateName: 'storage', //
warehousePieceCategory: res.id,
loading:false,
options: [
{
label: res.name,
value: res.id,
},
],
});
});
}
if (request.warehouseIsCategorySubjoin == 1) {
AdditionalcategoriesData.value = [];
console.log(AdditionalcategoriesData.value, '附加品类');
request.warehouseSubjoinCategorys.forEach((res, index) => {
AdditionalcategoriesData.value.push({
index: index + 1,
plus: !index?true:false,
reduce: index ? true : false,
StateName: 'additional', //
warehousePieceCategory: res.id,
Additionalcategories: [
{
label: res.name,
value: res.id,
},
],
});
});
}
}
};
onLoad();
//
@ -556,11 +667,10 @@ const Submit = async () => {
form.value.brandId = props.templateData.brand; //ID
}
form.value.serviceType=props.templateData.ServiceType.join(',');//
form.value.serviceType = props.templateData.ServiceType.join(','); //
//
if (categoriesDisplay.value) {
let storage = StoragecategoryList.value.find(res => !res.warehousePieceCategory); //
if (form.value.warehouseIsByCategory) {
let storage = StoragecategoryData.value.find(res => !res.warehousePieceCategory); //
if (storage) {
// ,
ElMessage({
@ -569,21 +679,20 @@ const Submit = async () => {
});
return;
} else {
console.log(StoragecategoryList.value, 'StoragecategoryList.value');
console.log(StoragecategoryData.value, 'StoragecategoryData.value');
//
form.value.warehousePieceCategory = StoragecategoryList.value
form.value.warehousePieceCategory = StoragecategoryData.value
.map(res => res.warehousePieceCategory)
.join(',');
}
}else{
if(form.value.warehousePieceCategory){
delete form.value.warehousePieceCategory
} else {
if (form.value.warehousePieceCategory) {
delete form.value.warehousePieceCategory;
}
}
//
if (SurchargeDisplay.value) {
let Surcharge = AdditionalcategoriesList.value.find(res => !res.warehousePieceCategory); //
if (form.value.warehouseIsCategorySubjoin) {
let Surcharge = AdditionalcategoriesData.value.find(res => !res.warehousePieceCategory); //
if (Surcharge) {
// ,
ElMessage({
@ -593,83 +702,76 @@ const Submit = async () => {
return;
} else {
//
form.value.warehouseSubjoinCategory = AdditionalcategoriesList.value
form.value.warehouseSubjoinCategory = AdditionalcategoriesData.value
.map(res => res.warehousePieceCategory)
.join(',');
}
}else{
if(form.value.warehouseSubjoinCategory){
form.value.warehouseSubjoinCategory=''
} else {
if (form.value.warehouseSubjoinCategory) {
form.value.warehouseSubjoinCategory = '';
}
}
console.log(form.value, '要提交的参数');
if(props.templateData.code || $route.query.id){
//
let data={
id:props.templateData.code,//
if (props.templateData.code || $route.query.id) {
//
let data = {
id: props.templateData.code, //
...form.value,
checkType:'3',//
}
checkType: '3', //
};
console.log('编辑操作');
$_putpriceTemplate(data).then(res=>{
console.log(res,'编辑成功之后返回值');
$_putpriceTemplate(data).then(res => {
console.log(res, '编辑成功之后返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
})
});
}
})
}else{
});
} else {
let data = {
...form.value,
};
...form.value,
};
//
console.log('新增操作');
$_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);//
}
// res.data.data
});
console.log(res, '提交成功之后返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
emit('request-data', res.data.data); //
}
// res.data.data
});
}
};
//
const categoriesDisplayChange = val => {
console.log(val);
if (val == 1) {
categoriesDisplay.value = true;
StoragecategoryList.value = [
StoragecategoryData.value = [
{
id: 1,
index: 1,
plus: true,
reduce: false,
StateName: 'storage', //
warehousePieceCategory: '', //
Additionalcategories: [],
options: [],
},
];
} else {
categoriesDisplay.value = false;
}
}
};
//
const AdditionalDisplayChange = val => {
if (val == 1) {
SurchargeDisplay.value = true;
AdditionalcategoriesList.value = [
AdditionalcategoriesData.value = [
{
id: 1,
index: 1,
plus: true,
reduce: false,
StateName: 'additional', //
@ -677,9 +779,7 @@ const AdditionalDisplayChange = val => {
Additionalcategories: [],
},
];
} else {
SurchargeDisplay.value = false;
}
}
};
</script>
@ -705,6 +805,7 @@ const AdditionalDisplayChange = val => {
-ms-user-select: none; /* IE 10+/Edge */
user-select: none; /* Standard syntax */
display: flex;
flex-direction: column;
.el_Storagecategory {
border: 1px solid #ccc;
.el_table_span {
@ -793,16 +894,53 @@ const AdditionalDisplayChange = val => {
margin-bottom: 10px;
}
.el_Surcharge {
.el_Storage{
width: 24%;
display: flex;
flex-direction: column;
.el_Cselect{
margin-left: 0;
background-color: #f5f5f6;
}
}
.el_flex_row{
display: flex;
justify-content: space-between;
}
}
.el_submit {
width: 100%;
display: flex;
justify-content: flex-end;
}
.el_flex{
display:flex;
.el_Cselect{
.el_flex {
display: flex;
.el_Cselect {
margin-left: 0;
}
}
.el_flex_box {
display: flex;
justify-content: space-between;
.el_Storage {
width: 24%;
display: flex;
flex-direction: column;
.el_Cselect {
margin-left: 0;
margin-top: 8px;
width: 100%;
background-color: #f5f5f6;
}
}
}
.el_btn_a,.el_btn_b{
font-size: 20px;
display: flex;
align-items: center;
.el-icon{
font-size: 20px;
}
}
</style>

Loading…
Cancel
Save