PayPopup.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <div class="p-container flex-end">
  3. <div class="popup flex-center">
  4. <img :src="`${assetsUrl}popup-close-white.png`" mode="aspectFill" class="close" @click="close"></img>
  5. <div class="top flex-start">
  6. <img :src="`${assetsUrl}popup-vip.png`" mode="aspectFill" class="top-icon"></img>
  7. <div class="top-text font40 fw600">
  8. 4项特权
  9. </div>
  10. </div>
  11. <van-swipe :show-indicators="false" indicator-active-color="#ffffff" :autoplay="3000" class="swiper">
  12. <van-swipe-item v-for="(item,index) in privileges" :key="index">
  13. <div class="swiper-item flex-center">
  14. <div class="si-content">
  15. <img :src="`${assetsUrl}${item.img}.png`" mode="aspectFill" class="si-img"></img>
  16. <div class="si-title font36 fw600">
  17. {{item.title}}
  18. </div>
  19. <div class="si-text font28 fw400">
  20. {{item.text}}
  21. </div>
  22. </div>
  23. </div>
  24. </van-swipe-item>
  25. </van-swipe>
  26. <div class="tabs flex-start">
  27. <div class="tab" :class="tabIndex===index?'active-tab':'no-active'" v-for="(item,index) in priceDatas.prices2" :key="index" @click="tabClick(index)">
  28. <div class="tab-time font28 fw600" :style="{'color':`${tabIndex===index?'#FFDDBD':''}`}">
  29. {{item.name}}
  30. </div>
  31. <div class="tab-price" :style="{'color':`${tabIndex===index?'#FFDDBD':''}`}">
  32. <span style="font-size: 72rpx;" >{{item.priceFenPerMonth/100}}</span><span class="font22 fw500">元/月</span>
  33. </div>
  34. <div class="tab-under font24 fw400" :style="{'color':`${tabIndex===index?'#FFDDBD':''}`}">
  35. {{item.originalPriceFenPerMonth/100}}元/月
  36. </div>
  37. <div class="tab-tag font20 fw600" v-if="tabIndex===index">
  38. {{item.tags}}
  39. </div>
  40. </div>
  41. </div>
  42. <div class="btn font32 fw600" @click="toPay">
  43. 立即解锁
  44. </div>
  45. <div class="tip font22 fw400">
  46. 成为会员即代表同意<span style="color:#ffffff;" class="font24">《增值服务协议》</span>
  47. ,如果支付成功,但是没有开通VIP,请<span style="color:#ffffff" class="font24">联系客服</span>。
  48. </div>
  49. </div>
  50. </div>
  51. </template>
  52. <script>
  53. import {assetsUrl} from '../../util/index.js'
  54. export default {
  55. name:"VipPopup",
  56. props:{
  57. swiperIndex:{
  58. type:Number,
  59. default:''
  60. }
  61. },
  62. data() {
  63. return {
  64. assetsUrl,
  65. privileges:[
  66. {img:'popup-talk',title:'随心畅聊',text:'10次/天主动私聊女生'},
  67. {img:'popup-recommend',title:'特别推荐',text:'尊贵标识,优先推荐'},
  68. {img:'popup-limit',title:'颜遇无限',text:'无限次数查看女士主页和相册'},
  69. {img:'popup-visitor',title:'查看访客',text:'解锁女生来访痕迹'},
  70. ],
  71. privilegeIndex:0,
  72. tabIndex:0,
  73. priceDatas:{},
  74. totalPrice:0,
  75. priceConfig:{
  76. feeFen: null,
  77. sceneId: null,
  78. scene: null,
  79. body : null,
  80. userId: null,
  81. pkgCate:'JyPark'
  82. },
  83. };
  84. },
  85. watch:{
  86. 'swiperIndex':function(val,oldval){
  87. console.log(val)
  88. this.privilegeIndex=val;
  89. }
  90. },
  91. computed:{
  92. platForm(){
  93. return this.$store.state.platform
  94. }
  95. },
  96. mounted() {
  97. this.getConfigData();
  98. },
  99. methods:{
  100. close(){
  101. this.$emit('closePopup');
  102. },
  103. getConfigData(){
  104. let user=JSON.parse(localStorage.getItem('user'));
  105. this.$api.public.priceBySceneConfigs({
  106. completeUser:user,
  107. scene:'Member'
  108. }).then(res=>{
  109. this.priceDatas=res.data;
  110. this.totalPrice=this.priceDatas.prices2[this.tabIndex].priceFen;
  111. this.priceConfig.feeFen=this.priceDatas.prices2[this.tabIndex].priceFen;
  112. this.priceConfig.scene=this.priceDatas.prices2[this.tabIndex].sceneCate;
  113. this.priceConfig.sceneId=this.priceDatas.prices2[this.tabIndex].sceneId;
  114. this.priceConfig.body=this.priceDatas.prices2[this.tabIndex].name;
  115. this.priceConfig.userId=(this.$store.state.userInfo||JSON.parse(localStorage.getItem('userInfo'))).id;
  116. })
  117. },
  118. tabClick(index){
  119. this.tabIndex=index;
  120. this.totalPrice=this.priceDatas.prices2[index].priceFen;
  121. this.priceConfig.feeFen=this.priceDatas.prices2[index].priceFen;
  122. this.priceConfig.scene=this.priceDatas.prices2[index].sceneCate;
  123. this.priceConfig.sceneId=this.priceDatas.prices2[index].sceneId;
  124. this.priceConfig.body=this.priceDatas.prices2[index].name;
  125. this.priceConfig.userId=(this.$store.state.userInfo||JSON.parse(localStorage.getItem('userInfo'))).id;
  126. },
  127. toService(){},
  128. toPay(){
  129. // if(this.platForm==='ios'){
  130. // this.$emit('closePopup');
  131. // uni.openCustomerServiceChat({
  132. // extInfo:{
  133. // url:'https://work.weixin.qq.com/kfid/kfca1b21d2f7e8a18e9',//客服链接
  134. // },
  135. // corpId:'wwa8f2a0d8a6dc0950',//企业ID
  136. // fail(res){
  137. // console.log(res)
  138. // wx.showToast({
  139. // title: '客服联系失败',
  140. // icon:'none'
  141. // })
  142. // }
  143. // })
  144. // return;
  145. // }
  146. // uni.getProvider({
  147. // service:'payment',
  148. // success:(provider)=>{
  149. // console.log(provider.provider)
  150. // this.$api.pay.creatWxOrder(this.priceConfig).then(res=>{
  151. // if(res.data.succ){
  152. // uni.requestPayment({
  153. // provider:provider.provider[0],
  154. // timeStamp: String(res.data.timeStamp),
  155. // nonceStr: res.data.nonceStr,
  156. // package: `prepay_id=${res.data.wxUniPrePayId}`,
  157. // signType: 'MD5',
  158. // paySign: res.data.paySign,
  159. // success:(result)=>{
  160. // console.log(result)
  161. // if(result.errMsg==='requestPayment:ok'){
  162. // uni.showToast({
  163. // icon:'success',
  164. // title:'支付成功'
  165. // })
  166. // this.$emit('closePopup');
  167. // }
  168. // },
  169. // fail:(err)=>{console.log(err)}
  170. // })
  171. // }
  172. // })
  173. // }
  174. // })
  175. }
  176. }
  177. }
  178. </script>
  179. <style lang="scss" scoped>
  180. @import "../../public.scss";
  181. .p-container{
  182. flex-direction: column;
  183. position: relative;
  184. z-index: 999;
  185. background-color: $bgcolor1;
  186. .popup{
  187. width: 100vw;
  188. background-color: #6C52F4;
  189. position: relative;
  190. flex-direction: column;
  191. border-radius: 20px 20px 0px 0px;
  192. .close{
  193. position: absolute;
  194. right: 10px;
  195. top:10px;
  196. width: 16px;
  197. height: 16px;
  198. }
  199. .top{
  200. height: 56px;
  201. width: 315px;
  202. padding: 20px 20px 0px 0px;
  203. box-sizing: border-box;
  204. .top-icon{
  205. width: 80px;
  206. height: 30px;
  207. }
  208. .top-text{
  209. color: #ffffff;
  210. margin-left: 4px;
  211. }
  212. }
  213. .swiper{
  214. width: 100%;
  215. height: 215px;
  216. .swiper-item{
  217. width: 100%;
  218. flex-direction: column;
  219. .si-img{
  220. width: 315px;
  221. height: 128px;
  222. }
  223. .si-title{
  224. color: #ffffff;
  225. text-align: center;
  226. }
  227. .si-text{
  228. color: #ffffff;
  229. text-align: center;
  230. margin-top: 8px;
  231. }
  232. }
  233. }
  234. .tabs{
  235. height: 170px;
  236. width: 100%;
  237. overflow: auto;
  238. white-space:nowrap;
  239. .tab{
  240. position: relative;
  241. margin-right: 6px;
  242. border-radius:20px;
  243. display: inline-block;
  244. transition: all .1s;
  245. overflow: hidden;
  246. &:nth-of-type(1){
  247. margin-left: 16px;
  248. }
  249. &:nth-last-of-type(1){
  250. margin-right: 16px;
  251. }
  252. .tab-time{
  253. color: #79726B;
  254. }
  255. .tab-price{
  256. color: #79726B;
  257. margin-top: 12px;
  258. }
  259. .tab-under{
  260. color: #79726B;
  261. text-decoration: line-through;
  262. margin-top: 12px;
  263. }
  264. .tab-tag{
  265. color: #79726B;
  266. background: #FFDDBD;
  267. border-radius: 0px 20px 0px 8px;
  268. width: 44px;
  269. height: 18px;
  270. line-height: 18px;
  271. text-align: center;
  272. position: absolute;
  273. right: -1px;
  274. top: -1px;
  275. }
  276. }
  277. .no-active{
  278. border: 1rpx solid #79726B;
  279. padding: 20px 12px;
  280. width: 89px;
  281. background-color: #0D0B0A;
  282. }
  283. .active-tab{
  284. padding: 20px 12px;
  285. width: 81px;
  286. border: 2px solid #FFDDBD !important;
  287. background-color: #221F1C !important;
  288. }
  289. }
  290. .btn{
  291. width: 315px;
  292. height: 52px;
  293. background: #FFFFFF;
  294. border-radius: 28px;
  295. color: #6C52F4;
  296. line-height: 52px;
  297. text-align: center;
  298. }
  299. .tip{
  300. margin: 0 16px;
  301. color: #D4D4F1;
  302. line-height: 16px;
  303. padding-bottom: 34px;
  304. margin-top: 8px;
  305. text-align: center;
  306. }
  307. }
  308. }
  309. </style>