فهرست منبع

报价单增加座位数显示

祁鹏飞 1 ماه پیش
والد
کامیت
6497fc652a
2فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 2 2
      src/views/insurancePolicy/index.vue
  2. 2 2
      src/views/insurancePolicy/modules/quotation.vue

+ 2 - 2
src/views/insurancePolicy/index.vue

@@ -2960,7 +2960,7 @@ let ordersNo = ref('')
 let shareImageUrl = ref('')
 const handleShare = async (scope: any) => {
   ordersNo.value = scope;
-  shareImageUrl.value = await QRCode.toDataURL(`https://tennat.baoxianzhanggui.com/h5/#/pages/quote/quoteRecordDetail?ordersNo=${scope}&from=share`, {
+  shareImageUrl.value = await QRCode.toDataURL(`https://tennat.baoxianzhanggui.com/text_h5/#/pages/quote/quoteRecordDetail?ordersNo=${scope}&from=share`, {
     width: 150,
     margin: 2
   });
@@ -3009,7 +3009,7 @@ const handleCancelPayment = (scope: any) => {
 const handleCopyLink = async () => {
   shareShow.value = false
   try {
-    await navigator.clipboard.writeText(`https://tennat.baoxianzhanggui.com/h5/#/pages/quote/quoteRecordDetail?ordersNo=${ordersNo.value}&from=share`);
+    await navigator.clipboard.writeText(`https://tennat.baoxianzhanggui.com/text_h5/#/pages/quote/quoteRecordDetail?ordersNo=${ordersNo.value}&from=share`);
     ElMessage({
       message: '复制成功!',
       type: 'success'

+ 2 - 2
src/views/insurancePolicy/modules/quotation.vue

@@ -95,7 +95,7 @@ const descriptionsData = computed(() => {
       { title: '车型名称', value: props.insurancePolicyForm.brandName },
     ], [
       { title: '新车购置价(元)', value: props.insurancePolicyForm.purchasePrice },
-      { title: ' ', value: ' ' },
+      { title: '座位数', value: props.insurancePolicyForm.seatCount },
     ], [
       { title: '发动机号、VIN码', value: props.insurancePolicyForm.engineNo + '、' + props.insurancePolicyForm.vinNo },
       { title: '初登日期', value: props.insurancePolicyForm.registerDate },
@@ -151,7 +151,7 @@ const dialogFormVisible = ref(false)
 const shareImageUrl = ref('')
 const show = async (obj) => {
   dialogFormVisible.value = true
-  shareImageUrl.value = await QRCode.toDataURL(`https://tennat.baoxianzhanggui.com/h5/#/pages/quote/quoteRecordDetail?ordersNo=${obj.quoteResult?.ordersNo}&from=share`, {
+  shareImageUrl.value = await QRCode.toDataURL(`https://tennat.baoxianzhanggui.com/text_h5/#/pages/quote/quoteRecordDetail?ordersNo=${obj.quoteResult?.ordersNo}&from=share`, {
     width: 160,
     margin: 2
   });