Pārlūkot izejas kodu

余额采用充值消毒记录逻辑、充值记录添加上调下调金额type31判断、输入金额页面添加动态title

wangtao 3 gadi atpakaļ
vecāks
revīzija
fc8cefba84

+ 1 - 1
src/assets/js/dataFormate.js

@@ -172,7 +172,7 @@ function getNowTime() {
     if (nowSeconds < 10) {
         nowSeconds = "0" + nowSeconds;
     }
-    console.log(nowYear + "-" + nowMonth + "-" + nowDay + " " + nowHours + ":" + nowMinutes + ":" + nowSeconds)
+    // console.log(nowYear + "-" + nowMonth + "-" + nowDay + " " + nowHours + ":" + nowMinutes + ":" + nowSeconds)
     return nowYear + "-" + nowMonth + "-" + nowDay + " " + nowHours + ":" + nowMinutes + ":" + nowSeconds;
 }
 /** 

+ 2 - 3
src/plugins/axios.js

@@ -4,9 +4,8 @@ import Vue from 'vue';
 import axios from "axios";
 // Full config:  https://github.com/axios/axios#request-config
 
-axios.defaults.baseURL = 'http://172.16.120.104:8085/'; //本地
-//axios.defaults.baseURL = 'https://qhome.usky.cn/dxapi/'; //75
-//axios.defaults.baseURL = 'https://smartpark.caih.com/dxapi'; //东信部署
+//axios.defaults.baseURL = 'http://172.16.120.104:8085/'; //本地
+axios.defaults.baseURL = 'https://smartpark.caih.com/dxapi'; //东信部署
 // axios.defaults.baseURL = process.env.baseURL || process.env.apiUrl || '';
 // axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;
 // axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';

+ 16 - 11
src/views/amount/index.vue

@@ -2,7 +2,7 @@
   <div class="mianBox" v-if="order">
     <van-row class="headerBox">
       <van-icon name="arrow-left" @click="$router.go(-1)" v-if="fanhui" />
-      充值
+      {{title}}
     </van-row>
     <!-- <van-row class="balance" v-if="fanhui">
       <van-col span="8">余额:{{cardBalance ? cardBalance : '0.00'}}元</van-col>
@@ -82,7 +82,8 @@ export default {
       channelId: undefined,
       fanhui: false,
       proportion:0,//到账比例
-      order:true//管理员充值
+      order:true,//管理员充值
+      title:undefined
     };
   },
   watch: {
@@ -102,9 +103,11 @@ export default {
     if (this.$route.query.type) {
       this.channelId = this.$route.query.type;
       localStorage.setItem("type",this.channelId)
-      console.log("channelId游客充值=",this.channelId);
+      //console.log("channelId游客充值=",this.channelId);
+      this.title = this.$route.query.channelName + "消费支付"
       this.proportionData()
     } else if(this.$route.query.backOrder) {
+      this.title = "消费支付"
       this.order = false
       const data = JSON.parse(this.$route.query.backOrder)
       var money = data.money
@@ -127,9 +130,11 @@ export default {
       })
       this.proportionData()
     } else if(localStorage.getItem("user")) {
+      this.title = "充值"
       this.fanhui = true
       this.proportionData()
     }else{
+      this.title = "充值"
       this.fanhui = true;
     }
   },
@@ -137,12 +142,12 @@ export default {
     proportionData(){
       if(localStorage.getItem("user")){
         axios.get(`/dxtop/staff/one`,{params:{"id":localStorage.getItem("user")}}).then(res => {//res.msg
-          console.log(res)
+          //console.log(res)
           if(res.data.data.proportion){
             this.proportion = Number(1 - res.data.data.proportion).toFixed(2)
           }
         }).catch(err=>{
-          console.log(err)
+          //console.log(err)
         }) 
       }
     },
@@ -194,7 +199,7 @@ export default {
     async pay(money,  topPayType, payType, channelId) {
       if(money.toString().indexOf(".")<1){
         money = money + ".00"
-        console.log(money)
+        //console.log(money)
       }
       axios.post('/dxtop/order/topScanPayApi', {
           "money": money,
@@ -223,18 +228,18 @@ export default {
           });
         }else if(this.channelId){
             if (this.env == "WeiXin") {
-              console.log("微信环境充值--游客");
+              //console.log("微信环境充值--游客");
              
               //微信
               this.loading = true;
               this.pay(this.money,  "W06" ,"2", this.channelId);
             }else if (this.env == "Alipay") {
-              console.log("支付宝环境充值--游客");
+              //console.log("支付宝环境充值--游客");
               //支付宝
               this.loading = true;
               this.pay(this.money,  "A01", "2", this.channelId);
             } else {
-              console.log("有channelId的其他扫描--游客");
+              //console.log("有channelId的其他扫描--游客");
               this.$router.push({
                 path: "/recharge",
                 query: { money: this.money,channelId: undefined},
@@ -242,9 +247,9 @@ export default {
             }
         }else{
           if(localStorage.getItem("user")){
-            console.log("userid 进入")
+            //console.log("userid 进入")
           }else{
-            console.log("无channelId 进入")
+            //console.log("无channelId 进入")
           }
           let money = this.money.toString()
           if(money.indexOf(".")<1){

+ 127 - 52
src/views/balance/index.vue

@@ -18,13 +18,15 @@
   </div>
 </template>
 <script>
+import axios from "axios";
 import { getNowTime } from "@/assets/js/dataFormate";
 export default {
   data() {
     return {
       balance:undefined,
       num:0,
-      createdTime:undefined
+      createdTime:undefined,
+      balanceHC:undefined
     };
   },
   mounted() {},
@@ -51,67 +53,134 @@ export default {
     // }
 
     
-      var time = function (){
-        _this.num++
-        if(_this.num>15){
-          clearInterval(val)
-          _this.balance = "查询失败"
-          _this.createdTime = "更新时间:" + getNowTime()
-        }
-      }
+      // var time = function (){
+      //   _this.num++
+      //   if(_this.num>15){
+      //     clearInterval(val)
+      //     _this.balance = "查询失败"
+      //     _this.createdTime = "更新时间:" + getNowTime()
+      //   }
+      // }
       _this.cardBalance()
-      var val = setInterval(time,1000)
+      // var val = setInterval(time,1000)
   },
   methods: {
     shuaxin(){
       this.cardBalance()
     },
-    cardBalance(){
-      this.balance = undefined
+    timeStamp(str){
+      return (Date.parse(new Date(str)) / 1000)
+    },
+    cardBalance(){ //消费充值余额取最大值
       let _this = this
-      axios.get(`/dxtop/staff/one?id=${localStorage.getItem("user")}`).then(res => {
-        if(res.data?.data?.cardId){
-          axios.get(`/dxtop/staff/cardBalance`,{params:{"card":res.data.data.cardId}}).then(res2 => { //res.data.data.cardId
-          let msgFlag =undefined
-            axios.get(`/dxtop/msglog/one`,{params:{"id":res2.data.msg}}).then(res3 => {//res.msg
-                msgFlag = res3.data.data.msgFlag
-                let num = 0
-                var time = function (){
-                  axios.get(`/dxtop/msglog/one`,{params:{"id":res2.data.msg}}).then(res4 => {//res.msg
-                      if(res4.data.data.msgFlag ==4){
-                        var data = JSON.parse(res4.data.data.consequence)
-                        if(data.code == 1){
-                          _this.balance = Number(data.balance).toFixed(2)
-                          localStorage.setItem("getBalanceTime",getNowTime())
-                          _this.createdTime = "更新时间:" + localStorage.getItem("getBalanceTime")
-                          clearInterval(val)
-                        }
-                      }
-                  })
-                  num+=2
-                  console.log("余额加载秒数",num)
-                  if(num>14){
-                    _this.balance = "查询失败"
-                    localStorage.setItem("getBalanceTime",getNowTime())
-                    _this.createdTime = "更新时间:" + localStorage.getItem("getBalanceTime")
-                    clearInterval(val)
-                    
+      let time1 = undefined
+      _this.balance = undefined
+       axios.post(`/dxtop/dish/page`,{
+        "size":1,
+        "current":1,
+        "userId":localStorage.getItem("user")
+      }).then(res =>{
+        //(res)
+        if(res.data.data.records){
+          if(res.data.data.records[0]){
+            if(res.data.data.records[0].balance){
+              _this.balanceHC = res.data.data.records[0].balance
+              time1 = _this.timeStamp(res.data.data.records[0].createTime)
+            }else{
+              _this.balanceHC = 0
+            }
+          }else{
+            _this.balanceHC = 0
+          }
+        }else{
+           _this.balanceHC = "查询失败"
+        }
+
+        setTimeout(()=>{
+          axios.post(`/dxtop/charge/page`,{
+              "size":1,
+              "current":1,
+              "userId":localStorage.getItem("user")
+          }).then(res => {
+            if(res.data.data.records){
+              if(res.data.data.records[0]){
+                if(res.data.data.records[0].balance){
+                  if(typeof(_this.balanceHC) == "number"){
+                    if(time1 <= _this.timeStamp(res.data.data.records[0].createTime)){
+                      _this.balance = res.data.data.records[0].balance
+                    }else{
+                      _this.balance = _this.balanceHC
+                      localStorage.setItem("getBalanceTime",getNowTime())
+                      _this.createdTime = "更新时间:" + localStorage.getItem("getBalanceTime")
+                    }
                   }
+                }else{
+                  _this.balance = "0.00"
+                  localStorage.setItem("getBalanceTime",getNowTime())
+                  _this.createdTime = "更新时间:" + localStorage.getItem("getBalanceTime")
                 }
-                var val = setInterval(time,2000)
-            }).catch(err=>{
-              console.log(err)
-            })
-          }).catch(err=>{
-            console.log(err)
+              }else{
+                _this.balance = "0.00"
+                localStorage.setItem("getBalanceTime",getNowTime())
+                _this.createdTime = "更新时间:" + localStorage.getItem("getBalanceTime")
+              }
+            }else{
+              _this.balance = "查询失败"
+              localStorage.setItem("getBalanceTime",getNowTime())
+              _this.createdTime = "更新时间:" + localStorage.getItem("getBalanceTime")
+            }
           })
-        }else{
-          Toast("卡号不存在")
-        }
+        },100)
+      })
+
+
+
+
+
+      // 超长处理
+      // axios.get(`/dxtop/staff/one?id=${localStorage.getItem("user")}`).then(res => {
+      //   if(res.data?.data?.cardId){
+      //     axios.get(`/dxtop/staff/cardBalance`,{params:{"card":res.data.data.cardId}}).then(res2 => { //res.data.data.cardId
+      //     let msgFlag =undefined
+      //       axios.get(`/dxtop/msglog/one`,{params:{"id":res2.data.msg}}).then(res3 => {//res.msg
+      //           msgFlag = res3.data.data.msgFlag
+      //           let num = 0
+      //           var time = function (){
+      //             axios.get(`/dxtop/msglog/one`,{params:{"id":res2.data.msg}}).then(res4 => {//res.msg
+      //                 if(res4.data.data.msgFlag ==4){
+      //                   var data = JSON.parse(res4.data.data.consequence)
+      //                   if(data.code == 1){
+      //                     _this.balance = Number(data.balance).toFixed(2)
+      //                     localStorage.setItem("getBalanceTime",getNowTime())
+      //                     _this.createdTime = "更新时间:" + localStorage.getItem("getBalanceTime")
+      //                     clearInterval(val)
+      //                   }
+      //                 }
+      //             })
+      //             num+=2
+      //             console.log("余额加载秒数",num)
+      //             if(num>14){
+      //               _this.balance = "查询失败"
+      //               localStorage.setItem("getBalanceTime",getNowTime())
+      //               _this.createdTime = "更新时间:" + localStorage.getItem("getBalanceTime")
+      //               clearInterval(val)
+                    
+      //             }
+      //           }
+      //           var val = setInterval(time,2000)
+      //       }).catch(err=>{
+      //         console.log(err)
+      //       })
+      //     }).catch(err=>{
+      //       console.log(err)
+      //     })
+      //   }else{
+      //     Toast("卡号不存在")
+      //   }
          
-      }).catch(() => {
+      // }).catch(() => {
 
-      })
+      // })
     },
     
   },
@@ -123,7 +192,12 @@ export default {
     height: 100%;
     width: 100%;
     color: #000;
-    position: relative;
+    position: fixed;
+    top:0;
+    left:0;
+    width:100%;
+    height:100%;
+    overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
@@ -161,7 +235,8 @@ export default {
     &>.van-button{
         position: absolute;
         bottom: 25px;
-        width: 350px;
+        width: 90%;
+        left:5%;
         height: 50px;
         font-size: 18px;
     }

+ 31 - 68
src/views/home/index.vue

@@ -45,45 +45,45 @@ export default {
     localStorage.removeItem('type');
     localStorage.removeItem('user');
     var url = window.location.href;
-    if(url.indexOf("token") >1){
-      console.log("app进入")
-      // this.getQueryVariable("token") = "0001T11000000001QZAE"
-      // if(this.getQueryVariable("token")){
-      //   axios({//查询信息
-      //     method: 'get',
-      //     url: 'https://smartpark.caih.com/zkxt/api/thirdparty/v1/user/getZkUserByCipher?cipher=' + this.getQueryVariable("token"),
-      //     timeout: 10000,
-      //   }).then(res =>{
-      //     if(res.data?.data?.id){
-      //       axios.get(`/dxtop/staff/one?id=${res.data.data.id}`).then(res2 => { //验证充值信息是否同步
-      //         if(res2.data.data){
-                this.user = "0001T11000000001QZAE"
+    if(url.indexOf("token") > 1){
+      //("app进入")
+      if(this.getQueryVariable("token")){
+        axios({//查询信息
+          method: 'get',
+          url: 'https://smartpark.caih.com/zkxt/api/thirdparty/v1/user/getZkUserByCipher?cipher=' + this.getQueryVariable("token"),
+          timeout: 10000,
+        }).then(res =>{
+
+          if(res.data?.data?.id){
+            axios.get(`/dxtop/staff/one?id=${res.data.data.id}`).then(res2 => { //验证充值信息是否同步
+              if(res2.data.data){
+                this.user = res2.data.data.id
                 localStorage.setItem("user", this.user)
-        //       }else{
-        //         this.userNoAlert()
-        //       }
-        //     })
-        //   }else if(res.data?.data?.cardId){
-        //     Toast("用户卡号未绑定")
-        //   }else{
-        //     this.userNoAlert()
-        //   }
-        // }).catch(err =>{
-        //   this.userNoAlert()
-        // });
-      // }else{
-      //   console.log("app进入")
-      //   Toast(this.getQueryVariable("无token传入!"))
-      // }
+              }else{
+                this.userNoAlert()
+              }
+            })
+          }else if(res.data?.data?.cardId){
+            Toast("用户卡号未绑定")
+          }else{
+            this.userNoAlert()
+          }
+        }).catch(err =>{
+          this.userNoAlert()
+        });
+      }else{
+        //console.log("app进入")
+        Toast(this.getQueryVariable("无token传入!"))
+      }
     }else if(this.getQueryVariable("type")){
-      console.log("扫码游客进入")
+      //console.log("扫码游客进入")
       localStorage.removeItem('type');
       localStorage.removeItem('user');
       localStorage.setItem("type",this.type)
     }else{
       localStorage.removeItem('user');
       localStorage.removeItem('type');
-      console.log("无user、type进入")
+      //console.log("无user、type进入")
     }
   },
   mounted() {
@@ -92,42 +92,6 @@ export default {
     userNoAlert(){
       Toast("当前账户初始流程中,请耐心等待或联系管理人员查询")
     },
-    cardBalance(){ //余额
-      axios.get(`/dxtop/staff/one?id=${localStorage.getItem("user")}`).then(res => {
-        axios.get(`/dxtop/staff/cardBalance`,{params:{"card":res.data.data.cardId}}).then(res2 => { //res.data.data.cardId
-          let msgFlag =undefined
-          axios.get(`/dxtop/msglog/one`,{params:{"id":res2.data.msg}}).then(res3 => {//res.msg
-              msgFlag = res3.data.data.msgFlag
-              let num = 0
-              var time = function (){
-                axios.get(`/dxtop/msglog/one`,{params:{"id":res2.data.msg}}).then(res4 => {//res.msg
-                  if(res4.data.data.msgFlag ==4){
-                    var data = JSON.parse(res4.data.data.consequence)
-                    if(data.code == 1){
-                      localStorage.setItem("balance", Number(data.balance).toFixed(2))
-                      localStorage.setItem("getBalanceTime",getNowTime())
-                      clearInterval(val)
-                    }
-                  }
-                })
-                num+=2
-                console.log("余额加载秒数",num)
-                if(num>14){
-                  clearInterval(val)
-                }
-              }
-              var val = setInterval(time,2000)
-          }).catch(err=>{
-            console.log(err)
-          })
-          
-        }).catch(err=>{
-          console.log(err)
-        }) 
-      }).catch(() => {
-        Toast("用户未录入充值系统")
-      })
-    },
     getQueryVariable(variable){//参数获取
       //window.location.search.substring(1);
       var query = window.location.hash.substring(3);
@@ -137,7 +101,6 @@ export default {
         if(pair[0] == variable){
           if(variable =="token"){
             this.user = pair[1]
-            // this.user = {"userId":1,"userName":"2","userPhone":"3"}
           }else if(variable =="type"){
             this.type = pair[1]
           }

+ 18 - 18
src/views/recharge/index.vue

@@ -140,15 +140,15 @@ export default {
     },
     async pay(money, topPayType, payType, channelId,userId) {
       if(userId){
-        console.log("返回支付宝app支付链接")
+        //("返回支付宝app支付链接")
         axios.get("dxtop/staff/one",{
           params:{
             id:localStorage.getItem("user")
           }
         }).then(res =>{
-          console.log(res)
+          //console.log(res)
           if(res.data?.data?.sid){
-            console.log(res.data.data.sid)
+            //console.log(res.data.data.sid)
             axios.post('/dxtop/order/callUnifiedPay', {
               "money": money,
               "topPayType": topPayType,
@@ -157,7 +157,7 @@ export default {
               "userId": res.data.data.sid
             }).then(res2 => {
               this.loading = false;
-              console.log(res2)
+              //console.log(res2)
               if(res2.data.code == 500){
                 Toast(res2.data.msg)
               }else{
@@ -172,7 +172,7 @@ export default {
         })
         
       } else if(localStorage.getItem("type")){//返回支付宝微信支付连接
-        console.log("返回支付宝微信支付链接 用于扫码url进入 带渠道参数")
+        //console.log("返回支付宝微信支付链接 用于扫码url进入 带渠道参数")
         axios.post('/dxtop/order/topScanPayApi', {
             "money": money,
             "topPayType": topPayType,
@@ -188,7 +188,7 @@ export default {
         }).catch(() => {
         })
       }else{//返回支付宝微信支付连接
-        console.log("返回支付宝微信支付链接 用于url进入 不带渠道参数")
+       // console.log("返回支付宝微信支付链接 用于url进入 不带渠道参数")
         axios.post('/dxtop/order/topScanPayApi', {
             "money": money,
             "topPayType": topPayType,
@@ -227,21 +227,21 @@ export default {
       if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {
         if(this.channelId){//游客支付,A01/W06 不用传
           if (url.app === "alipayqr") {
-            console.log("苹果游客支付宝url")
+            //console.log("苹果游客支付宝url")
             this.pay(this.money, "A01", "3", this.channelId);
           }else if(url.app === "weixin://scanqrcode"){
-            console.log("苹果游客微信支付url")
+            //console.log("苹果游客微信支付url")
             this.pay(this.money, "W06", "2", this.channelId);
           }else{
           }
         }else if(localStorage.getItem("user")){ //app微信支付
           if (url.app === "alipayqr") {
             this.loading = true;
-            console.log("苹果app支付宝")
+            //console.log("苹果app支付宝")
             this.pay(this.money, "A01", "3", "", localStorage.getItem("user"))
           }else if(url.app === "weixin://scanqrcode"){
             this.loading = true;
-            console.log("苹果app微信小程序")
+            //console.log("苹果app微信小程序")
             this.weixin()
           }else{
 
@@ -249,9 +249,9 @@ export default {
         }else{
           if (url.app === "alipayqr") {
             this.pay(this.money, "A01", "3", '');
-            console.log("苹果游客支付宝url")
+            //console.log("苹果游客支付宝url")
           }else if(url.app === "weixin://scanqrcode"){
-            console.log("苹果游客微信支付url")
+            //console.log("苹果游客微信支付url")
             this.pay(this.money, "W06", "2", '');
           }else{
 
@@ -280,29 +280,29 @@ export default {
       } else if (navigator.userAgent.match(/android/i)) {
         if(this.channelId){
           if (url.app === "alipayqr") {
-            console.log("安卓游客支付宝url")
+            //console.log("安卓游客支付宝url")
             this.pay(this.money, "A01", "3", this.channelId);
           }else if(url.app === "weixin://scanqrcode"){
-             console.log("安卓游客微信支付url")
+            // console.log("安卓游客微信支付url")
              this.pay(this.money, "W06", "2", this.channelId);
           }else{
           }
         }else if(localStorage.getItem("user")){
           if (url.app === "alipayqr") {
-            console.log("苹果app支付宝")
+            //console.log("苹果app支付宝")
             this.pay(this.money, "A01", "3", "",localStorage.getItem("user"));
             this.loading = false;
           }else if(url.app === "weixin://scanqrcode"){
-            console.log("安卓app微信小程序")
+            //console.log("安卓app微信小程序")
             this.weixin()
           }else{
           }
         }else{
           if (url.app === "alipayqr") {
             this.pay(this.money, "A01", "3", 56);
-            console.log("苹果游客支付宝url")
+            //console.log("苹果游客支付宝url")
           }else if(url.app === "weixin://scanqrcode"){
-            console.log("苹果游客微信支付url")
+            //console.log("苹果游客微信支付url")
             this.pay(this.money, "W06", "2", 56);
           }else{
 

+ 6 - 1
src/views/record/index.vue

@@ -33,7 +33,7 @@
                 <van-row class="jlTime">时间:{{ item.createTime }}</van-row>
                 <van-row class="jlBalance">余额:{{ item.balance }} 元</van-row>
               </van-col>
-              <van-col span="6" class="jlMoney just">+{{ item.amt }}元</van-col>
+              <van-col span="6" class="jlMoney just">{{ item.amt }}元</van-col>
             </van-row>
           </van-list>
         <!-- </van-pull-refresh> -->
@@ -161,6 +161,11 @@ export default {
         if (res?.data?.data?.records.length > 0) {
           let data = res.data.data.records
           for(let i =0;i<data.length;i++){
+            if(data[i].type == "31") {//减帐
+              data[i].amt = "- " + data[i].amt
+            }else{
+              data[i].amt = "+ " + data[i].amt
+            }
             this.recharge.push(data[i])
           }
           this.page1 ++

+ 2 - 3
vue.config.js

@@ -20,9 +20,8 @@ module.exports = {
         proxy: {
             // 配置多个跨域
             '/': {
-                //target: 'https://smartpark.caih.com/dxapi/', //东信
-                //target: 'https://qhome.usky.cn/dxapi/', //75
-                target: 'http://172.16.120.104:8085/', //本地
+                target: 'https://smartpark.caih.com/dxapi/', //东信
+                //target: 'http://172.16.120.104:8085/', //本地
                 changeOrigin: false,
                 pathRewrite: {
                     '': '/'

+ 1 - 1
vuepay/index.html

@@ -1 +1 @@
-<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><meta name="format-detection" content="telephone=yes"><link rel="icon" href="/vuepay/favicon.ico"><script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script><title></title><script></script><link href="/vuepay/static/css/about.b1fd43c9.css" rel="prefetch"><link href="/vuepay/static/js/about.b3eba306.js" rel="prefetch"><link href="/vuepay/static/css/app.c691c8f1.css" rel="preload" as="style"><link href="/vuepay/static/css/chunk-vendors.9e9d9b26.css" rel="preload" as="style"><link href="/vuepay/static/js/app.01a28ea9.js" rel="preload" as="script"><link href="/vuepay/static/js/chunk-vendors.635a522f.js" rel="preload" as="script"><link href="/vuepay/static/css/chunk-vendors.9e9d9b26.css" rel="stylesheet"><link href="/vuepay/static/css/app.c691c8f1.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="/vuepay/static/js/chunk-vendors.635a522f.js"></script><script src="/vuepay/static/js/app.01a28ea9.js"></script></body></html>
+<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><meta name="format-detection" content="telephone=yes"><link rel="icon" href="/vuepay/favicon.ico"><script src="https://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script><title></title><script></script><link href="/vuepay/static/css/about.f3f8a25c.css" rel="prefetch"><link href="/vuepay/static/js/about.5997d690.js" rel="prefetch"><link href="/vuepay/static/css/app.c691c8f1.css" rel="preload" as="style"><link href="/vuepay/static/css/chunk-vendors.9e9d9b26.css" rel="preload" as="style"><link href="/vuepay/static/js/app.423afce6.js" rel="preload" as="script"><link href="/vuepay/static/js/chunk-vendors.635a522f.js" rel="preload" as="script"><link href="/vuepay/static/css/chunk-vendors.9e9d9b26.css" rel="stylesheet"><link href="/vuepay/static/css/app.c691c8f1.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="/vuepay/static/js/chunk-vendors.635a522f.js"></script><script src="/vuepay/static/js/app.423afce6.js"></script></body></html>

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
vuepay/static/css/about.b1fd43c9.css


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
vuepay/static/css/about.f3f8a25c.css


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
vuepay/static/js/about.5997d690.js


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
vuepay/static/js/about.b3eba306.js


Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
vuepay/static/js/app.423afce6.js


Daži faili netika attēloti, jo izmaiņu fails ir pārāk liels