future 1 рік тому
батько
коміт
7a1a3c03f6

+ 1 - 1
xs-app/components/read/readPage.vue

@@ -22,7 +22,7 @@
 			<view v-if="isLock==false" style="display: flex;justify-content: space-around;justify-items: center;margin-bottom: 3%;margin-top: 3%;">
 				<view @tap="emits('clickPreChapter')" :style="{color:ReadSetting().getReadSetting().readMode==config.read_config.readMode.Dark?'#868686':'#000000'}">上一章</view>
 				<!-- <view @tap="emits('clickCatalog')">目录</view> -->
-				<image :src="getMlIconRes()" style="width: 142rpx;height: 56rpx;"></image>
+				<image :src="getMlIconRes()" style="width: 142rpx;height: 56rpx;" @tap="emits('clickCatalog')"></image>
 				<view @tap="emits('clickNextChapter')" :style="{color:ReadSetting().getReadSetting().readMode==config.read_config.readMode.Dark?'#868686':'#000000'}">下一章</view>
 			</view>
 		</view>

+ 2 - 0
xs-app/framework/tools.ts

@@ -470,6 +470,7 @@ export class tools {
 	public static requestRechargeOrderBuy(pay_type:number, goods_id:number, cb:Function) {
 		let opt = {'pay_type':pay_type,'goods_id':goods_id}
 		http.DynamicRequest(config.url_confg.Dynamic.recharge.order_buy,opt,(err=null,data=null)=>{
+			log.Debug('下单  data=',data,'err=',err)
 			if(!err&&data) {
 				if(data.code==config.url_confg.StatesCode.SUCCESS){
 					let order_id = data.content.order_id
@@ -487,6 +488,7 @@ export class tools {
 	public static requestRechargeOrderInfo(order_id:string, cb:Function) {
 		let opt = {'order_id':order_id}
 		http.DynamicRequest(config.url_confg.Dynamic.recharge.order_info,opt,(err=null,data=null)=>{
+			log.Debug('查询订单  data=',data,'err=',err)
 			if(!err&&data) {
 				if(data.code==config.url_confg.StatesCode.SUCCESS){
 					let status = data.content.status //订单状态 1:支付中 2:已经支付

+ 2 - 1
xs-app/pagesA/recharge/rechargeCoin.vue

@@ -269,7 +269,8 @@
 						color: #6D6D82;
 					}
 					&__rmb{
-						margin-top: 7rpx;
+						position: absolute;
+						bottom: -60rpx;
 						font-size: 17px;
 					}
 				}

+ 4 - 3
xs-app/pagesA/recharge/rechargeVIP.vue

@@ -27,7 +27,7 @@
 	    <view class="list">
 	    	<view class="list__item"  v-for="(item,index) in data_list" :key="index" @click="clickItem(index)">
 				<image v-if="current_index==index" class="image" src="../../static/imgs/read/img_buy_onselect_bi_status.png"></image>
-	    		<image v-else class="image" src="../../static/imgs/read/img_buy_unselect_bi_status.png" mode=""></image>
+	    		<image v-else class="image" src="../../static/imgs/read/img_buy_unselect_bi_status.png"></image>
 	    	    <view class="list__item__container">
 					<view class="list__item__container__prompt" :style="{color:current_index==index?color_prompt_s:color_prompt_n}">
 						{{item.prompt1}}
@@ -178,7 +178,7 @@
 					// height: 150rpx;
 					// background-color: red;
 					&__name{
-						margin-top: 20rpx;
+						margin-top: 30rpx;
 						font-size: 25px;
 						font-weight: 450;
 					}
@@ -251,7 +251,8 @@
 						font-weight: 500;
 					}
 					&__des{
-						margin-top: 15rpx;
+						position: absolute;
+						bottom: -50rpx;
 						font-size: 13px;
 					}