浏览代码

change: indent导出pdf表单增加额外城市选项.

用于显示在pdf左下角的文案.
peter 1 月之前
父节点
当前提交
fb1c5dcab2

+ 8 - 2
src/pages/indent-manage/indent/components/calcPrice/index.vue

@@ -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],

+ 15 - 0
src/pages/indent-manage/indent/components/exportForm.vue

@@ -27,6 +27,19 @@
             ></el-option>
           </el-select>
         </el-form-item>
+        <el-form-item label="Export PDF City">
+          <el-select
+            v-model="form.pdf_city"
+            filterable
+          >
+            <el-option
+              v-for="item in cityList"
+              :key="item"
+              :label="item"
+              :value="item"
+            ></el-option>
+          </el-select>
+        </el-form-item>
         <el-form-item
           v-for="item in step3FormList"
           :key="item.tabLabel"
@@ -107,11 +120,13 @@ const {
   formData = {} as any,
   creatorOptions = [],
   step3FormList = [],
+  cityList = [],
 } = defineProps<{
   visible: boolean
   formData: object
   creatorOptions: any[]
   step3FormList: any[]
+  cityList: any[]
 }>()
 const $emit = defineEmits(['update:visible', 'save'])
 const show = ref(false)