1
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
<view class="padding-xl ">
|
<view class="padding-xl ">
|
||||||
<view class="image login-bg">
|
<view class="image login-bg">
|
||||||
<image :src="otherImgURL+'logo@ZP.png'" mode="widthFix"></image>
|
<image :src="otherImgURL+'logo@ZP.png'" mode="widthFix"></image>
|
||||||
<view class="text-bold text-lg padding-top">
|
<view class=" xxx text-bold text-lg padding-top">
|
||||||
一路油你 中品加油
|
一路油你 中品加油
|
||||||
</view>
|
</view>
|
||||||
<view class="text-df text-grey padding-top-xs padding-bottom">
|
<view class="text-df text-grey padding-top-xs padding-bottom">
|
||||||
@@ -20,7 +20,6 @@
|
|||||||
<scroll-view class="bg-white nav padding login-shadow">
|
<scroll-view class="bg-white nav padding login-shadow">
|
||||||
<view class="flex text-center padding-bottom">
|
<view class="flex text-center padding-bottom">
|
||||||
<view class="cu-item text-bold text-lg flex-sub">
|
<view class="cu-item text-bold text-lg flex-sub">
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="cu-item text-bold text-lg flex-sub "
|
<!-- <view class="cu-item text-bold text-lg flex-sub "
|
||||||
:class="[1==TabCur?'text-red cur':'',(animation=='animation-fades'&&1==TabCur)?'animation-fade':'']"
|
:class="[1==TabCur?'text-red cur':'',(animation=='animation-fades'&&1==TabCur)?'animation-fade':'']"
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
:style="'background-image: url('+imgURL+'login-bg-top.png);height: 480upx;'">
|
:style="'background-image: url('+imgURL+'login-bg-top.png);height: 480upx;'">
|
||||||
<view class="padding-xl ">
|
<view class="padding-xl ">
|
||||||
<view class="image login-bg">
|
<view class="image login-bg">
|
||||||
<image :src="imgURL+'new-logo.png'" mode="widthFix"></image>
|
<image :src="otherImgURL+'logo@ZP.png'" mode="widthFix"></image>
|
||||||
<view class="text-bold text-lg padding-top">
|
<view class="text-bold text-lg padding-top">
|
||||||
一路油你 中品加油
|
一路油你 中品加油
|
||||||
</view>
|
</view>
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
<view class="cu-item text-bold text-lg flex-sub">
|
<view class="cu-item text-bold text-lg flex-sub">
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<view class="cu-item text-red cur text-bold text-lg flex-sub ">
|
<view class="cu-item text-blues cur text-bold text-lg flex-sub ">
|
||||||
个人账号
|
个人账号
|
||||||
</view>
|
</view>
|
||||||
<view class="cu-item text-bold text-lg flex-sub">
|
<view class="cu-item text-bold text-lg flex-sub">
|
||||||
@@ -93,6 +93,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
otherImgURL: this.global.otherImgURL,
|
||||||
tips: '发送验证码',
|
tips: '发送验证码',
|
||||||
accuntSource: false,
|
accuntSource: false,
|
||||||
imgURL: this.global.imgURL,
|
imgURL: this.global.imgURL,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view>
|
<view>
|
||||||
<cu-custom class="main-totextbar bg-main-oil" :isBack="true" bgColor="bg-main-oil">
|
<cu-custom class="main-totextbar bg-main-oil" :isBack="true" bgColor="bg-main-oil">
|
||||||
<block slot="backText">返回</block>
|
<block @click='clearInterval(timeinterval)' slot="backText">返回</block>
|
||||||
<block slot="content">订单支付结果</block>
|
<block slot="content">订单支付结果</block>
|
||||||
</cu-custom>
|
</cu-custom>
|
||||||
<view :class="showQr ? 'bg-blue' :''" >
|
<view :class="showQr ? 'bg-blue' :''" >
|
||||||
@@ -315,7 +315,7 @@
|
|||||||
},1000) //设置定时器,时时间每隔一秒钟走一次(即每秒)
|
},1000) //设置定时器,时时间每隔一秒钟走一次(即每秒)
|
||||||
setTimeout(()=>{
|
setTimeout(()=>{
|
||||||
this.newQrString()
|
this.newQrString()
|
||||||
},5000)
|
},2000)
|
||||||
|
|
||||||
if(option.payMethod == '1' && option.status == 'success'){
|
if(option.payMethod == '1' && option.status == 'success'){
|
||||||
if(option.status == 'success') {
|
if(option.status == 'success') {
|
||||||
@@ -399,12 +399,15 @@
|
|||||||
,
|
,
|
||||||
onHide() {
|
onHide() {
|
||||||
console.log('这里是hiden')
|
console.log('这里是hiden')
|
||||||
this.innerAudioContext.stop()
|
this.innerAudioContext.stop();
|
||||||
|
clearInterval(this.timeinterval);
|
||||||
|
this.timeinterval =null
|
||||||
},
|
},
|
||||||
onUnload() {
|
onUnload() {
|
||||||
console.log('这里是卸载页面')
|
console.log('这里是卸载页面')
|
||||||
this.innerAudioContext.stop();
|
this.innerAudioContext.stop();
|
||||||
if(this.timeinterval)clearInterval(this.timeinterval);
|
clearInterval(this.timeinterval);
|
||||||
|
this.timeinterval = null
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
<text class="cuIcon-close text-red"></text>
|
<text class="cuIcon-close text-red"></text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<img src="" alt="">
|
||||||
<view class="padding-xl bg-white">
|
<view class="padding-xl bg-white">
|
||||||
<view class="" v-if="siteList.length>0">
|
<view class="" v-if="siteList.length>0">
|
||||||
<three-item v-for="(item,index) in siteList" :key="item.id" :site-item="item" :first="index==0"
|
<three-item v-for="(item,index) in siteList" :key="item.id" :site-item="item" :first="index==0"
|
||||||
|
|||||||
@@ -2,12 +2,12 @@ import axios from 'axios'
|
|||||||
import utils from '@/utils/encode'
|
import utils from '@/utils/encode'
|
||||||
|
|
||||||
// const env = process.env.NODE_ENV
|
// const env = process.env.NODE_ENV
|
||||||
// const env = 'production'/* */
|
const env = 'production'/* */
|
||||||
const env = 'test'
|
// const env = 'test'
|
||||||
const testUrl = 'http://192.168.0.20:38080'
|
const testUrl = 'http://192.168.0.26:38080'
|
||||||
// const productUrl = 'http://121.196.213.68/adminapi' //预生产
|
// const productUrl = 'http://121.196.213.68/adminapi' //预生产
|
||||||
|
|
||||||
const productUrl = 'https://www.xingoil.com/adminapi' // 生产,加密 new
|
const productUrl = 'http://119.177.60.118:8000/adminapi' // 生产,加密 new
|
||||||
// const productUrl = 'http://uat.xingoil.com/adminapi' // 生产,加密 new
|
// const productUrl = 'http://uat.xingoil.com/adminapi' // 生产,加密 new
|
||||||
const service = axios.create({
|
const service = axios.create({
|
||||||
baseURL: env == 'production' ? productUrl : testUrl,
|
baseURL: env == 'production' ? productUrl : testUrl,
|
||||||
|
|||||||
Reference in New Issue
Block a user