会员权益

This commit is contained in:
2026-04-29 15:33:58 +08:00
commit 54965243da
2787 changed files with 242809 additions and 0 deletions

54
pages/error/browser.vue Normal file
View File

@@ -0,0 +1,54 @@
<!-- +----------------------------------------------------------------------
| 麦沃德科技赋能开发者助力商协会发展
+----------------------------------------------------------------------
| Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
+----------------------------------------------------------------------
| 沃德商协会系统并不是自由软件不加密并不代表开源未经许可不可自由转售和商用
+----------------------------------------------------------------------
| Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
+----------------------------------------------------------------------
| 系统错误 开发者: 麦沃德科技-半夏
+---------------------------------------------------------------------- -->
<template>
<view class="container">
<!-- 标题栏 -->
<title-bar :showBack="true" title="系统错误"></title-bar>
<!-- 内容区 -->
<view class="container-main">
<image class="main-icon" src="/static/error.png" mode="widthFix"></image>
<view class="main-tips flex-direction-column align-items-center">
<text>该网页仅支持微信浏览器</text>
<text>请使用微信浏览器打开</text>
</view>
</view>
</view>
</template>
<style lang="scss">
page {
background: #ffffff;
}
.container {
.container-main {
padding: 144rpx 32rpx 32rpx;
display: flex;
flex-direction: column;
align-items: center;
.main-icon {
width: 45vw;
height: auto;
}
.main-tips {
margin-top: 32rpx;
color: #5A5B6E;
font-size: 32rpx;
font-weight: 600;
line-height: 44rpx;
}
}
}
</style>