123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <template>
- <view class="about" v-if="!loading">
- <view
- class="list-cell b-b"
- v-for="item in navList"
- :key="item.title"
- @tap="
- navTo(`/pages/set/about/detail?field=${item.url}&title=${item.title}`)
- "
- hover-class="cell-hover"
- :hover-stay-time="50"
- >
- <text class="cell-tit">{{ item.title }}</text>
- <text class="cell-tip">{{ item.content }}</text>
- <text class="cell-more iconfont iconyou"></text>
- </view>
- <view class="history-section icon">
- <view class="sec-header">
- <i class="iconfont iconshare"></i>
- <text>分享二维码给好友</text>
- </view>
- <view class="qrcode-wrapper">
- <view class="qrcode-img-wrapper">
- <rf-qrcode class="qrcode" cid="qrcode2229" makeOnLoad :text="hostUrl" v-if="merchantId === '0'"></rf-qrcode>
- <rf-image class="qrcode-img" :src="aboutInfo.qrcode || ''" v-else></rf-image>
- </view>
- <text class="info">二维码</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- /**
- * @des 关于商城
- *
- * @author stav stavyan@qq.com
- * @date 2019-12-09 10:13
- * @copyright 2019
- */
- import { merchantView } from '@/api/merchant';
- import rfQrcode from '@/components/rf-qrcode';
- export default {
- components: { rfQrcode },
- data() {
- return {
- aboutInfo: {},
- navList: [
- { title: '商城介绍', url: '' },
- // { title: '版权信息', url: 'copyright_companyname,copyright_desc,copyright_url' },
- // { title: '证照信息', url: '' },
- { title: '注册协议', url: 'protocol_register' },
- { title: '充值协议', url: 'protocol_recharge' },
- { title: '隐私协议', url: 'protocol_privacy' }
- ],
- appName: this.$mSettingConfig.appName,
- loading: true,
- hostUrl: this.$mConfig.hostUrl,
- merchantId: ''
- };
- },
- onLoad() {
- this.initData();
- },
- methods: {
- // 初始化数据
- initData() {
- uni.setNavigationBarTitle({ title: `关于${this.appName}` });
- const userInfo = uni.getStorageSync('userInfo') || {};
- this.merchantId = userInfo.merchant_id;
- if (this.merchantId === '0') {
- this.navList.shift();
- this.loading = false;
- } else {
- this.getConfigList();
- }
- },
- // 获取商城信息
- async getConfigList() {
- await this.$http
- .get(`${merchantView}`, {
- id: this.merchantId,
- field: 'web_qrcode'
- })
- .then(r => {
- this.loading = false;
- this.aboutInfo = r.data;
- }).catch(() => {
- this.loading = false;
- });
- },
- // 统一跳转接口
- navTo(route) {
- this.$mRouter.push({ route });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- position: relative;
- background-color: #f5f5f5;
- }
- /*关于商城*/
- .about {
- padding: 20upx 0;
- .history-section {
- padding: 30upx 0 0;
- margin-top: 20upx;
- background: #fff;
- border-radius: 10upx;
- .sec-header {
- display: flex;
- align-items: center;
- font-size: $font-base;
- color: $font-color-dark;
- line-height: 40upx;
- margin-left: 30upx;
- .iconfont {
- font-size: 44upx;
- color: #5eba8f;
- margin-right: 16upx;
- line-height: 40upx;
- }
- }
- .qrcode-wrapper {
- padding: $spacing-lg 0;
- text-align: center;
- .qrcode-img-wrapper {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .qrcode {
- height: 280upx;
- }
- .qrcode-img {
- width: 300upx;
- height: 300upx;
- image {
- width: 300upx;
- height: 300upx;
- }
- }
- .info {
- display: block;
- }
- }
- }
- }
- </style>
|