1
This commit is contained in:
parent
c23969ee2f
commit
8c7965638e
@ -246,6 +246,7 @@ export default {
|
|||||||
console.log(res);
|
console.log(res);
|
||||||
//拿到充值有礼订单 TODO 对接支付
|
//拿到充值有礼订单 TODO 对接支付
|
||||||
this.orderInfo = res.data
|
this.orderInfo = res.data
|
||||||
|
this.goPay(this.orderInfo)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
12
pages.json
12
pages.json
@ -3,12 +3,12 @@
|
|||||||
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
|
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
|
||||||
},
|
},
|
||||||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||||||
// // {
|
{
|
||||||
// // "path": "pages/index/index",
|
"path": "pages/index/index",
|
||||||
// // "style": {
|
"style": {
|
||||||
// // "navigationBarTitleText": "uni-app"
|
"navigationBarTitleText": "uni-app"
|
||||||
// // }
|
}
|
||||||
// // },
|
},
|
||||||
{
|
{
|
||||||
"path": "pages/login/login",
|
"path": "pages/login/login",
|
||||||
"style": {
|
"style": {
|
||||||
|
@ -5,25 +5,20 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {getToken} from "@/utils/auth";
|
import {
|
||||||
|
getToken
|
||||||
|
} from "@/utils/auth";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
if (getToken()) {
|
uni.reLaunch({
|
||||||
uni.reLaunch({
|
url: '/pages-home/home/home'
|
||||||
url: '/pages-home/home/home'
|
})
|
||||||
})
|
|
||||||
} else {
|
|
||||||
uni.reLaunch({
|
|
||||||
url: '/pages/login/login'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
@ -33,4 +28,4 @@
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
</style>
|
</style>
|
Loading…
Reference in New Issue
Block a user