浏览代码

change: 报价转单表单增加tab lavel选项.

peter 3 月之前
父节点
当前提交
7a346b1c79
共有 1 个文件被更改,包括 20 次插入2 次删除
  1. 20 2
      src/pages/indent-manage/indent/components/quoteRecord.vue

+ 20 - 2
src/pages/indent-manage/indent/components/quoteRecord.vue

@@ -126,7 +126,22 @@
                     v-model="formList[props.$index].Shipping_Country"
                   ></el-input>
                 </el-form-item>
-                <div></div>
+                <el-form-item
+                  label="Tax Level"
+                  :rules="{
+                    required: true,
+                  }"
+                  prop="Tax_Level"
+                >
+                  <el-select v-model="formList[props.$index].Tax_Level">
+                    <el-option
+                      v-for="item in taxList"
+                      :key="item"
+                      :label="item"
+                      :value="item"
+                    ></el-option>
+                  </el-select>
+                </el-form-item>
               </div>
               <div class="flex justify-end">
                 <el-button
@@ -219,6 +234,8 @@ import {
   ElFormItem,
   ElInput,
   ElDatePicker,
+  ElSelect,
+  ElOption,
 } from 'element-plus'
 import { getCalcPriceRecord, generateOrder } from '@/api/indent'
 defineComponent({
@@ -246,7 +263,7 @@ watch(
 const pageSize = ref(10)
 const currentPage = ref(1)
 const total = ref(0)
-
+const taxList = ref(['GST AU 10%', 'GST NZ 15%', 'No GST 0%', 'VAT 20%'])
 const getCalcPriceRecordFunc = () => {
   loading.value = true
   getCalcPriceRecord({ id: id })
@@ -268,6 +285,7 @@ const getCalcPriceRecordFunc = () => {
           Shipping_City: '',
           Shipping_State: '',
           Shipping_Code: '',
+          Tax_Level: 'GST AU 10%',
           Order_Source: 'Indent App',
           Contact_Name: { id: '4791186000057250001', name: '/' },
         })