|
@@ -1,7 +1,7 @@
|
|
<template>
|
|
<template>
|
|
<div class="compnent-price-calc">
|
|
<div class="compnent-price-calc">
|
|
<exportQuota
|
|
<exportQuota
|
|
- ref="compExportQuota"
|
|
|
|
|
|
+ ref="compExportQuotaRef"
|
|
:product-info="productInfo"
|
|
:product-info="productInfo"
|
|
:export-form="exportForm"
|
|
:export-form="exportForm"
|
|
:step3-form-list="step3FormList"
|
|
:step3-form-list="step3FormList"
|
|
@@ -1349,7 +1349,7 @@ let getCurrentPrice = (key: string | number, heavy: number) => {
|
|
const target = setting.value[`${key}_airline`]
|
|
const target = setting.value[`${key}_airline`]
|
|
let result = 0
|
|
let result = 0
|
|
if (Array.isArray(target) && target.length) {
|
|
if (Array.isArray(target) && target.length) {
|
|
- result = target.findIndex((i: any) => i.min < heavy && i.max > heavy)
|
|
|
|
|
|
+ result = target.findIndex((i: any) => i.min <= heavy && i.max > heavy)
|
|
}
|
|
}
|
|
return target[result].price
|
|
return target[result].price
|
|
}
|
|
}
|
|
@@ -1359,7 +1359,7 @@ let getCurrentPricePlus = (heavy: number) => {
|
|
|
|
|
|
let result = 0
|
|
let result = 0
|
|
if (Array.isArray(target) && target.length) {
|
|
if (Array.isArray(target) && target.length) {
|
|
- result = target.findIndex((i: any) => i.min < heavy && i.max > heavy)
|
|
|
|
|
|
+ result = target.findIndex((i: any) => i.min <= heavy && i.max > heavy)
|
|
}
|
|
}
|
|
|
|
|
|
return target[result].price
|
|
return target[result].price
|
|
@@ -1547,7 +1547,6 @@ let dtdChange = (data: any) => {
|
|
generateStep3Form()
|
|
generateStep3Form()
|
|
}
|
|
}
|
|
let openLCLDialog = (columnNum: number, rowNum: number) => {
|
|
let openLCLDialog = (columnNum: number, rowNum: number) => {
|
|
- console.log(columnNum, rowNum)
|
|
|
|
lclData.value = {
|
|
lclData.value = {
|
|
rowNum,
|
|
rowNum,
|
|
columnNum,
|
|
columnNum,
|
|
@@ -1664,14 +1663,13 @@ let onExportFormSave = (data: any) => {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
-const compExportQuotaRef = useTemplateRef('compExportQuota')
|
|
|
|
|
|
+const compExportQuotaRef = ref()
|
|
let generate = () => {
|
|
let generate = () => {
|
|
- const target: ShallowRef = compExportQuotaRef
|
|
|
|
if (
|
|
if (
|
|
- target.value.generatePDF &&
|
|
|
|
- typeof target.value.generatePDF === 'function'
|
|
|
|
|
|
+ compExportQuotaRef.value.generatePDF &&
|
|
|
|
+ typeof compExportQuotaRef.value.generatePDF === 'function'
|
|
) {
|
|
) {
|
|
- target.value.generatePDF()
|
|
|
|
|
|
+ compExportQuotaRef.value.generatePDF()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
@@ -1680,6 +1678,7 @@ let generate = () => {
|
|
.compnent-price-calc {
|
|
.compnent-price-calc {
|
|
.custom-calc-price-dialog {
|
|
.custom-calc-price-dialog {
|
|
margin-top: 0 !important;
|
|
margin-top: 0 !important;
|
|
|
|
+ margin-bottom: 0 !important;
|
|
height: 100vh;
|
|
height: 100vh;
|
|
.el-dialog__body {
|
|
.el-dialog__body {
|
|
max-height: calc(100vh - 56px);
|
|
max-height: calc(100vh - 56px);
|