Sanakey
2021-04-30 8724a444c8a1d09dc8f9efd005e8443aad8df1ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!--pages/feedbackDetail/feedbackDetail.wxml-->
<view class="has-footer">
  <my-card-container show-shadow="{{false}}">
    <view class="margin-bottom-10">
      <view class="text-center font-bold">{{detail.topic}}</view>
      <view class="font-size-12 flex-row space-between">
        <view class="desc">{{detail.enterDate}}</view>
        <view class="theme-font-color">{{detail.docType}}</view>
      </view>
      <view class="padding-tb-20">
        <text>{{detail.desctiption}}</text>
      </view>
      <view class="flex-row flex-wrap">
        <my-view-img img-class="margin-right-10 margin-bottom-10" img-list="{{detail.imagesUrl}}" width="200rpx" height="200rpx" fit="cover"></my-view-img>
<!--        <block wx:for="{{detail.imagesUrl}}" wx:key="key">-->
<!--          <van-image fit="cover" class="margin-right-10 margin-bottom-10" width="200rpx" height="200rpx" src="{{item.url}}"></van-image>-->
<!--        </block>-->
      </view>
<!--      <view class="text-right">-->
<!--        <view>感谢人</view>-->
<!--        <view>xxx</view>-->
<!--      </view>-->
    </view>
  </my-card-container>
 
  <view>
    <my-chat-bubble chat-list="{{replyMessageList}}"></my-chat-bubble>
  </view>
  <van-divider id="no-more" contentPosition="center">没有更多了</van-divider>
 
</view>
 
<view class="fixed-footer fixed-footer-button">
  <view class="padding">
    <van-button icon="plus" class="theme-button btn-padding" block type="warning" bind:click="showDialog">继续反馈</van-button>
  </view>
</view>
 
 
<van-action-sheet
    show="{{ isShowDialog }}"
    close-on-click-overlay="{{true}}"
    bind:click-overlay="closeDialog">
  <view class="has-footer">
    <view class="padding">
      <my-feedback-form id="my-feedback-form" is-show-topic="{{false}}"></my-feedback-form>
    </view>
 
    <view class="fixed-footer fixed-footer-button">
      <view class="padding">
        <van-button class="theme-button btn-padding" block type="warning" bind:click="onSubmit">提交反馈</van-button>
      </view>
    </view>
  </view>
</van-action-sheet>