Browse Source

openIntraCity 多了一个状态值:2 -- 禁用跑腿,把有影响到的地方做修改

shizhongqi 8 months ago
parent
commit
34402cc4ed
2 changed files with 6 additions and 5 deletions
  1. 5 4
      hdApp/src/admin/billing/affirmGhs.vue
  2. 1 1
      mallApp/src/pages/billing/affirmGhs.vue

+ 5 - 4
hdApp/src/admin/billing/affirmGhs.vue

@@ -445,15 +445,16 @@ export default {
 		 */
 		displaySendCost(){
 			if(this.form.sendType == 2){
-				if(this.ghsInfo.openIntraCity == 0){
+				if([0, 2].includes(this.ghsInfo.openIntraCity)){
 					return false
 				}else{
 					return true
 				}
 			}
-			if(this.ghsInfo.pfLevel && this.ghsInfo.pfLevel == 1){
-				return true
-			}
+			// 这个要先去掉,后面再考虑
+			// if(this.ghsInfo.pfLevel && this.ghsInfo.pfLevel == 1){
+			// 	return true
+			// }
 			return false
 		},
 		/**

+ 1 - 1
mallApp/src/pages/billing/affirmGhs.vue

@@ -250,7 +250,7 @@ export default {
 		 */
 		 displaySendCost(){
 			if(this.form.sendType == 2){
-				if(this.form.openIntraCity == 0){
+				if([0, 2].includes(this.form.openIntraCity)){
 					return false
 				}else{
 					return true