rabin 5 years ago
parent
commit
e0b38ddabb
5 changed files with 15 additions and 11 deletions
  1. 3 6
      buy/assets/mobile/index.html
  2. 1 3
      buy/assets/mobile/pay.html
  3. 6 1
      buy/src/Buy.php
  4. 1 1
      buy/src/Data.php
  5. 4 0
      buy/template/mobile/list.php

+ 3 - 6
buy/assets/mobile/index.html

@@ -89,12 +89,9 @@
         <div class="buytip-layer layer ">
             <div class='buy-tit'>购买说明</div>
             <div class="p">
-                1、购买成功后可直接点击【开始阅读】
-                查看阅读内容; <br>
-                2、虚拟商品,如无系统问题,购买后不
-                可退换; <br>
-                3、每购买一本,可增加20积分; <br>
-                4、如有其他使用问题可咨询在线客服。
+                1、购买成功后可直接点击【阅读】 查看阅读内容; <br />
+                2、电子刊为虚拟商品,如无系统问题,购买后不可退换; <br />
+                3、如有其他使用问题可咨询在线客服。
             </div>
             <div class="btn-wrapper">
                 <div class="button" node-act="hideTip">我知道了</div>

+ 1 - 3
buy/assets/mobile/pay.html

@@ -42,8 +42,6 @@
 
     $('[node-act="doBuy"]').on('click',function(){
         if (payStatus == false) {
-            
-            console.info($('.active'));
             var url = $('.list .active').attr('data-pay');
             if (!url) {
             	alert('错误的信息');
@@ -51,13 +49,13 @@
             	return;
             }
             $(this).html('支付中...');
-            $('#buytip .p').html($('#tips').html());
             payStatus = true;
             pay(url);
         }
     })
 
     $('[node-act="buytip"]').on('click', function () {
+        $('#buytip .p').html($('#tips').html());
         $('#buytip').show()
     })
     $('[node-act="hideTip"]').on('click', function () {

+ 6 - 1
buy/src/Buy.php

@@ -86,6 +86,9 @@ class Buy extends Base
                 $data[$k]['desc'] = $v['buy_num'] . '本 ¥' . number_format($v['cash'], 2);
                 $name = explode('-', $v['name']);
                 $data[$k]['name'] = $name[0];
+
+                $info = Dever::db('journal/info')->one($v['product_id']);
+                $data[$k]['pic_gd'] = $info['pic_gd'] . '?imageView2/2/w/375';
             }
         }
 
@@ -404,8 +407,10 @@ class Buy extends Base
         $send['pay_order_id'] = $order_id;
         $send['pay_status'] = 2;
         $send['pay_msg'] = 'yes';
+        $send['id'] = $id;
+        $send['url'] = $refer;
         Dever::load('act/lib/pay')->act_action($send);
 
-        return $result;
+        return $send;
     }
 }

+ 1 - 1
buy/src/Data.php

@@ -16,7 +16,7 @@ class Data extends Base
         if ($this->user) {
             return $this->location('list');
         } else {
-            return $this->location('auth');
+            //return $this->location('auth');
         }
     }
 

+ 4 - 0
buy/template/mobile/list.php

@@ -16,6 +16,10 @@ $view
     array
     (
         '.order-time span' => '$v.cdate',
+        'img' => array
+        (
+            'src' => '$v.pic_gd',
+        ),
         'a|0' => array
         (
             'href' => '$v.link',