XSLu08042 8 時間 前
コミット
53cbd0691a

+ 2 - 2
common/request.js

@@ -5,8 +5,8 @@ export default class Request {
 		// let path = 'http://127.0.0.1:8113';
 		// var path=uni.getStorageSync('requestPath')
 
-		var path = 'https://storeuserapp.bjyjbao.com'; //正式
-		// var path = "http://q262c6a3.natappfree.cc"
+		// var path = 'https://storeuserapp.bjyjbao.com'; //正式
+		var path = "https://userapptest.bjyjbao.com"
 		// var path = "http://192.168.10.196:8113"
 		let token="";
 		let type = 0

+ 2 - 2
pages/user/index.vue

@@ -129,10 +129,10 @@
 							<image class="min-image" src="https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/app/image/userimg/my_coupon.png"></image>
 							<view class="title">我的优惠卷</view>
 						</view>
-						<view class="menu"  @click="loginNavTo('/pages_company/couponList?couponType=6')">
+						<!-- <view class="menu"  @click="loginNavTo('/pages_company/couponList?couponType=6')">
 							<image class="min-image" src="https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/app/image/userimg/coupon_collection_center.png"></image>
 							<view class="title">领券中心</view>
-						</view>
+						</view> -->
 						<view class="menu"  @click="navTo('/pages_user/integralGoodsList')">
 							<image class="min-image" src="https://bjyjb-1362704775.cos.ap-chongqing.myqcloud.com/fs/20260721/6a74196fca8244ce847294afd38866bd.png"></image>
 							<view class="title">积分商城</view>

+ 2 - 2
pages_user/integralOrderDetails.vue

@@ -163,9 +163,9 @@
 		<!-- 按钮 -->
 		<view   class="btn-box">
 			<view class="btn pay" v-if="order.status==4" @click.stop="pay()">去支付</view>
-				<view class="btn cancel" v-if="order.status==4" @click.stop="cancelPay(item)">取消订单</view>
+				<view class="btn cancel" v-if="order.status==4" @click.stop="cancelPay(order)">取消订单</view>
 				<view class="btn pay" v-if="order.deliverySn!=null" @click="showDelivery()">查看物流</view>
-				<view v-if="order.isAfterSales==1" class="btn cancel" @click="refund(item)">申请售后</view>
+				<view v-if="order.isAfterSales==1" class="btn cancel" @click="refund(order)">申请售后</view>
 				<view class="btn cancel">
 					联系客服
 				<button class='contact-btn' open-type="contact"></button>

+ 1 - 1
pages_user/integralOrderPay.vue

@@ -310,7 +310,7 @@
 								tmplIds: temps,
 								success(e) {
 									setTimeout(function(){
-										if(!res.order.payMoney==0) {
+										if(!res.order.payMoney) {
 											uni.redirectTo({
 												url:"./integralOrderPaySuccess?orderId="+res.order.orderId
 											})

+ 0 - 1
utils/common.js

@@ -171,7 +171,6 @@ export function getProvider(service) {
 }
 
 export function parsePhone(mobile) {
-	console.log(mobile)
 	if(mobile!=null){
 		var str = mobile.substr(0,3)+"****"+mobile.substr(7);
 		return str;