This commit is contained in:
王鹏
2025-08-14 14:52:01 +08:00
commit 0c2edb6036
1551 changed files with 41152 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
const app = getApp()
Page({
data: {
instruct: null
},
goback(){
wx.navigateBack(1)
},
onLoad(){
let instruct = app.globalData.clientConfig.CLIENT_INSTRUCT
this.setData({instruct})
}
})

View File

@@ -0,0 +1,7 @@
{
"usingComponents": {
"van-nav-bar": "@vant/weapp/nav-bar/index",
"van-sticky": "@vant/weapp/sticky/index"
},
"navigationStyle": "custom"
}

View File

@@ -0,0 +1,11 @@
<van-sticky>
<van-nav-bar
title="使用说明"
left-text="返回"
left-arrow
bind:click-left="goback"
/>
</van-sticky>
<view class="card-blank">
<rich-text nodes="{{instruct}}" />
</view>

View File

@@ -0,0 +1,3 @@
page{
background-color: #fff;
}