123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- <template>
- <view class="body">
- <view class="background"></view>
- <view class="content">
- <view class="userInfo">
- <view class="userInfo-box">
- <view class="userInfo-img">
- <image class="portrait" :src="image || '../../static/error/missing-face.png'"></image>
- </view>
- <view class="userInfo-xinxi">
- <view class="title clamp">
- <text>{{ name }}</text>
- </view>
- <view class="phone">
- <text>{{ phone }}</text>
- </view>
- </view>
- <view class="balance clamp">{{ address }}</view>
- </view>
- </view>
- <view class="userInfoList">
- <view class="userInfoList-top" @click="sao()">
- <view class="top">
- <image src="../../static/merchant/saoma.png" mode=""></image>
- </view>
- 扫码核销
- </view>
- <view class="userInfoList-top" @click="navTo('/pages/merchant/storeQr')">
- <view class="top">
- <image src="../../static/merchant/erweima.png" mode=""></image>
- </view>
- 店铺二维码
- </view>
- <view class="userInfoList-bottom" @click="navTo('/pages/merchant/finance')">
- <view class="bottom">
- <image src="../../static/merchant/money.png" mode=""></image>
- </view>
- 店铺财务
- </view>
- <view class="userInfoList-bottom" @click="navTo('/pages/merchant/order')">
- <view class="bottom">
- <image src="../../static/merchant/order.png" mode=""></image>
- </view>
- 订单管理
- </view>
- <view class="userInfoList-bottom" @click="navTo('/pages/merchant/commodity')">
- <view class="bottom">
- <image src="../../static/merchant/shop.png" mode=""></image>
- </view>
- 商品管理
- </view>
- <view class="userInfoList-bottom" @click="navTo('/pages/merchant/vipDetail')">
- <view class="bottom">
- <image src="../../static/merchant/vip.png" mode=""></image>
- </view>
- 店铺会员
- </view>
- <view class="userInfoList-bottom" @click="navTo('/pages/merchant/storeData')">
- <view class="bottom">
- <image src="../../static/merchant/dianpu.png" mode=""></image>
- </view>
- 店铺数据
- </view>
- <view class="userInfoList-bottom" @click="navTo('/pages/merchant/newfinance')" v-if="type == 1">
- <view class="bottom">
- <image src="../../static/merchant/xiadan.png" mode=""></image>
- </view>
- 店铺收益
- </view>
- </view>
- </view>
- <uni-popup ref="popuphx" class="agree-wrapper">
- <view class="hx-wrapper">
- <view class="hx-img">
- <image src="../../static/img/hxbg.png" mode=""></image>
- </view>
- <view class="hx-body">
- <view class="hx-title">输入核销码核销</view>
- <input type="text" v-model="code" placeholder="请输入核销码" placeholder-class="hx-placeholder" />
- <view class="hx-btn" @click="qhx">立即核销</view>
- </view>
- <view class="hx-close" @click="close">
- <image src="../../static/icon/close.png" mode=""></image>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- import {
- my,
- verific
- } from '@/api/merchant.js';
- import {
- storeIndex
- } from '@/api/merchant.js';
- import {
- writer
- } from '@/api/sign.js'
- import uniPopup from '@/components/uni-popup/uni-popup.vue';
- export default {
- components: {
- uniPopup
- },
- data() {
- return {
- lx: '', //0是普通商品核销码,1是抽奖商品兑换码
- type: '',
- image: '',
- name: '',
- phone: '',
- address: '',
- code: ''
- };
- },
- onLoad() {
- const obj = this;
- my({}).then(({
- data
- }) => {
- this.image = data.image;
- this.name = data.name;
- this.phone = data.phone;
- this.address = data.detailed_address;
- });
- storeIndex({}).then(e => {
- if (!e.data.apply) {
- obj.type = -1;
- if (e.data.store_info) {
- obj.type = 1;
- }
- } else {
- obj.type = e.data.apply.status;
- }
- });
- },
- methods: {
- //跳转
- navTo(url) {
- uni.navigateTo({
- url
- });
- },
- close() {
- this.$refs.popuphx.close();
- this.code = '';
- },
- qhx() {
- if (this.lx == 0) {
- verific({
- verify_code: this.code,
- is_confirm: 1 //1是核销,0是查看
- })
- .then(e => {
- this.$api.msg('核销成功');
- this.close();
- })
- .catch(e => {
- console.log(e);
- });
- }
- if (this.lx == 1) {
- writer({
- verify_code: this.code,
- is_confirm: 0 //0是核销,1是查看
- })
- .then(e => {
- this.$api.msg('核销成功');
- this.close();
- })
- .catch(e => {
- console.log(e);
- });
- }
- },
- //调取扫描二维码
- sao() {
- let obj = this;
- // #ifndef H5
- uni.scanCode({
- success(e) {
- let sz = e.result.split('&')
- if (sz.length == 1) {
- obj.lx == 0
- } else {
- obj.lx == 1
- }
- obj.code = sz[0];
- obj.$refs.popuphx.open();
- }
- });
- // #endif
- // #ifdef H5
- let wx = require('jweixin-module');
- wx.scanQRCode({
- needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
- scanType: ['qrCode', 'barCode'], // 可以指定扫二维码还是一维码,默认二者都有
- success: function(res) {
- let sz = res.resultStr.split('&')
- if (sz.length == 1) {
- obj.lx == 0
- } else {
- obj.lx == 1
- }
- obj.code = sz[0];
- obj.$refs.popuphx.open();
- }
- });
- // #endif
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- height: 100%;
- background-color: #eeeded;
- padding: 0;
- margin: 0;
- }
- // 弹窗
- .hx-wrapper {
- width: 536rpx;
- height: 630rpx;
- position: relative;
- // background-color: #fff;
- .hx-img {
- width: 536rpx;
- height: 281rpx;
- image {
- width: 536rpx;
- height: 281rpx;
- }
- }
- .hx-close {
- position: absolute;
- left: 243rpx;
- bottom: -80rpx;
- width: 52rpx;
- height: 52rpx;
- image {
- width: 52rpx;
- height: 52rpx;
- }
- }
- .hx-body {
- width: 536rpx;
- height: 349rpx;
- background-color: #fff;
- border-radius: 0 0 10rpx 10rpx;
- .hx-title {
- width: 536rpx;
- font-size: 36rpx;
- font-weight: 500;
- color: #333333;
- line-height: 1;
- padding-top: 42rpx;
- text-align: center;
- }
- input {
- width: 439rpx;
- height: 68rpx;
- background: #dbf3e9;
- border-radius: 10rpx;
- margin: 39rpx auto 0;
- padding-left: 26rpx;
- .hx-placeholder {
- font-size: 26rpx;
- font-weight: 500;
- color: #52c696;
- }
- }
- .hx-btn {
- margin: 44rpx auto 0;
- width: 353rpx;
- height: 71rpx;
- background: #52c696;
- border-radius: 34rpx;
- font-size: 36rpx;
- font-weight: 500;
- color: #f8f9f9;
- line-height: 71rpx;
- text-align: center;
- }
- }
- }
- .content {
- background-color: #eeeded;
- margin: 0 30rpx;
- display: flex;
- flex-direction: column;
- }
- .background {
- width: 100%;
- height: 220rpx;
- background-color: #75e5b6;
- }
- .userInfo {
- margin-top: -110rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- background-color: #f9f9f9;
- border-radius: 19rpx;
- width: 100%;
- height: 300rpx;
- .userInfo-box {
- display: flex;
- flex-direction: column;
- align-items: center;
- .userInfo-img {
- margin: -65rpx 0 0 0;
- width: 130rpx;
- height: 130rpx;
- border: 5rpx solid #fff;
- border-radius: 50%;
- image {
- border-radius: 50%;
- width: 100%;
- height: 100%;
- }
- }
- .userInfo-xinxi {
- .title {
- margin: 20rpx 0;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- text-align: center;
- }
- .phone {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- line-height: 21rpx;
- }
- }
- .balance {
- margin-top: 10rpx;
- text-align: center;
- width: 500rpx;
- height: 60rpx;
- background: #52c696;
- border-radius: 30rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- line-height: 60rpx;
- }
- }
- }
- .userInfoList {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .userInfoList-top {
- position: relative;
- margin: 15rpx 0;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 340rpx;
- height: 100rpx;
- background: #ffffff;
- border-radius: 20rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #4d4d4d;
- line-height: 21rpx;
- .top {
- position: absolute;
- top: 50%;
- left: 30rpx;
- margin-top: -25rpx;
- width: 50rpx;
- height: 50rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- }
- .userInfoList-bottom {
- margin-bottom: 15rpx;
- width: 340rpx;
- height: 250rpx;
- background: #f9f9f9;
- border-radius: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- .bottom {
- margin-bottom: 20rpx;
- width: 68rpx;
- height: 68rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- </style>
|