|
@@ -7,8 +7,9 @@
|
|
|
:step3-form-list="step3FormList"
|
|
|
:step2-form-list="formList"
|
|
|
:creator-options="creatorOptions"
|
|
|
- :city="formData.cal_city.local_city"
|
|
|
+ :city="exportForm.pdf_city"
|
|
|
></exportQuota>
|
|
|
+ <!-- :city="formData.cal_city.local_city" -->
|
|
|
<el-dialog
|
|
|
v-model="show"
|
|
|
class="custom-calc-price-dialog"
|
|
@@ -43,6 +44,7 @@
|
|
|
v-model="formData.cal_city.local_city"
|
|
|
style="width: 120px; margin-right: 12px"
|
|
|
size="small"
|
|
|
+ @change="($e) => (exportForm.pdf_city = $e)"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="city in cityList"
|
|
@@ -485,6 +487,7 @@
|
|
|
:step3-form-list="step3FormList"
|
|
|
:creator-options="creatorOptions"
|
|
|
:form-data="exportForm"
|
|
|
+ :city-list="cityList"
|
|
|
@save="onExportFormSave"
|
|
|
></CompExportForm>
|
|
|
</el-dialog>
|
|
@@ -558,6 +561,7 @@ const formData = ref({
|
|
|
|
|
|
// 导出pdf那个表单
|
|
|
let exportForm = ref({
|
|
|
+ city: '', // 显示在导出pdf的城市地址, 不是step2的运费选择地址.
|
|
|
exchange: '',
|
|
|
days: '30',
|
|
|
gst_name: '+GST',
|
|
@@ -733,6 +737,7 @@ let resetData = () => {
|
|
|
cal_shipment_method: {},
|
|
|
}
|
|
|
exportForm.value = {
|
|
|
+ pdf_city: '',
|
|
|
cycle_name: '',
|
|
|
exchange: '',
|
|
|
days: '30',
|
|
@@ -1025,6 +1030,7 @@ let initForm = (switchStatus = [] as any[], useOldFormData = false) => {
|
|
|
formList.value.push(t)
|
|
|
})
|
|
|
exportForm.value = {
|
|
|
+ pdf_city: productInfo.value.save_cal.pdf_city || cityList.value[0],
|
|
|
exchange: productInfo.value.save_cal.exchange || '',
|
|
|
days: productInfo.value.save_cal.days || '',
|
|
|
gst_name: productInfo.value.save_cal.gst_name || '+GST',
|
|
@@ -1230,7 +1236,7 @@ let setFreight = () => {
|
|
|
productInfo.value.number.forEach((item: any, index: number) => {
|
|
|
// 早起的需求限制3个, 现在暂定放开了. 限制的话, 超过3个的货物数量的运费直接就跳过不计算了.
|
|
|
// if (index > 2) {
|
|
|
- // return
|
|
|
+ // return
|
|
|
// }
|
|
|
const cityPrice = calcCityPrice(
|
|
|
computedTotalWeight.value[index],
|