xxm 6 年之前
父節點
當前提交
6ea131d240

+ 0 - 0
dist/.nojekyll


文件差異過大導致無法顯示
+ 0 - 9
dist/200.html


+ 0 - 10
dist/README.md

@@ -1,10 +0,0 @@
-# STATIC
-
-**This directory is not required, you can delete it if you don't want to use it.**
-
-This directory contains your static files.
-Each file inside this directory is mapped to `/`.
-
-Example: `/static/robots.txt` is mapped as `/robots.txt`.
-
-More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static).

+ 0 - 57
dist/_nuxt/LICENSES

@@ -1,57 +0,0 @@
-/*!
- * Vue.js v2.5.22
- * (c) 2014-2019 Evan You
- * Released under the MIT License.
- */
-
-/**
- * vuex v3.1.0
- * (c) 2019 Evan You
- * @license MIT
- */
-
-/*!
-  * vue-router v3.0.2
-  * (c) 2018 Evan You
-  * @license MIT
-  */
-
-/**
- * vue-meta v1.5.8
- * (c) 2018 Declan de Wet & Sébastien Chopin (@Atinux)
- * @license MIT
- */
-
-/*
-	object-assign
-	(c) Sindre Sorhus
-	@license MIT
-	*/
-
-/*!
- * Determine if an object is a Buffer
- *
- * @author   Feross Aboukhadijeh <https://feross.org>
- * @license  MIT
- */
-
-/*!
- * vue-no-ssr v1.1.1
- * (c) 2018-present egoist <0x142857@gmail.com>
- * Released under the MIT License.
- */
-
-/**
- * Checks if an event is supported in the current execution environment.
- *
- * NOTE: This will not work correctly for non-generic events such as `change`,
- * `reset`, `load`, `error`, and `select`.
- *
- * Borrows from Modernizr.
- *
- * @param {string} eventNameSuffix Event name, e.g. "click".
- * @param {?boolean} capture Check if the capture phase is supported.
- * @return {boolean} True if the event is supported.
- * @internal
- * @license Modernizr 3.0.0pre (Custom Build) | MIT
- */

二進制
dist/_nuxt/fonts/2fad952.woff


二進制
dist/_nuxt/fonts/6f0a763.ttf


二進制
dist/_nuxt/img/1a06487.png


二進制
dist/_nuxt/img/5aeb117.png


二進制
dist/_nuxt/img/a8f08bc.png


二進制
dist/_nuxt/img/aa55d9d.png


二進制
dist/_nuxt/img/bcf1fc6.png


文件差異過大導致無法顯示
+ 0 - 9
dist/cert/index.html


二進制
dist/favicon.ico


文件差異過大導致無法顯示
+ 0 - 11
dist/index.html


文件差異過大導致無法顯示
+ 0 - 9
dist/type/index.html


文件差異過大導致無法顯示
+ 0 - 9
dist/type/pay/index.html


文件差異過大導致無法顯示
+ 0 - 9
dist/type/vip/index.html


+ 15 - 10
pages/wo/bills.vue

@@ -36,7 +36,7 @@
         <div class="uCenter-main inn-coin">
           <div class="center-box">
             <div class="hd">
-              <ul class="hd-left">
+              <ul class="hd-center">
                 <li>交易账单</li>
               </ul>
             </div>
@@ -59,7 +59,7 @@
                   >
                     <td>
                       {{item.product_title}}
-                      <span
+                      <!-- <span
                         class="order-status"
                         v-if="item.status === '0'"
                       >订单创建</span>
@@ -75,9 +75,15 @@
                       <span class="order-status" v-else-if="item.status === '303'">订单全额退款</span>
                       <span class="order-status" v-else-if="item.status === '400'">订单支付中</span>
                       <span class="order-status" v-else-if="item.status === '401'">订单支付成功</span>
+                      <span class="order-status" v-else-if="item.status === '402'">订单支付失败</span> -->
+                      <span class="order-status" v-if="item.status === '400'">订单支付中</span>
                       <span class="order-status" v-else-if="item.status === '402'">订单支付失败</span>
                     </td>
-                    <td>{{Number(item.price) ? '+' + item.price : item.price}}</td>
+                    <td
+                      v-if="Number(item.price)"
+                      style="color: #2F944A;"
+                    >{{'+' + item.price}}</td>
+                    <td v-else  style="color: #FE5F00;">{{item.price}}</dtd>
                     <td v-if="item.channel === 'alipay'">支付宝支付</td>
                     <td v-else-if="item.channel === 'wxpay'">微信支付</td>
                     <td v-else-if="item.channel === 'balance'">余额支付</td>
@@ -108,7 +114,7 @@
     </template>
 
     <template v-else>
-      <div class="business-wrapper" ref="scroller">
+      <div class="business-wrapper" ref="scroller" style="background-color:#ffffff;">
         <div class="business-content">
           <div class="pulldown-wrapper">
             <div v-show="beforePullDown">
@@ -133,7 +139,7 @@
               <div class="business-item-top">
                 <div class="business-item-title">{{item.product_title}}</div>
                 <div class="business-item-status">
-                  <span v-if="item.status === '0'">订单创建</span>
+                  <!-- <span v-if="item.status === '0'">订单创建</span>
                   <span v-else-if="item.status === '100'">待审核</span>
                   <span v-else-if="item.status === '101'">审核中</span>
                   <span v-else-if="item.status === '102'">订单审核成功</span>
@@ -146,6 +152,8 @@
                   <span v-else-if="item.status === '303'">订单全额退款</span>
                   <span v-else-if="item.status === '400'">订单支付中</span>
                   <span v-else-if="item.status === '401'">订单支付成功</span>
+                  <span v-else-if="item.status === '402'">订单支付失败</span> -->
+                  <span v-if="item.status === '400'">订单支付中</span>
                   <span v-else-if="item.status === '402'">订单支付失败</span>
                 </div>
                 <div
@@ -438,7 +446,6 @@ export default {
 }
 
 .inn-uCenter .center-box .hd {
-  padding-right: 30px;
   height: 68px;
   line-height: 68px;
   background-color: #258ce8;
@@ -454,8 +461,7 @@ export default {
 }
 
 .inn-uCenter .center-box .hd li {
-  float: left;
-  margin-left: 30px;
+  text-align: center;
   font-size: 16px;
 }
 
@@ -471,9 +477,8 @@ export default {
   font-size: 16px;
 }
 
-.inn-uCenter .center-box .hd-left {
+.inn-uCenter .center-box .hd-center {
   overflow: hidden;
-  float: left;
 }
 
 .inn-uCenter .center-box .hd-right {