ソースを参照

报价未匹配费用提示未匹配信息

@dongkboy 2 週間 前
コミット
e70856b3a8
1 ファイル変更7 行追加2 行削除
  1. 7 2
      pages/quote/quoteRecordDetail.vue

+ 7 - 2
pages/quote/quoteRecordDetail.vue

@@ -624,6 +624,7 @@
 				insOrderRightsInfoVo: {}, //权益信息
 				insOrderRightsInfoDto: null, //权益参数
 				isFromShare: "",
+				feeNoDescription: "",
 			}
 		},
 		onShow() {
@@ -681,8 +682,10 @@
 			getfeeEntry() {
 				if (!this.insFeeOrders) {
 					uni.showToast({
+						duration: 10000,
 						icon: 'none',
-						title: '没有费用信息'
+						title: this.feeNoDescription || '未匹配到费用'
+
 					})
 				} else {
 					this.feeEntryInfoShow = true;
@@ -805,7 +808,8 @@
 					const navDelay = 1000; //成功后「正在前往支付页面」展示时长(毫秒)
 					// 查询前:loading「查询支付码中」转1秒再请求接口
 					await new Promise(resolve => setTimeout(resolve, preDelay));
-					let qrCode = await this.$http.get('/order/qrCode/getQrCode?orderNo=' + encodeURIComponent(this.ordersNo));
+					let qrCode = await this.$http.get('/order/qrCode/getQrCode?orderNo=' + encodeURIComponent(this
+						.ordersNo));
 					if (qrCode.code == '200') {
 						// 成功后:loading文字改为"正在前往支付页面",再转1秒后跳转
 						this.loadingText = "正在前往支付页面";
@@ -946,6 +950,7 @@
 					this.vehicleAndVesselTaxVo = res.data.vehicleAndVesselTaxVo; //车船税信息
 					this.salesmanInfo = res.data.salesmanInfo; //业务员信息
 					this.insFeeOrders = res.data.insFeeOrders; //费用信息
+					this.feeNoDescription = res.data.feeNoDescription; //未匹配费用提示信息
 					this.insOrderRightsInfoVo = res.data.insOrderRightsInfoVo; //权益详情
 					this.imageVoList = res.data.imageVoList;
 					this.order = res.data.order;