Browse Source

财务

pre-production
马远东 12 months ago
parent
commit
e37a5e6d54
  1. 33
      src/components/pric/tablePric.vue
  2. 1134
      src/views/Pricesystem/Price/PriceDelivery.vue
  3. 444
      src/views/Pricesystem/Price/PriceWarehousing.vue
  4. 4
      src/views/distribution/reservation/reservation.vue
  5. 4
      src/views/distribution/stockup/distributionStockupMarket.vue
  6. 351
      src/views/financialsector/Financialse/FinancialWarehousing.vue

33
src/components/pric/tablePric.vue

@ -15,6 +15,7 @@
:min="0"
:max="999999"
:controls="false"
:value-on-clear="0"
placeholder="请输入价格"
/>
@ -31,6 +32,7 @@
:loading=scope.row.loading
loading-text='正在查询中...'
@focus="categoriesSearchfocus(column, scope.row)"
:disabled=column.show
>
<el-option
v-for="item in scope.row.options"
@ -79,3 +81,34 @@ const props = defineProps({
},
});
</script>
<style scoped lang='scss'>
:deep(.el_row_table) {
thead {
th {
background-color: #0d6f3c;
color: #172e60;
}
}
tbody {
.el-table tr:hover {
background-color: transparent;
}
.cell {
text-align: center;
padding: 0;
.el-input-number {
width: 100%;
.el-input__wrapper {
box-shadow: none;
}
.el-input__inner:hover {
box-shadow: 0px 1px 0vw 0px #172e60;
}
}
}
}
}
</style>

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

File diff suppressed because it is too large Load Diff

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

@ -1,179 +1,141 @@
<template>
<el-form label-position="top" label-width="400" :model="form" class="el_form">
<div class="content">
<div class="el_row_1">
<div class="el_flex_row">
<el-form-item label="计算类型">
<el-select
class="el_Cselect"
v-model="form.warehousePricingType"
filterable
clearable
disabled
placeholder="选择计费类型"
style="width: 100%"
>
<el-option
v-for="item in Storagebillingtype"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="计算模式">
<el-select
class="el_Cselect"
v-model="form.warehousePricingMode"
filterable
clearable
disabled
placeholder="选择仓储计费模式"
style="width: 100%"
>
<el-option
v-for="item in Warehousebillingmode"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
</div>
<div class="el_flex_row">
<el-form-item label="计算基准">
<el-radio-group
v-model="form.warehouseCalculationBasis"
class="el_Cselect"
style="width: 100%; background-color: #f5f7fa; padding: 0 4px"
disabled
>
<el-radio v-for="item in CalculationBasis" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</el-form-item>
</div>
</div>
<div class="el_row_2" v-if="Surchargecd">
<div class="el_sever_title">
<span> 附加费用</span>
</div>
<div v-if="!request.warehouseIsCategorySubjoin">
<span class="Subtitle">统一计费单价</span>
<div class="el_row_2_1">
<div class="el_flex_row">
<el-form-item
label="仓储操作/装卸费"
class="el_lable_title"
v-if="request.warehouseIsOperateFee"
<div v-loading="loading" element-loading-text="正在加载中...">
<el-form label-position="top" label-width="400" :model="form" class="el_form">
<div class="content">
<div class="el_row_1">
<div class="el_flex_row">
<el-form-item label="计算类型">
<el-select
class="el_Cselect"
v-model="form.warehousePricingType"
filterable
clearable
disabled
placeholder="选择计费类型"
style="width: 100%"
>
<el-input-number
v-model="form.operatePrice"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
<el-option
v-for="item in Storagebillingtype"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-form-item>
<el-form-item
label="仓储管理费"
style="margin-top: 10px"
v-if="request.warehouseIsManageFee"
</el-select>
</el-form-item>
<el-form-item label="计算模式">
<el-select
class="el_Cselect"
v-model="form.warehousePricingMode"
filterable
clearable
disabled
placeholder="选择仓储计费模式"
style="width: 100%"
>
<el-input-number
v-model="form.warehouseManagementPrice"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
/>
</el-form-item>
</div>
<div class="el_flex_row" style="margin-top: 10px" v-if="request.warehouseIsSortFee">
<el-form-item label="仓储分货费">
<el-input-number
v-model="form.warehouseSortPrice"
:precision="2"
:min="0"
:max="10"
:controls="false"
placeholder="请输入价格"
<el-option
v-for="item in Warehousebillingmode"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-form-item>
</div>
</el-select>
</el-form-item>
</div>
<div class="el_flex_row">
<el-form-item label="计算基准">
<el-radio-group
v-model="form.warehouseCalculationBasis"
class="el_Cselect"
style="width: 100%; background-color: #f5f7fa; padding: 0 4px"
disabled
>
<el-radio v-for="item in CalculationBasis" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</el-form-item>
</div>
</div>
</div>
<!-- 品类计费单价 -->
<div class="el_row" style="width: 50%" v-if="request.warehouseIsCategorySubjoin">
<el-form-item label="品类计费单价">
<SurchargeTable :SurchargeData="form.SurchargeData" :Surcharge="form.Surcharge" />
</el-form-item>
</div>
<!-- 下半部分布局 -->
<div class="el_flex">
<!-- 按件计费 -->
<!-- <div class="el_row" v-if="request.warehouseSubjoinFeeUnit == 1">
<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="按件计费品类单价">
<SurchargeTable
:SurchargeData="form.piecebillingData"
:Surcharge="form.piecebillingPL"
/>
</el-form-item>
</div> -->
<!-- <div class="el_row" v-if="request.warehouseSubjoinFeeUnit == 2">
<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="按件计费品类单价">
<SurchargeTable
:SurchargeData="form.piecebillingData"
:Surcharge="form.piecebillingPL"
/>
</el-form-item>
</div> -->
<!-- 下半部分布局 -->
<div class="el_flex">
<div class="el_row">
<span class="Subtitle">{{ tabform.title }}</span>
<el-form-item :label="tabform.table">
<SurchargeTable :SurchargeData="form.publicData" :Surcharge="form.publicTable" />
</el-form-item>
</div>
</div>
<!-- <div class="el_row" v-if="request.warehouseSubjoinFeeUnit == 3">
<span class="Subtitle">按重量计费(kg)</span>
<el-form-item label="统一计费单价" class="el_lable_title">
<SurchargeTable
:SurchargeData="form.BillingbyweightPLData"
:Surcharge="form.Billingbyweight"
/>
</el-form-item>
<div class="el_row_2" v-if="Surchargecd">
<div class="el_sever_title">
<span> 附加费用</span>
</div>
<div v-if="!request.warehouseIsCategorySubjoin">
<span class="Subtitle">统一计费单价</span>
<div class="el_row_2_1">
<div class="el_flex_row">
<el-form-item
label="仓储操作/装卸费"
class="el_lable_title"
v-if="request.warehouseIsOperateFee"
>
<el-input-number
v-model="form.operatePrice"
:precision="2"
:min="0"
:max="9999999"
:controls="false"
:value-on-clear="0"
placeholder="请输入价格"
/>
</el-form-item>
<el-form-item
label="仓储管理费"
style="margin-top: 10px"
v-if="request.warehouseIsManageFee"
>
<el-input-number
v-model="form.warehouseManagementPrice"
:precision="2"
:min="0"
:max="9999999"
:controls="false"
:value-on-clear="0"
placeholder="请输入价格"
/>
</el-form-item>
</div>
<div class="el_flex_row" style="margin-top: 10px" v-if="request.warehouseIsSortFee">
<el-form-item label="仓储分货费">
<el-input-number
v-model="form.warehouseSortPrice"
:precision="2"
:min="0"
:max="9999999"
:controls="false"
:value-on-clear="0"
placeholder="请输入价格"
/>
</el-form-item>
</div>
</div>
</div>
</div>
<el-form-item label="按重量(KG)计费品类单价">
<SurchargeTable
:SurchargeData="form.piecebillingData"
:Surcharge="form.BillingbyweightPL"
/>
</el-form-item>
</div> -->
<div class="el_row">
<span class="Subtitle">{{ tabform.title }}</span>
<el-form-item :label="tabform.table" class="el_lable_title">
<SurchargeTable :SurchargeData="form.publicData" :Surcharge="form.publicTable" />
<!-- 品类计费单价 -->
<div class="el_row" style="width: 50%" v-if="request.warehouseIsCategorySubjoin">
<el-form-item label="品类计费单价">
<SurchargeTable :SurchargeData="form.SurchargeData" :Surcharge="form.Surcharge" />
</el-form-item>
</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>
</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>
</template>
@ -182,7 +144,7 @@ import { ref, defineEmits, defineComponent, computed } from 'vue';
import SurchargeTable from '@/components/pric/tablePric.vue';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { deepClone } from '@/utils/util';
import { ElMessage } from 'element-plus';
import { ElMessage, ElMessageBox } from 'element-plus';
import { putBasicdataPrice } from '@/api/Pricesystem/index';
import { useRoute } from 'vue-router';
const $route = useRoute(); //
@ -224,7 +186,8 @@ function updateDictionary(targetArray, dictionaryType) {
.catch(() => {})
.finally(() => {});
}
const loading = ref(true);
const formCopy = ref({}); //
const form = ref({
operatePrice: 0, ///
warehouseManagementPrice: 0, //
@ -232,26 +195,33 @@ const form = ref({
//
Surcharge: [
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true },
{ label: '产品品类', prop: 'categoryId', type: 'select', width: '150', disabled: true },
{
label: '产品品类',
prop: 'categoryId',
type: 'select',
width: '150',
disabled: true,
show: true,
},
{
label: '仓储操作/装卸费',
prop: 'operatePrice',
type: 'number',
width: '180',
width: 'auto',
disabled: true,
},
{
label: '仓储管理费',
prop: 'warehouseManagementPrice',
type: 'number',
width: '180',
width: 'auto',
disabled: true,
},
{
label: '仓储分货费',
prop: 'warehouseSortPrice',
type: 'number',
width: '180',
width: 'auto',
disabled: true,
},
],
@ -259,33 +229,40 @@ const form = ref({
//
publicTable: [
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true },
{ label: '产品品类', prop: 'categoryId', type: 'select', width: '150', disabled: true },
{
label: '产品品类',
prop: 'categoryId',
type: 'select',
width: '150',
disabled: true,
show: true,
},
{
label: '30天内',
prop: 'withinThirtyPrice',
type: 'number',
width: '180',
width: 'auto',
disabled: true,
},
{
label: '30天-60天',
prop: 'betweenThirtySixtyPrice',
type: 'number',
width: '180',
width: 'auto',
disabled: true,
},
{
label: '60天外',
prop: 'beyondSixtyPrice',
type: 'number',
width: '180',
width: 'auto',
disabled: true,
},
{
label: '上限',
prop: 'maximumPrice',
type: 'number',
width: '180',
width: 'auto',
disabled: true,
},
],
@ -293,14 +270,14 @@ const form = ref({
publicData: [],
});
const onLoad = async () => {
updateDictionary(Storagebillingtype.value, 'warehouse_pricing_type'); //
updateDictionary(Warehousebillingmode.value, 'warehouse_pricing_mode'); //
updateDictionary(CalculationBasis.value, 'warehouse_calculation_basis'); //
await Promise.all([
updateDictionary(Storagebillingtype.value, 'warehouse_pricing_type'), //
updateDictionary(Warehousebillingmode.value, 'warehouse_pricing_mode'), //
updateDictionary(CalculationBasis.value, 'warehouse_calculation_basis'), //
]);
// updateDictionary(Surchargepricingunit.value, 'warehouse_pricing_unit'); //
//
//
if (props.templateData.request) {
form.value.warehousePricingType = request.value.warehousePricingType; //
form.value.warehousePricingMode = request.value.warehousePricingMode; //
form.value.warehouseCalculationBasis = request.value.warehouseCalculationBasis; //
@ -328,13 +305,13 @@ const onLoad = async () => {
});
});
}
}else{
} else {
console.log('没有附加品类');
let data= requestInfo.value.additionalCategory[0]
console.log(data,'data数据');
form.value.operatePrice=data.operatePrice
form.value.warehouseManagementPrice=data.warehouseManagementPrice
form.value.warehouseSortPrice=data.warehouseSortPrice
let data = requestInfo.value.additionalCategory[0];
console.log(data, 'data数据');
form.value.operatePrice = data.operatePrice || 0;
form.value.warehouseManagementPrice = data.warehouseManagementPrice || 0;
form.value.warehouseSortPrice = data.warehouseSortPrice || 0;
}
form.value.publicData = []; //
//
@ -416,6 +393,46 @@ const onLoad = async () => {
handleFormUpdate(isByCategory, '(元/t)', '按吨计费(t)');
break;
}
// /
if (!request.value.warehouseIsOperateFee) {
form.value.Surcharge.find(res => res.prop === 'operatePrice').disabled = false;
} else {
form.value.Surcharge.find(res => res.prop === 'operatePrice').disabled = true;
}
//
if (!request.value.warehouseIsManageFee) {
form.value.Surcharge.find(res => res.prop === 'warehouseManagementPrice').disabled = false;
} else {
form.value.Surcharge.find(res => res.prop === 'warehouseManagementPrice').disabled = true;
}
//
if (!request.value.warehouseIsSortFee) {
form.value.Surcharge.find(res => res.prop === 'warehouseSortPrice').disabled = false;
} else {
form.value.Surcharge.find(res => res.prop === 'warehouseSortPrice').disabled = true;
}
// {
// label: '/',
// prop: 'operatePrice',
// type: 'number',
// width: 'auto',
// disabled: true,
// },
// {
// label: '',
// prop: 'warehouseManagementPrice',
// type: 'number',
// width: 'auto',
// disabled: true,
// },
// {
// label: '',
// prop: 'warehouseSortPrice',
// type: 'number',
// width: 'auto',
// disabled: true,
// },
// if(request.value.warehouseSubjoinFeeUnit==4){
// form.value.publicTable.forEach(res=>{
@ -467,45 +484,46 @@ const onLoad = async () => {
// }
// }
}
console.log(request.value, '初始化页面');
};
const price = async () => {
//
if (Object.keys(requestInfo.value).length > 0) {
if (requestInfo.value.catergory && requestInfo.value.catergory.length) {
//
requestInfo.value.catergory.forEach(res => {
let data = form.value.publicData.find(temp => temp.categoryId == res.categoryId);
if (data) {
data.betweenThirtySixtyPrice = res.betweenThirtySixtyPrice;
data.beyondSixtyPrice = res.beyondSixtyPrice;
data.maximumPrice = res.maximumPrice;
data.withinThirtyPrice = res.withinThirtyPrice;
data.betweenThirtySixtyPrice = res.betweenThirtySixtyPrice || 0;
data.beyondSixtyPrice = res.beyondSixtyPrice || 0;
data.maximumPrice = res.maximumPrice || 0;
data.withinThirtyPrice = res.withinThirtyPrice || 0;
}
});
}
//
//
if (requestInfo.value.additionalCategory && requestInfo.value.additionalCategory.length) {
requestInfo.value.additionalCategory.forEach(res => {
let data = form.value.SurchargeData.find(temp => temp.categoryId == res.categoryId);
if (data) {
data.operatePrice = res.operatePrice;///
data.managementFee = res.managementFee;
data.warehouseManagementPrice = res.warehouseManagementPrice;//
data.warehouseSortPrice = res.warehouseSortPrice;//
data.operatePrice = res.operatePrice || 0; ///
data.managementFee = res.managementFee || 0;
data.warehouseManagementPrice = res.warehouseManagementPrice || 0; //
data.warehouseSortPrice = res.warehouseSortPrice || 0; //
}
});
}
}
}
let setTime = setTimeout(async () => {
formCopy.value = await deepClone(form.value);
loading.value = false;
clearTimeout(setTime);
}, 500);
console.log(request.value, '初始化页面');
};
//
const pageonload = async () => {
request.value = await deepClone(props.templateData.request);
requestInfo.value = await deepClone(props.templateData.requestInfo.warehouse);
onLoad(); //
price(); //
};
pageonload();
const Surchargecd = computed(() => {
@ -526,7 +544,24 @@ const Surchargecd = computed(() => {
return true;
}
});
//
const resetFormData = () => {
ElMessageBox.confirm('是否重置数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
loading.value = true;
form.value = deepClone(formCopy.value);
setTimeout(() => {
loading.value = false;
ElMessage({
message: '重置成功',
type: 'success',
});
}, 300);
});
};
//
const handleSubmit = () => {
let data = {
@ -584,7 +619,6 @@ const handleSubmit = () => {
//
if (!request.value.warehouseIsCategorySubjoin) {
//
// data.warehouse['additionalCategory'].push({
// operatePrice: form.value.operatePrice, ///
@ -593,7 +627,7 @@ const handleSubmit = () => {
// name: 'fj',
// });
let mox = data.warehouse['additionalCategory'].find(res => res.name == 'fj');
delete mox.name
delete mox.name;
if (!request.value.warehouseIsManageFee) {
//
delete mox.warehouseManagementPrice;

4
src/views/distribution/reservation/reservation.vue

@ -280,7 +280,7 @@
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-form-item label="备货区域:">
<!-- <el-form-item label="备货区域:">
<el-select v-model="info.stockupArea" clearable placeholder="请选择备货区编号">
<el-option
v-for="item in goodsAreaIdData"
@ -290,7 +290,7 @@
>
</el-option>
</el-select>
</el-form-item>
</el-form-item> -->
</el-form>
<template #footer>
<span class="dialog-footer">

4
src/views/distribution/stockup/distributionStockupMarket.vue

@ -149,7 +149,7 @@
</el-option>
</el-select>
</el-form-item>-->
<el-form-item label="备货区域" :label-width="formLabelWidth">
<!-- <el-form-item label="备货区域" :label-width="formLabelWidth">
<el-select
v-model="form.goodsAreaId"
clearable
@ -164,7 +164,7 @@
>
</el-option>
</el-select>
</el-form-item>
</el-form-item> -->
<el-form-item
label="出库时间"
prop="outboundDate"

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

@ -42,11 +42,7 @@
<!-- 计算基准 -->
<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-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>
@ -60,7 +56,6 @@
@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
@ -70,9 +65,14 @@
</div>
<!-- 仓储品类配置 -->
<!-- -->
<div class="el_Storage Storage-cont" v-if="form.warehouseIsByCategory" style="width: 24%;">
<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'>
<SurchargeTable
:SurchargeData="StoragecategoryData"
:Surcharge="Storagecategory"
@focus="handleRowFocus"
@search="search"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="eml_btn">
@ -81,7 +81,11 @@
><CirclePlus /></el-icon
>新增
</span>
<span @click="storagereduce(slotProps.scope.row.index)" class="el_btn_b" v-if="slotProps.scope.row.reduce">
<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>
@ -89,57 +93,6 @@
</template>
</template>
</SurchargeTable>
<!-- <div class="Storage-cont">
<span class="el_table_span">仓储品类配置</span>
<div
class="el_Storagecategory"
v-loading="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 StoragecategoryList" :key="item.id">
<div class="el_table_idNumber">{{ item.id }}</div>
<el-select
class="el_Cselect"
v-model="item.warehousePieceCategory"
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"
:key="items.value"
:label="items.label"
:value="items.value"
/>
</el-select>
<div class="el_table_operation">
<span @click="storageplus(item.id)" v-if="item.plus" class="el_table_operation_span_b"
>+</span
>
<span
@click="storagereduce(item.id)"
v-if="item.reduce"
class="el_table_operation_span_a"
>-</span
>
</div>
</div>
</div>
</div> -->
</div>
<hr class="el_hr" />
<!-- 附加费 -->
@ -148,56 +101,56 @@
</div>
<div class="el_Surcharge">
<!-- 附加费计价单位 -->
<div class="el_flex_row">
<div class="el_Storage">
<span class="el_table_span">附加费计价单位</span>
<el-select
class="el_Cselect"
v-model="form.warehouseSubjoinFeeUnit"
filterable
clearable
placeholder="选择计费类型"
style="width:100%"
>
<el-option
v-for="item in Surchargepricingunit"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</div>
<div class="el_flex_row">
<div class="el_Storage">
<span class="el_table_span">附加费计价单位</span>
<el-select
class="el_Cselect"
v-model="form.warehouseSubjoinFeeUnit"
filterable
clearable
placeholder="选择计费类型"
style="width: 100%"
>
<el-option
v-for="item in Surchargepricingunit"
: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 v-model="form.warehouseIsManageFee" class="el_Cselect">
<el-radio v-for="item in Managementfees" :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.warehouseIsManageFee" class="el_Cselect">
<el-radio v-for="item in Managementfees" :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.warehouseIsOperateFee" class="el_Cselect">
<el-radio v-for="item in Operatingunloading" :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.warehouseIsOperateFee" class="el_Cselect">
<el-radio v-for="item in Operatingunloading" :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.warehouseIsSortFee" class="el_Cselect">
<el-radio v-for="item in Sortingfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
<!-- 是否有分拣费用 -->
<div class="el_Storage">
<span class="el_table_span">是否有分拣费用</span>
<el-radio-group v-model="form.warehouseIsSortFee" class="el_Cselect">
<el-radio v-for="item in Sortingfee" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
</div>
<!-- 附加费用是否统一计费 -->
<div class="el_Storage">
<span class="el_table_span">附加费是否按品类计费</span>
@ -214,27 +167,33 @@
</div>
<!-- 附加费品类配置 -->
<div class="el_Storage" v-if="form.warehouseIsCategorySubjoin" style="width: 24%;">
<div class="el_Storage" v-if="form.warehouseIsCategorySubjoin" style="width: 24%">
<div class="Storage-cont">
<span class="el_table_span">附加费品类配置</span>
<!-- 表格 -->
<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>
<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="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="color: #f00; margin-right: 3px"><Delete /></el-icon>
</span>
</div>
</template>
</template>
</SurchargeTable>
<!-- <div
class="el_Storagecategory"
v-loading="goriesloading"
@ -309,7 +268,7 @@ import { deepClone } from '@/utils/util';
import { useRoute } from 'vue-router';
import SurchargeTable from '@/components/pric/tablePric.vue';
const pageLoading = ref(false); //
const SelectData=ref({})
const SelectData = ref({});
//
const StoragecategoryData = ref([
{
@ -319,80 +278,78 @@ const StoragecategoryData = ref([
plus: true,
reduce: false,
StateName: 'storage', //
loading:false,
loading: false,
},
]);
const Storagecategory = ref([
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true },
{ label: '序号', prop: 'index', type: 'string', width: 'auto', disabled: true },
{
label: '产品品类',
prop: 'warehousePieceCategory',
type: 'select',
width: 'auto',
disabled: true,
},
{ label: '操作', prop: '', type: '', width: 'auto', disabled: true },
]);
//
const AdditionalcategoriesData=ref([
{
const AdditionalcategoriesData = ref([
{
index: 1,
warehousePieceCategory: '',
options: [],
plus: true,
reduce: false,
StateName: 'additional', //
loading:false,
loading: false,
},
])
const Additionalcategories=ref([
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true },
]);
const Additionalcategories = ref([
{ label: '序号', prop: 'index', type: 'string', width: 'auto', 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');
]);
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){
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
});
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); //
@ -518,9 +475,9 @@ function addItemAfterId(array, StateName) {
StateName, //
warehousePieceCategory: '', //
options: [], //
loading:false
loading: false,
};
array.push(newItem)
array.push(newItem);
}
//
const storagereduce = id => {
@ -532,15 +489,15 @@ const storagereduce = id => {
// StateName:'additional',//
//
const storageplus = data => {
console.log(data.row);
console.log(data.row);
// Storageloading.value = true;
addItemAfterId(StoragecategoryData.value, 'storage');
console.log(StoragecategoryData.value,'StoragecategoryData.value');
console.log(StoragecategoryData.value, 'StoragecategoryData.value');
};
//
const categoriesplus = id => {
goriesloading.value = true;
addItemAfterId(AdditionalcategoriesData.value, 'additional');
addItemAfterId(AdditionalcategoriesData.value, 'additional');
};
//
const categoriesduce = id => {
@ -607,11 +564,11 @@ const onLoad = async () => {
request.warehousePieceCategorys.forEach((res, index) => {
StoragecategoryData.value.push({
index: index + 1,
plus: !index?true:false,
plus: !index ? true : false,
reduce: index ? true : false,
StateName: 'storage', //
warehousePieceCategory: res.id,
loading:false,
loading: false,
options: [
{
label: res.name,
@ -627,7 +584,7 @@ const onLoad = async () => {
request.warehouseSubjoinCategorys.forEach((res, index) => {
AdditionalcategoriesData.value.push({
index: index + 1,
plus: !index?true:false,
plus: !index ? true : false,
reduce: index ? true : false,
StateName: 'additional', //
warehousePieceCategory: res.id,
@ -687,7 +644,7 @@ const Submit = async () => {
}
} else {
if (form.value.warehousePieceCategory) {
form.value.warehousePieceCategory='';
form.value.warehousePieceCategory = '';
}
}
//
@ -764,7 +721,7 @@ const categoriesDisplayChange = val => {
options: [],
},
];
}
}
};
//
const AdditionalDisplayChange = val => {
@ -779,7 +736,7 @@ const AdditionalDisplayChange = val => {
Additionalcategories: [],
},
];
}
}
};
</script>
@ -894,16 +851,16 @@ const AdditionalDisplayChange = val => {
margin-bottom: 10px;
}
.el_Surcharge {
.el_Storage{
.el_Storage {
width: 24%;
display: flex;
flex-direction: column;
.el_Cselect{
.el_Cselect {
margin-left: 0;
background-color: #f5f5f6;
}
}
.el_flex_row{
.el_flex_row {
display: flex;
justify-content: space-between;
}
@ -926,7 +883,6 @@ const AdditionalDisplayChange = val => {
width: 24%;
display: flex;
flex-direction: column;
.el_Cselect {
margin-left: 0;
margin-top: 8px;
@ -935,12 +891,41 @@ const AdditionalDisplayChange = val => {
}
}
}
.el_btn_a,.el_btn_b{
font-size: 20px;
.el_btn_a,
.el_btn_b {
font-size: 14px;
display: flex;
align-items: center;
.el-icon{
font-size: 20px;
.el-icon {
font-size: 14px;
}
}
:deep(.el_row_table) {
thead {
th {
background-color: #f5f8fa;
color: #172e60;
}
}
tbody {
.el-table tr:hover {
background-color: transparent;
}
.cell {
text-align: center;
padding: 0;
.el-input-number {
width: 100%;
.el-input__wrapper {
box-shadow: none;
}
.el-input__inner:hover {
box-shadow: 0px 1px 0vw 0px #172e60;
}
}
}
}
}
</style>

Loading…
Cancel
Save