123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694 |
- <template>
- <view class="pay">
- <view class="pay-info">
- <view class="goods-info">
- <image class="goods-img" :src="info.goodsPath" mode=""></image>
- <view class="info">
- <view class="goods-name">
- {{ info.goodsName }}
- </view>
- <view class="num">
- {{ info.goodsDescribe }}
- </view>
- <view class="priceColumn">
- <view class="price">
- <text class="unit">¥</text>{{ info.realPrice }}
- </view>
- <view class="goodsNum">
- x{{ realPay.reservePersons.length }}
- </view>
- </view>
- </view>
- </view>
- <view class="setoff">
- <view class="text">
- 出发时间
- </view>
- <view class="date">
- {{ reserveTimeFmt }}
- </view>
- </view>
- </view>
- <view class="appointment">
- <view class="title">
- 预定人信息
- </view>
- <view class="name">
- <view class="label">
- 姓名
- </view>
- <view class="value">
- {{ userInfo.name }}
- </view>
- </view>
- <view class="phone">
- <view class="label">
- 手机号
- </view>
- <view class="value">
- <text class="zone">+86</text>{{ userInfo.phoneNum }}
- </view>
- </view>
- <view class="desc">
- 预定人信息用于接受验证信息
- </view>
- </view>
- <view class="tour">
- <view class="title-top">
- <view class="title-text">
- 出游人信息
- </view>
- <view @click="addNewTourPerson" class="add">
- +添加
- </view>
- </view>
- <view v-for="(item, index) in realPay.reservePersons" :key="index" class="info-card">
- <view class="user-name">
- {{ item.userName }}
- <view class="tag">
- 出行人{{ index + 1 }}
- </view>
- </view>
- <view class="card-info">
- 身份证:{{ item.idCard }}
- </view>
- </view>
- </view>
- <view class="btn-box">
- <view class="total-price">
- <view class="label">
- 合计:
- </view>
- <view class="price">
- ¥ {{ payInfo.price }}
- </view>
- </view>
- <button class="btn" type="default" :loading="loading" @click="creat">提交订单</button>
- </view>
- <uni-calendar ref="calendar" :lunar="true" :showMonth="true" style="z-index: 999;" :insert="false"
- @confirm="confirm" />
- </view>
- </template>
- <script>
- import {
- studyCalculate, saveReserve
- } from '@/api/order.js';
- import {
- creat
- } from '@/api/goods.js'
- import {
- creatPayOrder,
- queryPayOrder,
- payDetails
- } from '@/api/payment.js'
- import guid from '@/utils/guid.js'
- export default {
- data() {
- return {
- isVisual: false,//是否是虚拟商品
- loading: false,
- info: {},
- realPay: {
- goodsCouponName: '', //优惠券名
- couponGoodsLogId: '', //优惠券id
- goodsId: '', //商品id
- price: '', //支付价格
- offset: '', //实际抵扣值
- discount: '', //优惠券值
- condition: '', //优惠条件
- originalPrice: '', //原价
- reserveName: '',//预定人
- reservePhone: '',//预定人手机
- reserveTime: '',//预定时间
- reservePersons: [],//出游人
- },
- form: {
- account: ''
- },
- rules: {
- 'account': {
- type: 'string',
- required: true,
- message: '请输入充值账号',
- trigger: ['blur', 'change']
- },
- },
- query: {
- "msgType": "wx.unifiedOrder",
- "orderDesc": "测试",
- "orderNo": "",
- "channel": 'ZhongShu',
- "subOpenId": "",
- "userId": ""
- },
- // 支付信息
- payData: {
- },
- userInfo: {}
- }
- },
- computed: {
- // 正式支付时的信息
- payInfo() {
- return {
- goodsCouponName: this.realPay.goodsCouponName || '', //优惠券名
- couponGoodsLogId: this.info.couponId, //优惠券id
- goodsId: this.realPay.goodsId || this.info.goodsId, //商品id
- price: this.realPay.price, //支付价格
- offset: this.realPay.offset, //实际抵扣值
- discount: this.realPay.discount || 0, //优惠券值
- condition: this.realPay.condition || '', //优惠条件
- originalPrice: this.realPay.originalPrice, //原价
- }
- },
- reserveTimeFmt() {
- const date = new Date(this.info.reserveTime)
- // const year = date.getFullYear()
- const month = date.getMonth() + 1
- const day = date.getDate()
- return `${month}月${day}日`
- }
- },
- methods: {
- // 增加新的出游人
- addNewTourPerson() {
- uni.navigateTo({
- url: '/study/tourList/list'
- })
- },
- openCalendar() {
- this.$refs.calendar.open();
- },
- confirm(e) {
- console.log(e);
- },
- calculate(goodsId, shopId) {
- uni.showLoading({
- title: '计算中'
- })
- return new Promise((resolve, reject) => {
- studyCalculate({
- couponId: this.info.couponId,
- "goodsId": goodsId,
- "shopId": shopId,
- "userId": JSON.parse(uni.getStorageSync('userInfo')).userId,
- "number": this.realPay.reservePersons.length
- }).then(res => {
- uni.hideLoading()
- if (res.state == 'Success') {
- const reservePersons = this.realPay.reservePersons
- this.realPay = res.content
- this.realPay.reservePersons = reservePersons
- this.info.couponId = res.content.couponId
- }
- })
- })
- },
- choose() {
- let that = this
- uni.navigateTo({
- url: './coupon?couponId=' + this.realPay.couponLogId,
- success: function (res) {
- // 通过eventChannel向被打开页面传送数据
- res.eventChannel.emit('pay', that.info)
- }
- })
- },
- tempCreate() {
- uni.reLaunch({
- url: '/study/pay/orderPay'
- })
- },
- //创建订单
- creat() {
- if (this.loading) return
- if (this.realPay.reservePersons.length == 0) {
- uni.showToast({
- title: '请添加出游人',
- icon: 'none'
- })
- return
- }
- const user = JSON.parse(uni.getStorageSync('userInfo'))
- this.realPay.reserveName = user.name
- this.realPay.reservePhone = user.phoneNum
- this.realPay.reserveTime = this.info.reserveTime
- this.loading = true
- uni.showLoading({
- title: '支付中'
- })
- let that = this
- if (!this.payData.timeStamp) {
- // 处理扩展字段 暂时只有研学商品和视频会员 视频会员是字符串的JSON 研学是字符串
- let extend
- try {
- if (JSON.parse(this.info.extend)) {
- extend = this.info.extend
- }
- } catch (e) {
- extend = this.info.reservationTime || ''
- }
- creat({
- discountId: (this.payInfo.couponGoodsLogId || this.payInfo.couponGoodsLogId == -1) ? [this
- .payInfo.couponGoodsLogId
- ] : [],
- extend,
- channel: 'ZhongShu',
- goodsList: this.info.goodsId ? [this.info.goodsId] : [],
- idempotent: guid(),
- shopId: this.info.shopId
- }).then(res => {
- this.loading = false
- if (res.state == 'Success') {
- if (!this.payInfo.price) { //价格为0
- uni.hideLoading()
- uni.reLaunch({
- url: '/my/order/index'
- })
- } else {
- this.query.orderNo = res.content.orderNo
- this.query.subOpenId = JSON.parse(uni.getStorageSync('userInfo')).openId
- this.query.orderDesc = this.info.goodsName
- creatPayOrder(this.query).then(data => {
- that.payData = JSON.parse(data.content.miniPayRequest)
- if (data.content.miniPayRequest == null) return uni.hideLoading()
- saveReserve({
- ...this.realPay,
- orderNo: this.query.orderNo,
- goodsId: this.info.goodsId,
- }).then(res => {
- if (res.state == 'Success') {
- uni.requestPayment({
- "provider": "wxpay",
- "orderInfo": that.payData,
- "appid": that.payData
- .appId, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
- "paySign": that.payData.paySign,
- "nonceStr": that.payData.nonceStr, // 随机字符串
- "package": that.payData.package, // 固定值
- // "prepayid": that.payData.package, // 统一下单订单号
- "timeStamp": that.payData.timeStamp, // 时间戳(单位:秒)
- "signType": that.payData.signType, //签名算法
- success(msg) {
- console.log('msg', that.query.orderNo);
- queryPayOrder(that.query.orderNo).then(res1 => {
- if (res1.state == 'Success') {
- uni.hideLoading()
- uni.reLaunch({
- url: '/my/order/index'
- })
- }
- })
- },
- fail(e) {
- console.log('err', e);
- that.loading = false
- uni.hideLoading()
- uni.showToast({
- title: '取消支付',
- icon: 'fail'
- })
- // 取消支付后,获取支付信息以备再次支付
- payDetails(that.query.orderNo).then(r => {
- if (r.state == 'Success') {
- that.payData = JSON.parse(r.content.miniPayRequest)
- }
- })
- }
- })
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- that.loading = false
- }
- })
- })
- }
- }
- })
- } else { // 取消支付后再次支付
- uni.requestPayment({
- "provider": "wxpay",
- "orderInfo": that.payData,
- "appid": that.payData.appId, // 微信开放平台 - 应用 - AppId,注意和微信小程序、公众号 AppId 可能不一致
- "paySign": that.payData.paySign,
- "nonceStr": that.payData.nonceStr, // 随机字符串
- "package": that.payData.package, // 固定值
- // "prepayid": that.payData.package, // 统一下单订单号
- "timeStamp": that.payData.timeStamp, // 时间戳(单位:秒)
- "signType": that.payData.signType, //签名算法
- success(msg) {
- console.log('msg', msg);
- queryPayOrder(that.query.orderNo).then(res1 => {
- if (res1.state == 'Success') {
- uni.hideLoading()
- uni.reLaunch({
- url: '/my/order/index'
- })
- }
- })
- },
- fail(e) {
- that.loading = false
- uni.hideLoading()
- uni.showToast({
- title: '取消支付',
- icon: 'fail'
- })
- // 取消支付后,获取支付信息以备再次支付
- payDetails(that.query.orderNo).then(r => {
- if (r.state == 'Success') {
- that.payData = JSON.parse(r.content.miniPayRequest)
- }
- })
- console.log('err', e);
- }
- })
- }
- }
- },
- onReady() {
- },
- onLoad() {
- let userInfo = JSON.parse(uni.getStorageSync('userInfo'))
- this.query.userId = userInfo.userId
- this.userInfo = userInfo
- let that = this
- const eventChannel = this.getOpenerEventChannel();
- eventChannel.on('pay', function (data) {
- that.info = data
- try {
- let extend = JSON.parse(that.info.extend)
- if (extend.account) {
- that.isVisual = true
- that.form.account = extend.account
- }
- } catch (e) {
- //TODO handle the exception
- }
- console.log('data', data);
- // that.calculate(that.info.goodsId, that.info.shopId)
- })
- uni.$on("updateData", (data) => {
- this.realPay.reservePersons = data
- that.calculate(that.info.goodsId, that.info.shopId)
- this.$forceUpdate()
- })
- },
- destoryed() {
- uni.$off("updateData")
- }
- }
- </script>
- <style lang="scss">
- .pay {
- background: #F9F9F9;
- min-height: 100vh;
- padding-top: 20rpx;
- .shop-info {
- margin: 0 30rpx 20rpx;
- width: 690rpx;
- padding: 24rpx;
- box-sizing: border-box;
- background: #FFFFFF;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- .shop-name {
- color: #181818;
- font-size: 32rpx;
- }
- .address {
- color: #999999;
- font-size: 24rpx;
- margin-top: 12rpx;
- }
- }
- .pay-info {
- margin: 0 30rpx;
- background: #FFFFFF;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- padding: 24rpx;
- .goods-info {
- display: flex;
- margin-bottom: 26rpx;
- .goods-img {
- width: 164rpx;
- height: 164rpx;
- border-radius: 16rpx;
- }
- .info {
- margin-left: 28rpx;
- flex: 1;
- .goods-name {
- font-weight: bold;
- color: #181818;
- font-size: 32rpx;
- width: 100%;
- word-break: break-all;
- text-overflow: ellipsis;
- overflow: hidden;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- /* 这里是超出几行省略 */
- }
- .num {
- color: #999999;
- font-size: 24rpx;
- margin-top: 16rpx;
- }
- .priceColumn {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 30rpx;
- .price {
- font-weight: bold;
- color: #FF4D3A;
- font-size: 32rpx;
- .unit {
- font-size: 20rpx;
- }
- }
- .goodsNum {
- font-size: 24rpx;
- color: #AAAAAA;
- }
- }
- }
- }
- .setoff {
- border-top: 1px solid #F0F0F0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 24rpx;
- padding-top: 24rpx;
- .text {
- color: #222222;
- }
- .date {
- color: #AAAAAA;
- }
- }
- }
- .appointment {
- padding: 24rpx;
- background: #FFFFFF;
- margin: 20rpx 30rpx;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- .title {
- font-size: 28rpx;
- color: #222222;
- font-weight: bold;
- margin-bottom: 24rpx;
- }
- .name {
- border-top: 1px solid #F0F0F0;
- padding: 24rpx 0;
- display: flex;
- .label {
- font: 24rpx;
- color: #222222;
- width: 152rpx;
- }
- .value {
- font-size: 28rpx;
- font-weight: bold;
- }
- }
- .phone {
- border-top: 1px solid #F0F0F0;
- padding: 24rpx 0;
- display: flex;
- .label {
- font: 24rpx;
- color: #222222;
- width: 152rpx;
- }
- .value {
- font-size: 28rpx;
- font-weight: bold;
- .zone {
- padding-right: 22rpx;
- margin-right: 20rpx;
- border-right: 1px solid #F0F0F0;
- }
- }
- }
- .desc {
- border-top: 1px solid #F0F0F0;
- padding-top: 24rpx;
- color: #AAAAAA;
- font-size: 24rpx;
- }
- }
- .tour {
- padding: 24rpx;
- background: #FFFFFF;
- margin: 0 30rpx;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- .title-top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .title-text {
- font-size: 28rpx;
- font-weight: bold;
- color: #222222;
- }
- .add {
- font-size: 24rpx;
- color: #3B83FF;
- }
- margin-bottom: 24rpx;
- }
- .info-card {
- border-top: 1px solid #F0F0F0;
- padding: 24rpx 0;
- .user-name {
- font-size: 28rpx;
- font-weight: bold;
- color: #222222;
- display: flex;
- align-items: center;
- .tag {
- margin-left: 20rpx;
- color: #222222;
- font-size: 20rpx;
- background-color: #F0F0F0;
- border-radius: 18rpx;
- line-height: 20rpx;
- padding: 2rpx 12rpx;
- }
- }
- .card-info {
- margin: 20rpx 0;
- font-size: 24rpx;
- color: #222222;
- }
- }
- }
- .btn-box {
- position: fixed;
- bottom: 0%;
- left: 0%;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- padding: 10rpx 30rpx env(safe-area-inset-bottom);
- border-top: 1rpx solid #EEEEEE;
- .total-price {
- display: flex;
- align-items: center;
- .label {
- color: #181818;
- font-size: 28rpx;
- }
- .price {
- font-size: 36rpx;
- font-weight: 800;
- color: #FF4848;
- margin-left: 10rpx;
- }
- }
- .btn {
- width: 280rpx;
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- background: #3B83FF;
- box-shadow: inset 0rpx 6rpx 12rpx 2rpx rgba(255, 255, 255, 0.16);
- border-radius: 46rpx 46rpx 46rpx 46rpx;
- font-weight: 800;
- color: #FFFFFF;
- font-size: 28rpx;
- margin: 0;
- }
- }
- }
- </style>
|