123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- <template>
- <view class="mine">
- <!-- 状态栏占位 -->
- <!-- <view class="mine__nav" :style="{ height: statusBarHeight + 'px' }" /> -->
- <view class="mine__nav" style="height: 80rpx" />
- <view class="mine__person">
- <!-- <view class="mine__person--icon">
- <u-icon name="setting" color="#fff" size="22" @click="handlerSkipSetting"/>
- <u-icon name="chat" color="#fffb" size="22" />
- </view> -->
- <view class="mine__person--info">
- <image src="@/static/QR57a.jpg" style="width: 140rpx; height: 140rpx; border-radius: 50%" />
- <view class="userName">
- <view> yizhiyang的鲜花店(云岩区店)</view>
- <text> +8618285564342</text>
- </view>
- <view
- class="status"
- :style="{ 'background-color': getStatusColor(state) }"
- @click="changeStatust(state)"
- >
- <view style="margin-right: 6rpx">{{ stateName }}</view>
- <u-icon name="play-right-fill" color="#fff" size="12" />
- </view>
- </view>
- </view>
- <view class="mine__main">
- <view class="mine__main--purse">
- <view class="wallet">
- <view class="wallet--title">我的钱包</view>
- <view class="wallet--more">
- <text>查看钱包余额</text>
- <u-icon name="arrow-right" color="#333" size="14" />
- </view>
- </view>
- <view class="walletInfo">
- <view v-for="index in 4" :key="index">
- <view class="text-title">借钱(元)</view>
- <view class="text-data">
- 30
- <text style="font-size: 24rpx; margin-left: 5rpx">万</text>
- </view>
- <view class="text-info">最高可用</view>
- </view>
- </view>
- <view class="shortcut">
- <view style="display: flex">
- <view>快捷支付</view>
- <view style="margin: 0 20rpx">|</view>
- <view>一银升级银行卡用于麦付</view>
- </view>
- <u-icon name="arrow-right" color="#fff" size="14" />
- </view>
- </view>
- <view class="mine__main--setting">
- <template v-for="item in list1">
- <u-cell size="large" :border="false" :title="item.name" isLink :url="item.url">
- <image slot="icon" src="@/static/tools.jpg" style="width: 60rpx; height: 60rpx" />
- </u-cell>
- </template>
- </view>
- <view class="mine__main--setting">
- <template v-for="item in list2" @click="tap(item)">
- <u-cell size="large" :border="false" @tap="" :title="item.name" isLink :url="item.url">
- <image slot="icon" src="@/static/tools.jpg" style="width: 60rpx; height: 60rpx" />
- </u-cell>
- </template>
- </view>
- </view>
- <tabbar currentTab="merchantMine" />
- <!-- 营业状态选择弹框 -->
- <u-picker
- :show="show"
- :columns="columns"
- @cancel="cancel"
- @confirm="confirm"
- keyName="label"
- ></u-picker>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- statusBarHeight: 0,
- state: 1,
- stateName: '营业中',
- show: false,
- columns: [
- [
- {
- label: '营业中',
- id: 1,
- },
- {
- label: '维护中',
- id: 2,
- },
- {
- label: '停业中',
- id: 3,
- },
- ],
- ],
- list1: [
- // {
- // id: '1',
- // name: '门店环境',
- // url: '',
- // },
- {
- id: '2',
- name: '我要开店',
- url: '/pages/merchant/mine/openStore/index',
- },
- {
- id: '3',
- name: '资质信息',
- url: '/pages/merchant/mine/openStore/openStoreAppealDetail',
- },
- ],
- list2: [
- {
- id: '1',
- name: '帮助中心',
- url: '',
- },
- {
- id: '2',
- name: '设置',
- url: '/pages/merchant/mine/setting/index',
- },
- ],
- };
- },
- onLoad() {
- // this.getHeight();
- },
- methods: {
- tap(item) {
- console.log('item', item);
- },
- changeStatust() {
- this.show = true;
- },
- cancel() {
- this.show = false;
- },
- confirm(val) {
- this.state = val.value[0].id;
- this.stateName = val.value[0].label;
- this.show = false;
- },
- getStatusColor(state) {
- if (state === 1) {
- return '#19be6b';
- } else if (state === 2) {
- return '#ff9900';
- } else if (state === 3) {
- return '#909399';
- } else {
- return '';
- }
- },
- // 点击跳转到设置
- handlerSkipSetting() {
- uni.navigateTo({
- url: '/pages/merchant/mine/setting/index',
- });
- },
- //计算导航栏总高度
- getHeight() {
- // 获取系统信息
- const systemInfo = uni.getSystemInfoSync();
- // 胶囊按钮位置信息
- const menuButtonInfo = uni.getMenuButtonBoundingClientRect();
- // 导航栏高度 = 状态栏到胶囊的间距(胶囊距上距离-状态栏高度) * 2 + 胶囊高度 + 状态栏高度
- this.statusBarHeight =
- (menuButtonInfo.top - systemInfo.statusBarHeight) * 2 +
- menuButtonInfo.height +
- systemInfo.statusBarHeight;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .mine {
- min-height: calc(100vh - 80rpx);
- box-sizing: border-box;
- &__nav {
- background-color: $uni-bg-color-primary;
- }
- &__person {
- height: 200rpx;
- padding: $uni-bg-padding-sm;
- background-color: $uni-bg-color-primary;
- position: relative;
- &--icon {
- display: flex;
- justify-content: space-between;
- }
- &--info {
- color: #fff;
- display: flex;
- margin-top: 20rpx;
- .userName {
- width: 400rpx;
- font-size: 34rpx;
- margin: 10rpx 0 0 16rpx;
- > text {
- font-size: 26rpx;
- }
- }
- .status {
- display: flex;
- position: absolute;
- bottom: 80rpx;
- padding-left: 20rpx;
- right: 0;
- width: 150rpx;
- height: 60rpx;
- font-size: 25rpx;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- border-radius: 30rpx 0 0 30rpx;
- background-color: rgba(255, 255, 255, 0.3);
- }
- }
- }
- &__main {
- padding: $uni-bg-padding-sm;
- &--purse {
- background-color: $uni-bg-color;
- padding: $uni-bg-padding-sm;
- border-radius: $uni-border-radius-base;
- .wallet {
- display: flex;
- justify-content: space-between;
- font-size: 28rpx;
- &--title {
- color: #000;
- font-size: 36rpx;
- font-weight: 700;
- }
- &--more {
- color: #333;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- .walletInfo {
- margin: 40rpx 0;
- color: #333;
- display: flex;
- text-align: center;
- justify-content: space-around;
- }
- .shortcut {
- height: 70rpx;
- padding: 0 20rpx;
- color: #fff;
- font-size: 28rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: $uni-bg-color-primary;
- border-radius: $uni-border-radius-sm;
- }
- }
- &--setting {
- margin: 20rpx 0;
- background-color: $uni-bg-color;
- padding: $uni-bg-padding-sm;
- border-radius: $uni-border-radius-base;
- }
- }
- }
- .text-title {
- font-size: 34rpx;
- }
- .text-data {
- font-size: 40rpx;
- margin: 15rpx 0;
- font-weight: 700;
- }
- .text-info {
- font-size: 24rpx;
- }
- </style>
|