| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- <template>
- <view class="content">
- <view class="top-bg">
- <image src="../../static/img/yuyue-top.jpg" mode="widthFix"></image>
- </view>
- <!-- <view class="changci-top flex">
- <view class="djs-wrap flex">
- 倒计时:
- <uni-countdown
- color="#C6914E"
- background-color="#F6EFDF"
- :show-day="false"
- :day="0"
- :hour="0"
- :minute="0"
- :second="0"
- ></uni-countdown>
- </view>
- <view class="user-info">
- <view class="" style="text-align: right;">
- 消费账户:{{userInfo.now_money*1 || '0'}}
- </view>
- <view class="" style="text-align: right;">
- 广告值: {{userInfo.aid_val*1 || '0'}}
- </view>
- </view>
- </view> -->
- <view class="" v-for="item in area">
- <view class="good-tit flex">
- <view class="tit-left flex">
- <image src="../../static/icon/red-tit.png" mode=""></image>{{item.name}}
- </view>
- <view class="tit-right">
- 挂售金额:{{item.low}} ~ {{ item.high }}
- </view>
- </view>
- <view class="good-list flex" @click="(status==2 ||status==0) ?goumai(item): opentc()">
- <image src="../../static/icon/red-gift.png" mode="widthFix" v-for="itemg in 35"></image>
- </view>
- </view>
- <uni-popup ref="popupyyok" type="center">
- <view class="popupyyok-wrap">
- <image :src="good.image" mode="" @click.stop="goDetail()"></image>
- <view class="clamp2" style="padding: 20rpx 80rpx;color: #999999;font-size: 26rpx;">
- {{good.name}}
- </view>
- <view class="" style="font-size: 35rpx;font-weight: bold;color: #333333;">
- {{good.actual_price}}
- </view>
- <view class="btn" @click.stop="(good.status == 1 || good.status == 0) ?zhifu(): goDetail()">
- {{(good.status == 1 ||good.status == 0) ? '立即支付':'查看详情'}}
- </view>
- </view>
- </uni-popup>
- <uni-popup ref="uppass" type="center">
- <view class="psw-wrapper">
- <view class="psw-title">请输入支付密码</view>
- <view class="psw-content">购买需支付消费积分</view>
- <view class="psw-price">
- {{good.actual_price}}
- </view>
- <view class="psw-jg"></view>
- <view class="psw-paytype flex">
- <view class="">
- 支付方式
- </view>
- <view class="">
- 消费积分
- </view>
- </view>
- <input type="password" v-model="password" class="psw-ipt"/>
- <view class="psw-btn">
- <text @click="cancel">取消</text>
- <text class="psw-qd" @click="pswQd">确定</text>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- import {
- section,
- purchase,
- zfpay,
- see_order
- } from '@/api/index.js'
- import uniCountdown from '@/components/uni-countdown/uni-countdown.vue';
- import {
- mapState,
- mapMutations
- } from 'vuex';
- export default {
- components: {
- uniCountdown
- },
- data() {
- return {
- ccid: '',
- area: [],
- good: {},
- status: 2, //1购买了商品2未购买商品
- password: ''//交易密码
- }
- },
- computed: {
- ...mapState('user', ['userInfo'])
- },
- onLoad(opt) {
- this.ccid = opt.id
- this.see_order()
- this.section()
- },
- methods: {
- see_order() {
- let obj = this
- see_order({
- id: obj.ccid
- }).then(res => {
- console.log(res.data.status)
- obj.status = res.data.status
- if (res.data.status == 1) {
- obj.good = res.data.order
- obj.$refs.popupyyok.open()
- }
- })
- },
- section() {
- let obj = this
- section({
- id: obj.ccid
- }).then(res => {
- console.log(res)
- obj.area = res.data
- })
- },
- goumai(item) {
- let obj = this
- purchase({
- id: obj.ccid,
- s_id: item.id
- }).then(res => {
- console.log(res)
- obj.good = res.data
- obj.good.status = 1
- obj.$refs.popupyyok.open()
- })
- },
- zhifu() {
- let obj = this
- // zfpay({
- // order_id: obj.good.order_id
- // }).then(res => {
- // obj.$api.msg('支付成功')
- // obj.$refs.popupyyok.close()
- // })
- obj.$refs.popupyyok.close()
- obj.$refs.uppass.open()
- },
- opentc() {
- let obj = this
- obj.$refs.popupyyok.open()
- },
- goDetail() {
- console.log(this.good)
- uni.navigateTo({
- url: '/pages/product/showpro?id=' + this.good.product_id
- })
- },
- cancel() {
- let obj = this
- obj.$refs.uppass.close()
- },
- pswQd() {
- let obj = this
- zfpay({
- order_id: obj.good.order_id,
- pas: obj.password
- }).then(res => {
- obj.$api.msg('支付成功')
- obj.$refs.uppass.close()
- })
-
- },
- tishi() {
- return this.$api.msg('当前商品已售罄')
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .changci-top {
- background-color: #fff;
- padding: 0 25rpx;
- height: 100rpx;
- .djs-wrap {
- padding-left: 25rpx;
- }
- }
- .good-tit {
- // margin-top: 20rpx;
- background-color: #fff;
- padding: 20rpx;
- .tit-left {
- flex-shrink: 0;
- image {
- height: 36rpx;
- width: 36rpx;
- border-radius: 50%;
- margin-right: 10rpx;
- }
- }
- .tit-right {
- text-align: right;
- }
- }
- .good-list {
- flex-wrap: wrap;
- background-color: #fff;
- padding: 20rpx;
- // justify-content: flex-start;
- image {
- width: 80rpx;
- margin-left: 15rpx;
- }
- }
- .popupyyok-wrap {
- height: 707rpx;
- width: 551rpx;
- background-color: #fff;
- border-radius: 20rpx;
- text-align: center;
- // position: relative;
- image {
- width: 100%;
- height: 429rpx;
- border-radius: 20rpx 20rpx 0 0;
- }
- .btn {
- position: absolute;
- bottom: 10rpx;
- left: 0;
- right: 0;
- margin: auto;
- width: 295rpx;
- line-height: 69rpx;
- border-radius: 34rpx;
- background: #303030;
- color: #F8DABA;
- font-size: 35rpx;
- color: #F8DABA;
- }
- }
- .top-bg {
- width: 750rpx;
- margin-bottom: 20rpx;
- image {
- width: 100%;
- }
- }
- .uppass-wrap {
- width: 600rpx;
- height: 300rpx;
- background-color: #fff;
- border-radius: 20rpx;
- .up-tit {
- line-height: 100rpx;
- font-size: 32rpx;
- font-weight: bold;
- text-align: center;
- }
- .up-ipt {
- border: 1px solid #000000;
- display: block;
- width: 400rpx;
- background-color: #bfa;
- height: 100rpx;
- line-height: 100rpx;
- font-size: 28rpx;
- margin: auto;
- margin-top: 20rpx;
- }
- }
- .psw-wrapper {
- width: 548rpx;
- height: 548rpx;
- background-color: #FFFFFF;
- border-radius: 15rpx 15rpx;
- .psw-title {
- width: 100%;
- font-size: 35rpx;
- padding: 43rpx 0 40rpx;
- text-align: center;
- font-weight: 800;
- }
- .psw-content {
- width: 100%;
- font-size: 32rpx;
- text-align: center;
- }
- .psw-price {
- font-weight: bold;
- font-size: 68rpx;
- text-align: center;
- padding-top: 10rpx;
- }
- .psw-jg {
- height: 1px;
- width: 500rpx;
- background-color: #eee;
- margin: auto;
- }
- .psw-paytype {
- justify-content: space-between;
- padding: 10rpx 25rpx 30rpx;
- font-size: 26rpx;
- }
- .psw-ipt {
- display: block;
- background-color: #dce3ed;
- height: 90rpx;
- width: 464rpx;
- padding-left: 30rpx;
- margin: 0 auto;
- font-size: 80rpx;
- }
- .psw-btn text{
- display: inline-block;
- text-align: center;
- width: 50%;
- padding-top: 29rpx;
- font-size: 35rpx;
- }
- .psw-qd {
- color:#5771DF;
- }
- }
- </style>
|