123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537 |
- <template>
- <view class="order-confirm">
- <view class="box address hflex acenter jbetween" @click="show_address = true">
- <image src="./static/address.png" mode="aspectFill"></image>
- <view class="address-text" v-if="JSON.stringify(address) == '{}'">收货地址</view>
- <view class="address-box vflex" v-else>
- <text>{{address.province}}{{address.city}}{{address.area}}{{address.address}}</text>
- <text>{{address.name}} {{address.mobile}}</text>
- </view>
- <u-icon name="arrow-right" color="#999999" size="14"></u-icon>
- </view>
- <view class="box good">
- <view class="title">商品</view>
- <view class="hflex good-detail">
- <image :src="detail.image" mode="aspectFill"></image>
- <view class="vflex center jbetween">
- <view class="name text_hide2">{{detail.name}}</view>
- <view class="spec" v-if="detail.spec">{{detail.spec}}</view>
- </view>
- <view class="right vflex aend">
- <view class="price">{{detail.price}}积分</view>
- <view class="num">X{{num}}</view>
- </view>
- </view>
- <view class="cell hflex acenter jbetween">
- <view class="label">优惠券</view>
- <view class="hflex acenter" @click="show_youhui = true">
- <view class="value">{{youhui_active == -1 ? '不使用' : youhui_list[youhui_active].coupon.name}}</view>
- <image src="static/down.png" mode="aspectFill"></image>
- </view>
- </view>
- <view class="cell hflex acenter jbetween" @click="show_vip = true">
- <view class="label">会员等级优惠</view>
- <view class="hflex acenter">
- <view class="value">{{vip_active == -1 ? '不使用' : '使用'}}</view>
- <image src="static/down.png" mode="aspectFill"></image>
- </view>
- </view>
- </view>
- <view class="box">
- <view class="hflex acenter jbetween cell">
- <view class="label">运费</view>
- <view class="value">包邮</view>
- </view>
- <view class="hflex acenter jbetween cell">
- <view class="label">订单总积分</view>
- <view class="value">{{detail.price * num }}</view>
- </view>
- <view class="hflex acenter jbetween cell">
- <view class="label">优惠积分</view>
- <view class="value">{{youhui}}</view>
- </view>
- <view class="hflex acenter jbetween cell">
- <view class="label">实付积分</view>
- <view class="value">{{total}}</view>
- </view>
- <view class="hflex acenter jbetween cell">
- <view class="label">备注信息</view>
- <u-input v-model="remarks" border="none" inputAlign="right" placeholder="选填"></u-input>
- </view>
- </view>
- <view style="height: 166rpx; "></view>
- <view class="bottom hflex acenter jend">
- <view class="money">总计<span class="money-text">{{total}}积分</span></view>
- <view class="btn" @click="submit">提交订单</view>
- </view>
- <u-popup :show="show_address" @close="toclose" mode="bottom" :round="13">
- <addressBox :index="select_address" :list="address_list" @close="toclose" @select="selectAddress"></addressBox>
- </u-popup>
- <u-popup :show="show_youhui" @close="toclose" mode="bottom" :round="13">
- <youhui :index="youhui_active" :list="youhui_list" @close="toclose" @select="selectyouhui"></youhui>
- </u-popup>
- <u-popup :show="show_vip" @close="toclose" mode="bottom" :round="13">
- <youhui :index="vip_active" type="vip" :list="vip_list" @close="toclose" @select="selectvip"></youhui>
- </u-popup>
- <u-popup :show="show_submit" @close="toclose" mode="center" :round="10">
- <view class="popu1 vflex acenter">
- <image src="static/success.png" mode="aspectFill"></image>
- <view class="success">提交成功</view>
- <view class="success-text">请前往添加客服微信</view>
- <view class="hflex acenter btns">
- <view class="btn1" @click="tosubmit">稍后添加</view>
- <view class="btn2" @click="show_wx = true">添加客服</view>
- </view>
- </view>
- </u-popup>
- <u-popup :show="show_wx" @close="tosubmit" mode="center" :round="10">
- <kefu-wx :wxcode="wxcode" @submit="tosubmit"></kefu-wx>
- </u-popup>
- </view>
- </template>
- <script>
- import addressBox from './components/addressbox.vue'
- import youhui from './components/youhui.vue'
- import kefuWx from './components/kefu-wx.vue'
- import $api from '@/static/js/api.js'
- export default {
- components: {
- addressBox,
- youhui,
- kefuWx
- },
- data() {
- return {
- address_list: [],
- address: {},
- show_address: false,
- detail: {},
- youhui_list: [],
- show_youhui: false,
- show_vip: false,
- youhui_active: -1,
- vip_list: [],
- vip_active: -1,
- remarks: '',
- show_submit: false,
- show_wx: false,
- wxcode: '',
- num: 1,
- total: 0,
- youhui: 0,
- order: {},
- select_address: -1,
- }
- },
- onLoad(options) {
- this.detail = JSON.parse(decodeURIComponent(options.good))
- this.num = options.num
- // this.getlist()
- // this.getcode()
- this.getyouhui()
- },
- onShow() {
- this.getlist()
- },
- methods: {
- getyouhui() {
- var that = this
- $api.req({
- url: 'user/coupon',
- data: {
- is_page: 0,
- is_expire: 0,
- is_use: 0,
- type: 'integral',
- goods_id: that.detail.id
- }
- }, function(res) {
- that.youhui_list = res.data
- })
- },
- getwxcode() {
- var that = this
- $api.req({
- url: 'config',
- data: {
- module: 'basic'
- }
- }, function(res) {
- that.wxcode = res.data.customer_service_qrcode
- })
- },
- count() {
- var _this = this
- $api.req({
- url: 'integral/order/calculate',
- method: 'POST',
- data: {
- goods_id: _this.detail.id,
- goods_count: _this.num,
- coupon_id: _this.youhui_active == -1 ? '0' : _this.youhui_list[_this.youhui_active].id,
- is_level_discount: _this.vip_active == -1 ? '0' : '1',
- address_id: _this.address ? _this.address.id : '0'
- }
- }, function(res) {
- if (res.code == 10000) {
- _this.total = res.data.price_data.pay_price
- _this.youhui = res.data.price_data.coupon_discount
- }
- })
- },
- tosubmit() {
- this.toclose()
- uni.redirectTo({
- url: '/pageB/order-detail?id=' + this.order.id
- })
- },
- submit() {
- var _this = this
- if (JSON.stringify(this.address) == '{}') {
- $api.info('请先选择收货地址')
- return
- }
- uni.showModal({
- title: '',
- content: '是否提交订单',
- success: function(res) {
- if (res.confirm) {
- $api.req({
- url: 'integral/order',
- method: 'POST',
- data: {
- goods_id: _this.detail.id,
- goods_count: _this.num,
- coupon_id: _this.youhui_active == -1 ? '0' : _this.youhui_list[
- _this.youhui_active].id,
- is_level_discount: _this.vip_active == -1 ? '0' : '1',
- address_id: _this.address ? _this.address.id : '0'
- }
- }, function(res) {
- if (res.code == 10000) {
- _this.show_submit = true
- _this.order = res.data
- _this.getwxcode()
- }
- })
- }
- }
- });
- },
- selectyouhui(e) {
- this.youhui_active = e
- this.count()
- this.toclose()
- },
- selectvip(e) {
- this.vip_active = e
- this.count()
- this.toclose()
- },
- getdata() {
- },
- selectAddress(e) {
- this.select_address = e
- this.address = this.address_list[e]
- this.toclose()
- },
- toclose() {
- this.show_address = false
- this.show_vip = false
- this.show_youhui = false
- this.show_submit = false
- this.show_wx = false
- },
- getlist() {
- var _this = this
- $api.req({
- url: 'address',
- method: 'GET',
- data: {
- is_page: 0
- }
- }, function(res) {
- if (res.code == 10000) {
- _this.address_list = res.data
- if (_this.address_list.length > 0) {
- _this.address = _this.address_list[0]
- }
- }
- _this.count()
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .order-confirm::v-deep {
- background: #F4F4F4;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- min-height: 100vh;
- .popu1 {
- width: 510rpx;
- padding: 46rpx 0;
- .top {
- width: 100%;
- .top-title {
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- color: #000000;
- text-align: center;
- padding-left: 100rpx;
- }
- image {
- width: 36rpx;
- height: 36rpx;
- }
- }
- .center {
- image {
- width: 310rpx;
- height: 310rpx;
- }
- text {
- font-size: 22rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, .42);
- }
- }
- image {
- width: 78rpx;
- height: 78rpx;
- margin: 12rpx 36rpx;
- }
- .success {
- font-size: 30rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #000000;
- }
- .success-text {
- font-size: 24rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: rgba(0, 0, 0, .6);
- padding: 8rpx 0 42rpx;
- }
- .btns {
- .btn1 {
- width: 204rpx;
- height: 72rpx;
- background: #E7E7E7;
- border-radius: 40rpx;
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 72rpx;
- text-align: center;
- }
- .btn2 {
- width: 204rpx;
- height: 72rpx;
- background: #00B0B0;
- border-radius: 40rpx;
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 72rpx;
- text-align: center;
- margin: 0 0 0 26rpx;
- }
- }
- }
- .bottom {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 750rpx;
- height: 166rpx;
- background: #FFFFFF;
- box-sizing: border-box;
- padding: 12rpx 28rpx 68rpx;
- .money {
- font-size: 24rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;
- .money-text {
- font-size: 40rpx;
- font-family: SFPro, SFPro;
- font-weight: 500;
- color: #FF4954;
- padding: 0 20rpx 0 12rpx;
- }
- }
- .btn {
- width: 232rpx;
- height: 86rpx;
- background: #00B0B0;
- border-radius: 44rpx;
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 86rpx;
- text-align: center;
- }
- }
- .box {
- background: #FFFFFF;
- border-radius: 16rpx;
- margin: 0 0 20rpx;
- padding: 28rpx 20rpx 0;
- .cell {
- padding: 0 0 36rpx;
- .label {
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;
- }
- .value {
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- image {
- width: 28rpx;
- height: 28rpx;
- margin: 0 0 0 16rpx;
- }
- }
- }
- .good {
- padding: 24rpx 20rpx;
- box-sizing: border-box;
- .title {
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #222222;
- padding: 0 0 26rpx;
- }
- .good-detail {
- padding: 0 0 40rpx;
- .right {
- .price {
- font-size: 28rpx;
- font-family: SFPro, SFPro;
- font-weight: 500;
- color: #FF4954;
- }
- .num {
- font-size: 24rpx;
- font-family: SFPro, SFPro;
- font-weight: 400;
- color: #999999;
- padding: 18rpx 0 0;
- }
- }
- image {
- width: 160rpx;
- height: 160rpx;
- margin: 0 20rpx 0 0;
- }
- .center {
- width: 330rpx;
- .name {
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #222222;
- }
- .spec {
- max-width: max-content;
- background: #F3F3F3;
- border-radius: 6rpx;
- font-size: 20rpx;
- font-family: SFPro, SFPro;
- font-weight: 400;
- color: #222222;
- padding: 6rpx 18rpx;
- margin: 16rpx 0 0;
- }
- }
- }
- }
- .address {
- padding: 28rpx;
- width: 100%;
- box-sizing: border-box;
- image {
- width: 32rpx;
- height: 32rpx;
- margin: 0 16rpx 0 0;
- }
- .address-box {
- width: 550rpx;
- text:first-child {
- font-size: 30rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- color: #222222;
- }
- text:last-child {
- font-size: 24rpx;
- font-family: JDZhengHT, JDZhengHT;
- font-weight: 300;
- color: #666666;
- padding: 10rpx 0 0;
- }
- }
- .address-text {
- width: 550rpx;
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- }
- }
- </style>
|