封装请求的方法,完成简易的问题解答页面

This commit is contained in:
2024-02-27 17:23:33 +08:00
parent 66bc2262e4
commit 3205aa25c7
15 changed files with 312 additions and 15 deletions

View File

@@ -1,2 +1,25 @@
<!--pages/questions/index.wxml-->
<navigator title="常见问题" canBack="{{true}}" />
<!-- pages/questions/index.wxml -->
<scrollPageWrapper>
<navigator title="常见问题" canBack="{{true}}" />
<view class="content">
<scroll-view type="list" scroll-y style="display: flex; flex-direction: column; flex: 1; width: 100%; overflow: auto;">
<view wx:for="{{questions}}" list-item>
<view class="question"> {{ item.question }} </view>
<view class="answer"> {{ item.answer }} </view>
</view>
</scroll-view>
</view>
<!-- <movable-area>
<movable-view x="{{x}}" y="{{y}}" direction="all">
<rich-text nodes="<div style='color:red;font-size:46px'>1234</div>"></rich-text>
</movable-view>
</movable-area> -->
<!-- <movable-area style="width: 500rpx; height: 500rpx;background-color: red;">
<movable-view x="{{x}}" y="{{y}}" direction="all">
<view style="width: 100rpx; height: 100rpx;background-color: blue;"> 1111 </view>
</movable-view>
</movable-area> -->
</scrollPageWrapper>