25 lines
984 B
Plaintext
25 lines
984 B
Plaintext
<!-- 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> |