123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <template>
- <div class="point-pay">
- <div class="product">
- <div class="img">
- <img :src="ware.waresPic" alt="" />
- </div>
- <div class="content">
- <div class="title">{{ware.waresName}}</div>
- <div class="amount">
- <span class="text">积分 {{ware.saleIntegral}}</span> <span class="num">x 1</span>
- </div>
- </div>
- </div>
- <div class="have">
- <span class="icon1"></span>
- <span class="text">当前可用积分余额 {{pointInfo.points}}</span>
- <span class="icon2"></span>
- </div>
- <div class="total">
- <div class="text">合计:<span class="num">{{ware.saleIntegral}}积分</span></div>
- <button @click="pay">提交订单</button>
- </div>
- </div>
- </template>
- <script>
- import ProductList from "../../../components/ProductList";
- import { mapState, mapGetters, mapActions } from "vuex";
- export default {
- validate({ params }) {
- return /^\d{1,}$/.test(params.id);
- },
- head() {
- return {
- title: "积分兑换确认",
- };
- },
- data() {
- return {
- id: this.$route.params.id,
- images: [],
- list: [],
- loading: false, //加载状态
- finished: false, //是否完成加载
- refreshing: false, //是否正在上拉刷新
- img: "/test/pro.png",
- };
- },
- computed: {
- ...mapState({
- pointInfo: (state) => state.point.pointInfo,
- userInfo:(state) => state.authen.userInfo
- }),
- ...mapGetters({
- userInfo: "authen/userInfo",
- findWare: "point/findWare",
- }),
- ware() {
- console.log("ware");
- return this.findWare(this.id)
- }
- },
- components: {
- ProductList,
- },
- mounted() {
- console.log(this);
- },
- methods: {
- pay(){
- this.$axios.$post("insertIntegralOrder",{
- "waresId":this.id,
- "waresName":this.ware.waresName,
- "openId":this.openId,
- "unionId":this.unionId,
- "customerName":this.userInfo.nickname,
- "exchangeNum":1,
- "integral":this.ware.saleIntegral,
- "stationId":this.stationId
- }).then((res)=>{
- this.$router.push({
- path:"/point/success"
- })
- })
-
- }
- },
- };
- </script>
- <style>
- .point-pay {
- width: 100%;
- background: #f8f8f8;
- }
- .point-pay .product {
- height: 1.82rem;
- background: #ffffff;
- box-sizing: border-box;
- padding: 0.3rem;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .point-pay .product .img {
- width: 2rem;
- height: 1.22rem;
- box-sizing: border-box;
- padding: 0.2rem;
- }
- .point-pay .product .img img {
- width: 100%;
- height: 100%;
- }
- .point-pay .product .content {
- width: 5.9rem;
- }
- .point-pay .product .content .title {
- display: block;
- height: 0.45rem;
- font-size: 0.32rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #0f0f0f;
- line-height: 0.45rem;
- }
- .point-pay .product .content .amount {
- display: flex;
- justify-content: space-between;
- }
- .point-pay .product .content .amount .text {
- height: 0.4rem;
- font-size: 0.28rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 0.4rem;
- }
- .point-pay .product .content .amount .num {
- height: 0.4rem;
- font-size: 0.28rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #666666;
- line-height: 0.4rem;
- }
- .point-pay .have {
- margin-top: 0.22rem;
- height: 1.1rem;
- background: #ffffff;
- position: relative;
- }
- .point-pay .have .icon1 {
- display: inline-block;
- width: 0.4rem;
- height: 0.35rem;
- background: url("../../../static/point/jifen@2x.png") no-repeat 0 0;
- background-size: 100% 100%;
- position: absolute;
- top: 0.39rem;
- left: 0.3rem;
- }
- .point-pay .have .text {
- height: 1.1rem;
- font-size: 0.28rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #090909;
- line-height: 1.1rem;
- position: absolute;
- left: 0.99rem;
- }
- .point-pay .have .icon2 {
- display: inline-block;
- width: 0.36rem;
- height: 0.36rem;
- background: url("../../../static/point/xuanzhong@2x.png") no-repeat 0 0;
- background-size: 100% 100%;
- position: absolute;
- right: 0.36rem;
- top: 0.36rem;
- }
- .point-pay .total {
- width: 7.5rem;
- height: 1.98rem;
- background: #ffffff;
- opacity: 0.95;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- display: flex;
- justify-content: flex-end;
- box-sizing: border-box;
- padding: 0.4rem;
- align-items: center;
- }
- .point-pay .total .text {
- font-size: 0.28rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #111111;
- line-height: 0.4rem;
- }
- .point-pay .total .text .num {
- width: 1.17rem;
- height: 0.62rem;
- font-size: 0.44rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #111111;
- line-height: 0.62rem;
- }
- .point-pay .total button {
- border: none;
- background-color: transparent;
- outline: none;
- display: block;
- width: 2.2rem;
- height: 0.8rem;
- background: #fe9700;
- border-radius: 0.45rem;
- font-size: 0.28rem;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #ffffff;
- line-height: 0.4rem;
- margin-left: 0.2rem;
- }
- </style>
|