shish 1 dia atrás
pai
commit
d1a393521d
1 arquivos alterados com 3 adições e 3 exclusões
  1. 3 3
      hdApp/src/admin/billing/affirmSh.vue

+ 3 - 3
hdApp/src/admin/billing/affirmSh.vue

@@ -464,9 +464,9 @@ export default {
 			}
 			const conditionText = tips.length > 0 ? tips.join("或") : "未达最低消费"
 			const unMeet = Number(method.unMeet) || 0
-			// unMeet=2:未满最低消费则禁止下单
+			// unMeet=2:未满最低消费时引导加购,文案避免生硬的「不能下单」
 			if (unMeet === 2) {
-				return conditionText + ",不能下单"
+				return conditionText + ",请再加购后下单"
 			}
 			// unMeet=0 加运费;unMeet=1 加包装费,并写出具体金额
 			const fee = parseFloat(Number(method.unMeetFee) || 0)
@@ -1117,7 +1117,7 @@ export default {
 					if (minNum > 0) {
 						tips.push(`满${minNum}扎`)
 					}
-					const tipStr = tips.length > 0 ? `${tips.join("并且")}才能下单` : "未达到最低消费,不能下单"
+					const tipStr = tips.length > 0 ? `${tips.join("并且")}才能下单` : "未达到最低消费,请再加购后下单"
 					this.$msg(tipStr)
 					return false
 				}