| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- <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="showimg || '../../../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-bottom" @click="navTo('/user/page/hexiao')">
- <view class="bottom">
- <image src="../../../static/merchant/saoma.png" mode=""></image>
- </view>
- 扫码核销
- </view>
- <view class="userInfoList-bottom" @click="navTo('/user/page/merchant/finance')">
- <view class="bottom">
- <image src="../../../static/merchant/money.png" mode=""></image>
- </view>
- 店铺财务
- </view>
- <view class="userInfoList-bottom" @click="navTo('/user/page/merchant/order')">
- <view class="bottom">
- <image src="../../../static/merchant/order.png" mode=""></image>
- </view>
- 订单管理
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- my,
- verific
- } from '@/api/merchant.js';
- import uniPopup from '@/components/uni-popup/uni-popup.vue';
- export default {
- components: {
- uniPopup
- },
- data() {
- return {
- showimg: '',
- name: '',
- phone: '',
- address: '',
- code: ''
- };
- },
- onLoad() {
- my({}).then(({
- data
- }) => {
- this.showimg = data.info.showimg;
- this.name = data.info.name;
- this.phone = data.info.phone;
- this.address = data.info.detailed_address;
- });
- },
- methods: {
- //跳转
- navTo(url) {
- uni.navigateTo({
- url
- });
- },
- close() {
- this.$refs.popuphx.close();
- this.code = '';
- },
- qhx() {
- verific({
- verify_code: this.code,
- is_confirm: 1 //1是核销,0是查看
- })
- .then(e => {
- this.$api.msg('核销成功');
- this.close();
- })
- .catch(e => {
- console.log(e);
- });
- },
- //调取扫描二维码
- sao() {
- let obj = this;
- // #ifndef H5
- uni.scanCode({
- success(e) {
- obj.code = e.result;
- 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: #F75022;
- 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: #F75022;
- }
- .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: #F75022;
- border-radius: 30rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- line-height: 60rpx;
- }
- }
- }
- .userInfoList {
- margin-top: 20rpx;
- 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>
|