|
|
|
@ -4,29 +4,72 @@
|
|
|
|
|
<div class="el_row_1"> |
|
|
|
|
<div class="el_flex_row"> |
|
|
|
|
<el-form-item label="计算类型"> |
|
|
|
|
<el-input v-model="form.name" disabled placeholder="自动带出无法更改" /> |
|
|
|
|
<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-input v-model="form.region" disabled placeholder="自动带出无法更改" /> |
|
|
|
|
<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-input v-model="form.type" disabled placeholder="自动带出无法更改" /> |
|
|
|
|
<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"> |
|
|
|
|
<div class="el_row_2" v-if="Surchargecd"> |
|
|
|
|
<div class="el_sever_title"> |
|
|
|
|
<span> 附加费用</span> |
|
|
|
|
</div> |
|
|
|
|
<span class="Subtitle">统一计费单价</span> |
|
|
|
|
<div class="el_row_2_1"> |
|
|
|
|
<div class="el_flex_row"> |
|
|
|
|
<el-form-item label="仓储操作/装卸费" class="el_lable_title"> |
|
|
|
|
<el-form-item |
|
|
|
|
label="仓储操作/装卸费" |
|
|
|
|
class="el_lable_title" |
|
|
|
|
v-if="request.warehouseIsOperateFee" |
|
|
|
|
> |
|
|
|
|
<el-input-number |
|
|
|
|
v-model="form.a" |
|
|
|
|
v-model="form.operatePrice" |
|
|
|
|
:precision="2" |
|
|
|
|
:min="0" |
|
|
|
|
:max="10" |
|
|
|
@ -34,9 +77,13 @@
|
|
|
|
|
placeholder="请输入价格" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="仓储管理费" style="margin-top: 10px"> |
|
|
|
|
<el-form-item |
|
|
|
|
label="仓储管理费" |
|
|
|
|
style="margin-top: 10px" |
|
|
|
|
v-if="request.warehouseIsManageFee" |
|
|
|
|
> |
|
|
|
|
<el-input-number |
|
|
|
|
v-model="form.a" |
|
|
|
|
v-model="form.warehouseManagementPrice" |
|
|
|
|
:precision="2" |
|
|
|
|
:min="0" |
|
|
|
|
:max="10" |
|
|
|
@ -45,10 +92,10 @@
|
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
<div class="el_flex_row" style="margin-top: 10px"> |
|
|
|
|
<div class="el_flex_row" style="margin-top: 10px" v-if="request.warehouseIsSortFee"> |
|
|
|
|
<el-form-item label="仓储分货费"> |
|
|
|
|
<el-input-number |
|
|
|
|
v-model="form.a" |
|
|
|
|
v-model="form.warehouseSortPrice" |
|
|
|
|
:precision="2" |
|
|
|
|
:min="0" |
|
|
|
|
:max="10" |
|
|
|
@ -60,7 +107,7 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 品类计费单价 --> |
|
|
|
|
<div class="el_row" style="width: 50%"> |
|
|
|
|
<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> |
|
|
|
@ -68,7 +115,7 @@
|
|
|
|
|
<!-- 下半部分布局 --> |
|
|
|
|
<div class="el_flex"> |
|
|
|
|
<!-- 按件计费 --> |
|
|
|
|
<div class="el_row"> |
|
|
|
|
<!-- <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" /> |
|
|
|
@ -79,9 +126,9 @@
|
|
|
|
|
:Surcharge="form.piecebillingPL" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
</div> --> |
|
|
|
|
|
|
|
|
|
<div class="el_row"> |
|
|
|
|
<!-- <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" /> |
|
|
|
@ -92,9 +139,9 @@
|
|
|
|
|
:Surcharge="form.piecebillingPL" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
</div> --> |
|
|
|
|
|
|
|
|
|
<div class="el_row"> |
|
|
|
|
<!-- <div class="el_row" v-if="request.warehouseSubjoinFeeUnit == 3"> |
|
|
|
|
<span class="Subtitle">按重量计费(kg)</span> |
|
|
|
|
<el-form-item label="统一计费单价" class="el_lable_title"> |
|
|
|
|
<SurchargeTable |
|
|
|
@ -109,17 +156,11 @@
|
|
|
|
|
:Surcharge="form.BillingbyweightPL" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
</div> --> |
|
|
|
|
<div class="el_row"> |
|
|
|
|
<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="按件计费品类单价"> |
|
|
|
|
<SurchargeTable |
|
|
|
|
:SurchargeData="form.piecebillingData" |
|
|
|
|
:Surcharge="form.piecebillingPL" |
|
|
|
|
/> |
|
|
|
|
<span class="Subtitle">{{tabform.title}}</span> |
|
|
|
|
<el-form-item :label="tabform.table" class="el_lable_title"> |
|
|
|
|
<SurchargeTable :SurchargeData="form.publicData" :Surcharge="form.publicTable" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -133,153 +174,309 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup> |
|
|
|
|
import { ref } from 'vue'; |
|
|
|
|
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'; |
|
|
|
|
const emit = defineEmits(['request-data']); |
|
|
|
|
defineComponent({ |
|
|
|
|
emits: ['request-data'], |
|
|
|
|
}); |
|
|
|
|
// 接收参数 |
|
|
|
|
const props = defineProps({ |
|
|
|
|
templateData: Object, |
|
|
|
|
}); |
|
|
|
|
console.log(props, '来自父页面参数'); |
|
|
|
|
const tabform=ref({ |
|
|
|
|
table:'', |
|
|
|
|
title:'' |
|
|
|
|
}) |
|
|
|
|
const Storagebillingtype = ref([]); |
|
|
|
|
const Warehousebillingmode = ref([]); |
|
|
|
|
const CalculationBasis = ref([]); |
|
|
|
|
const request = ref({}); |
|
|
|
|
const Surchargepricingunit = 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: Number(item.dictKey), |
|
|
|
|
label: item.dictValue, |
|
|
|
|
id: item.id, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(() => {}) |
|
|
|
|
.finally(() => {}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const form = ref({ |
|
|
|
|
operatePrice: 0, //操作/装卸费 |
|
|
|
|
warehouseManagementPrice: 0, //仓储管理费 |
|
|
|
|
warehouseSortPrice: 0, //仓储分货费 |
|
|
|
|
// 附加费 |
|
|
|
|
Surcharge: [ |
|
|
|
|
{ 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 }, |
|
|
|
|
{ label: '仓储分货费', prop: 'managementFeec', type: 'number', width: '180', disabled: true }, |
|
|
|
|
], |
|
|
|
|
SurchargeData: [ |
|
|
|
|
{ |
|
|
|
|
index: 1, |
|
|
|
|
category: '暂无', |
|
|
|
|
storageFee: 0, |
|
|
|
|
managementFee: 0, |
|
|
|
|
managementFeea: 0, |
|
|
|
|
managementFeec: 0, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
// 按件计费 |
|
|
|
|
piecebilling: [ |
|
|
|
|
{ label: '30天内(元/件)', prop: 'category', type: 'number', width: '150', disabled: true }, |
|
|
|
|
{ label: '产品品类', prop: 'categoryId', type: 'select', width: '150', disabled: true }, |
|
|
|
|
{ |
|
|
|
|
label: '30天-60天(元/件)/装卸费', |
|
|
|
|
prop: 'storageFee', |
|
|
|
|
label: '仓储操作/装卸费', |
|
|
|
|
prop: 'operatePrice', |
|
|
|
|
type: 'number', |
|
|
|
|
width: '180', |
|
|
|
|
disabled: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '60天外(元/件)', |
|
|
|
|
prop: 'managementFeea', |
|
|
|
|
label: '仓储管理费', |
|
|
|
|
prop: 'warehouseManagementPrice', |
|
|
|
|
type: 'number', |
|
|
|
|
width: '180', |
|
|
|
|
disabled: true, |
|
|
|
|
}, |
|
|
|
|
{ label: '上限(元/件)', prop: 'managementFeec', type: 'number', width: '180', disabled: true }, |
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
piecebillingData: [ |
|
|
|
|
{ |
|
|
|
|
index: 1, |
|
|
|
|
category: 0, |
|
|
|
|
storageFee: 0, |
|
|
|
|
managementFee: 0, |
|
|
|
|
managementFeea: 0, |
|
|
|
|
managementFeec: 0, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
// 按件计费品类单价 |
|
|
|
|
piecebillingPL: [ |
|
|
|
|
{ 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 }, |
|
|
|
|
{ |
|
|
|
|
label: '30天-60天(元/件)/装卸费', |
|
|
|
|
prop: 'storageFee', |
|
|
|
|
type: 'number', |
|
|
|
|
width: '180', |
|
|
|
|
disabled: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '60天外(元/件)', |
|
|
|
|
prop: 'managementFeea', |
|
|
|
|
label: '仓储分货费', |
|
|
|
|
prop: 'warehouseSortPrice', |
|
|
|
|
type: 'number', |
|
|
|
|
width: '180', |
|
|
|
|
disabled: true, |
|
|
|
|
}, |
|
|
|
|
{ label: '上限(元/件)', prop: 'managementFeec', type: 'number', width: '180', disabled: true }, |
|
|
|
|
], |
|
|
|
|
piecebillingPLData: [ |
|
|
|
|
{ |
|
|
|
|
index: 1, |
|
|
|
|
category: '暂无 ', |
|
|
|
|
storageFee: 0, |
|
|
|
|
managementFee: 0, |
|
|
|
|
managementFeea: 0, |
|
|
|
|
managementFeec: 0, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
// 按重量计费 |
|
|
|
|
Billingbyweight: [ |
|
|
|
|
{ label: '30天内(元/件)', prop: 'category', type: 'number', width: '150', disabled: true }, |
|
|
|
|
SurchargeData: [ ], |
|
|
|
|
// 按吨计费 |
|
|
|
|
publicTable: [ |
|
|
|
|
{ label: '序号', prop: 'index', type: 'string', width: '80', disabled: true }, |
|
|
|
|
{ label: '产品品类', prop: 'categoryId', type: 'select', width: '150', disabled: true }, |
|
|
|
|
{ |
|
|
|
|
label: '30天-60天(元/件)/装卸费', |
|
|
|
|
prop: 'storageFee', |
|
|
|
|
label: '30天内', |
|
|
|
|
prop: 'withinThirtyPrice', |
|
|
|
|
type: 'number', |
|
|
|
|
width: '180', |
|
|
|
|
disabled: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '60天外(元/件)', |
|
|
|
|
prop: 'managementFeea', |
|
|
|
|
label: '30天-60天', |
|
|
|
|
prop: 'betweenThirtySixtyPrice', |
|
|
|
|
type: 'number', |
|
|
|
|
width: '180', |
|
|
|
|
disabled: true, |
|
|
|
|
}, |
|
|
|
|
{ label: '上限(元/件)', prop: 'managementFeec', type: 'number', width: '180', disabled: true }, |
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
BillingbyweightData: [ |
|
|
|
|
{ |
|
|
|
|
index: 1, |
|
|
|
|
category: 0, |
|
|
|
|
storageFee: 0, |
|
|
|
|
managementFee: 0, |
|
|
|
|
managementFeea: 0, |
|
|
|
|
managementFeec: 0, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
// 按重量(kg)计费品类单价 |
|
|
|
|
BillingbyweightPL: [ |
|
|
|
|
{ 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 }, |
|
|
|
|
{ |
|
|
|
|
label: '30天-60天(元/件)/装卸费', |
|
|
|
|
prop: 'storageFee', |
|
|
|
|
label: '60天外', |
|
|
|
|
prop: 'beyondSixtyPrice', |
|
|
|
|
type: 'number', |
|
|
|
|
width: '180', |
|
|
|
|
disabled: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '60天外(元/件)', |
|
|
|
|
prop: 'managementFeea', |
|
|
|
|
label: '上限', |
|
|
|
|
prop: 'maximumPrice', |
|
|
|
|
type: 'number', |
|
|
|
|
width: '180', |
|
|
|
|
disabled: true, |
|
|
|
|
}, |
|
|
|
|
{ label: '上限(元/件)', prop: 'managementFeec', type: 'number', width: '180', disabled: true }, |
|
|
|
|
], |
|
|
|
|
BillingbyweightPLData: [ |
|
|
|
|
{ |
|
|
|
|
index: 1, |
|
|
|
|
category: '暂无 ', |
|
|
|
|
storageFee: 0, |
|
|
|
|
managementFee: 0, |
|
|
|
|
managementFeea: 0, |
|
|
|
|
managementFeec: 0, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
publicData: [ ], |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
const onLoad = async () => { |
|
|
|
|
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) { |
|
|
|
|
request.value = await deepClone(props.templateData.request); |
|
|
|
|
form.value.warehousePricingType = request.value.warehousePricingType; //计算类型 |
|
|
|
|
form.value.warehousePricingMode = request.value.warehousePricingMode; //计费模式 |
|
|
|
|
form.value.warehouseCalculationBasis = request.value.warehouseCalculationBasis; //计算基准 |
|
|
|
|
// 附加费产品品类回显 |
|
|
|
|
if (request.value.warehouseIsCategorySubjoin) { |
|
|
|
|
if ( |
|
|
|
|
request.value.warehouseSubjoinCategorys && |
|
|
|
|
request.value.warehouseSubjoinCategorys.length |
|
|
|
|
) { |
|
|
|
|
request.value.warehouseSubjoinCategorys.forEach((res, index) => { |
|
|
|
|
form.value.SurchargeData.push({ |
|
|
|
|
index: index + 1, |
|
|
|
|
categoryId: res.id, |
|
|
|
|
options: [ |
|
|
|
|
{ |
|
|
|
|
label: res.name, |
|
|
|
|
value: res.id, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
operatePrice: 0, |
|
|
|
|
managementFee: 0, |
|
|
|
|
warehouseManagementPrice: 0, |
|
|
|
|
warehouseSortPrice: 0, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
form.value.publicData=[];//清空数据 |
|
|
|
|
// 仓储回显 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function updateLabelsWithUnit(unit, labelsMap) { |
|
|
|
|
form.value.publicTable.forEach(res => { |
|
|
|
|
if (labelsMap[res.label]) { |
|
|
|
|
res.label = labelsMap[res.label] + unit; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function handleFormUpdate(disableIndexAndCategory, unitLabel, tableTitle, perPiece=false) { |
|
|
|
|
const unitMapping = { |
|
|
|
|
'按件计费': `${unitLabel}/件`, |
|
|
|
|
'按重量计费(t)': `${unitLabel}/KG`, |
|
|
|
|
'按吨计费(t)': `${unitLabel}/t`, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const unit = unitMapping[tableTitle] || unitLabel; |
|
|
|
|
|
|
|
|
|
updateLabelsWithUnit(unit, { |
|
|
|
|
'30天内': '30天内', |
|
|
|
|
'30天-60天': '30天-60天', |
|
|
|
|
'60天外': '60天外', |
|
|
|
|
'上限': '上限' |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
tabform.value.title = tableTitle; |
|
|
|
|
tabform.value.table = perPiece ? '按件计费品类单价' : '统一计费单价'; |
|
|
|
|
// Disable or enable index and category based on 'perPiece' value |
|
|
|
|
form.value.publicTable.find(res => res.prop === 'index').disabled = disableIndexAndCategory; |
|
|
|
|
form.value.publicTable.find(res => res.prop === 'categoryId').disabled = disableIndexAndCategory; |
|
|
|
|
|
|
|
|
|
if (request.value.warehouseIsByCategory) { |
|
|
|
|
request.value.warehousePieceCategorys.forEach((res, index) => { |
|
|
|
|
form.value.publicData.push(createPublicDataEntry(index, res.id, res.name)); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
form.value.publicData = [createEmptyPublicDataEntry()]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function createPublicDataEntry(index, categoryId, categoryName) { |
|
|
|
|
return { |
|
|
|
|
index: index + 1, |
|
|
|
|
categoryId: categoryId, |
|
|
|
|
withinThirtyPrice: 0, |
|
|
|
|
betweenThirtySixtyPrice: 0, |
|
|
|
|
beyondSixtyPrice: 0, |
|
|
|
|
maximumPrice: 0, |
|
|
|
|
options: [{ label: categoryName, value: categoryId }] |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function createEmptyPublicDataEntry() { |
|
|
|
|
return { |
|
|
|
|
withinThirtyPrice: 0, |
|
|
|
|
betweenThirtySixtyPrice: 0, |
|
|
|
|
beyondSixtyPrice: 0, |
|
|
|
|
maximumPrice: 0 |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Now we can use those functions to simplify the main code. |
|
|
|
|
const unitType = request.value.warehousePricingType; |
|
|
|
|
console.log(unitType,' console.log(unitType);===>'); |
|
|
|
|
const isByCategory = request.value.warehouseIsByCategory; |
|
|
|
|
switch (unitType) { |
|
|
|
|
|
|
|
|
|
case 1: |
|
|
|
|
handleFormUpdate(isByCategory, '(元/件)', '按件计费'); |
|
|
|
|
break; |
|
|
|
|
case 2: |
|
|
|
|
handleFormUpdate(isByCategory, '(元/m³)', '按件计费'); |
|
|
|
|
break; |
|
|
|
|
case 3: |
|
|
|
|
handleFormUpdate(isByCategory, '(元/KG)', '按重量计费(t)'); |
|
|
|
|
break; |
|
|
|
|
case 4: |
|
|
|
|
handleFormUpdate(isByCategory, '(元/t)', '按吨计费(t)'); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if(request.value.warehouseSubjoinFeeUnit==4){ |
|
|
|
|
// form.value.publicTable.forEach(res=>{ |
|
|
|
|
// if( res.label=='30天内'){ |
|
|
|
|
// res.label='30天内(元/t)'; |
|
|
|
|
// }else if(res.label=='30天-60天'){ |
|
|
|
|
// res.label='30天-60天(元/t)'; |
|
|
|
|
// }else if(res.label=='60天外'){ |
|
|
|
|
// res.label='60天外(元/t)'; |
|
|
|
|
// }else if(res.label=='上限'){ |
|
|
|
|
// res.label='上限(元/t)'; |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
|
|
|
|
|
// // 按吨 |
|
|
|
|
// tabform.value.title='按吨计费(t)'; |
|
|
|
|
// if(request.value.warehouseIsByCategory){ |
|
|
|
|
// tabform.value.table='按吨(t)计费品类单价'; |
|
|
|
|
// form.value.publicTable.find(res=>res.prop=='index').disabled=true; |
|
|
|
|
// form.value.publicTable.find(res=>res.prop=='categoryId').disabled=true; |
|
|
|
|
// request.value.warehousePieceCategorys.forEach((res,index)=>{ |
|
|
|
|
// form.value.publicData.push({ |
|
|
|
|
// index: index+1, |
|
|
|
|
// categoryId:res.id, //品类ID |
|
|
|
|
// withinThirtyPrice: 0, //30天内 |
|
|
|
|
// betweenThirtySixtyPrice: 0, //30天-60天 |
|
|
|
|
// beyondSixtyPrice: 0, // 60天外 |
|
|
|
|
// maximumPrice: 0, // 上限 |
|
|
|
|
// options:[ |
|
|
|
|
// { |
|
|
|
|
// label:res.name, |
|
|
|
|
// value:res.id, |
|
|
|
|
// } |
|
|
|
|
// ] |
|
|
|
|
// }) |
|
|
|
|
// }) |
|
|
|
|
// }else{ |
|
|
|
|
// tabform.value.table='统一计费单价'; |
|
|
|
|
// form.value.publicTable.find(res=>res.prop=='index').disabled=false; |
|
|
|
|
// form.value.publicTable.find(res=>res.prop=='categoryId').disabled=false; |
|
|
|
|
// form.value.publicData=[ |
|
|
|
|
// { |
|
|
|
|
// withinThirtyPrice: 0, //30天内 |
|
|
|
|
// betweenThirtySixtyPrice: 0, //30天-60天 |
|
|
|
|
// beyondSixtyPrice: 0, // 60天外 |
|
|
|
|
// maximumPrice: 0, // 上限 |
|
|
|
|
// } |
|
|
|
|
// ] |
|
|
|
|
// } |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log(form.value, 'form===>'); |
|
|
|
|
} |
|
|
|
|
console.log(request.value, '初始化页面'); |
|
|
|
|
}; |
|
|
|
|
onLoad(); |
|
|
|
|
|
|
|
|
|
const Surchargecd = computed(() => { |
|
|
|
|
const { |
|
|
|
|
warehouseIsCategorySubjoin, |
|
|
|
|
warehouseIsOperateFee, |
|
|
|
|
warehouseIsManageFee, |
|
|
|
|
warehouseIsSortFee, |
|
|
|
|
} = request.value; |
|
|
|
|
if ( |
|
|
|
|
!warehouseIsCategorySubjoin && |
|
|
|
|
!warehouseIsOperateFee && |
|
|
|
|
!warehouseIsManageFee && |
|
|
|
|
!warehouseIsSortFee |
|
|
|
|
) { |
|
|
|
|
return false; |
|
|
|
|
} else { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const btn = () => { |
|
|
|
@ -361,6 +558,7 @@ const btn = () => {
|
|
|
|
|
justify-content: space-between; |
|
|
|
|
flex-direction: row; |
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
align-items: flex-end; |
|
|
|
|
.el_row { |
|
|
|
|
width: 50%; |
|
|
|
|
} |
|
|
|
|