Browse Source

新增订单支付状态页面/联系过的人页面优化

master
石可 5 years ago
parent
commit
5e96ad03f1
  1. 6
      pages.json
  2. 2
      pages/my/index.vue
  3. 49
      pages/payState/paystate.vue
  4. 17
      pages/wallMember/contactedMember.vue

6
pages.json

@ -30,6 +30,12 @@
"navigationBarTitleText": "会员注册-基本信息"
}
},
{
"path": "pages/payState/paystate",
"style": {
"navigationBarTitleText": "支付结果"
}
},
{
"path": "pages/register/perfectInfo",
"style": {

2
pages/my/index.vue

@ -60,7 +60,7 @@
</view>
<view class="adv-content">
<view class="lf-color-222 lf-font-32 lf-m-b-15">
专属服务定制
点击获取红线
</view>
<view class="lf-color-777">促成您和心仪对象线下见面 <u-icon class="lf-m-l-20" name="arrow-right"></u-icon></view>
</view>

49
pages/payState/paystate.vue

@ -0,0 +1,49 @@
<template>
<view>
<view v-if="ifpaySuccess==1" class="lf-flex lf-flex-column lf-row-round" style="margin-top: 100px;">
<view>
<image src="@/static/logo.png" mode="widthFix" style="height: 100px;width: 100px;"></image>
</view>
<view class="lf-m-t-40 lf-font-bold lf-font-42 lf-color-primary">订单支付成功</view>
</view>
<view v-else class="lf-flex lf-flex-column lf-row-round" style="margin-top: 100px;">
<view>
<image src="@/static/logo.png" mode="widthFix" style="height: 100px;width: 100px;"></image>
</view>
<view class="lf-m-t-40 lf-font-bold lf-color-black lf-font-42 lf-color-333">订单支付失败</view>
</view>
<view class="margin-self flex flex-direction justify-around">
<view class="lf-p-r-32 lf-p-l-32 lf-m-t-40">
<button class="cu-btn lf-bg-white" style="border: 1px solid #E21196;" @tap="$url('/pages/index/index',{type: 'switch'})">
<text class="lf-font-32 lf-color-primary">返回首页</text>
</button>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
ifpaySuccess: -1
}
},
onLoad(e) {
this.ifpaySuccess = e.ifSuccess
}
}
</script>
<style scoped>
.margin-self {
margin-top: 100rpx;
}
.cu-btn {
border-radius: 10rpx;
background-color: #E21196;
height: 82rpx;
line-height: 82rpx;
text-align: center;
}
</style>

17
pages/wallMember/contactedMember.vue

@ -1,5 +1,6 @@
<template>
<view>
<view class="lf-color-222 lf-font-32 authen-title lf-p-l-20 lf-m-l-30">信息资料</view>
<view class="content">
<view class="card" v-for="item in 7" :key="item">
<lf-image class="cover" src="../../static/logo.png"></lf-image>
@ -35,6 +36,22 @@
</script>
<style lang="scss" scoped="scoped">
.authen-title {
position: relative;
font-size: 32rpx;
color: #131315;
font-weight: 500;
}
.authen-title::after {
content: '';
position: absolute;
left: 0;
top: 8rpx;
width: 8rpx;
height: 30rpx;
background: #E21196;
border-radius: 4rpx;
}
.content{
display: flex;
flex-wrap: wrap;

Loading…
Cancel
Save