yuminge-app/yun-min-program-plugin-master/packageD/directSeeding/liveReport/liveReport.wxml

74 lines
2.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="reportContent">
<block wx:if="{{reportContentShow}}">
<view class="header_top">
<view class="left">
<image src="{{liveReportData.avatar}}" mode='widthFix' />
</view>
<view class="right">
<view class="name">{{liveReportData.nickname}}</view>
<view class="number">直播ID{{liveReportData.id}}</view>
</view>
</view>
<view class="reportList">
<van-radio-group value="{{ radio }}" bind:change="onChange">
<view class="li">
<van-radio name="1">辱骂,歧视,挑衅,泄露他人隐私等</van-radio>
</view>
<view class="li">
<van-radio name="2">垃圾广告信息</van-radio>
</view>
<view class="li">
<van-radio name="3">色情,暴力,血腥,政治敏感等违法内容</van-radio>
</view>
<view class="li">
<van-radio name="4">迷信活动</van-radio>
</view>
<view class="li">
<van-radio name="5">出售违禁品(枪支弹药/危险武器/保护动植物等)</van-radio>
</view>
<view class="li">
<van-radio name="6">其他问题</van-radio>
</view>
</van-radio-group>
</view>
<view class="question">
<view class="h1">
问题描述
</view>
<view class="content">
<textarea class="textarea" placeholder="请输入描述的问题" value="{{desc}}" bindinput="descInp" placeholder-style="color:#999999;" />
</view>
</view>
<view class="screenshot">
<view class="h1">
上传截图
</view>
<view class="content">
<view class="imgflex">
<block wx:for-item="val" wx:for="{{fileList}}" wx:key="index">
<view class="photobox">
<image src="{{val.url}}" mode='widthFix' />
<view class="i" data-index="{{index}}" catchtap="removeImg_1"></view>
</view>
</block>
<view class="photoshow" catchtap="onRead_2">
<image src="https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/up_icon.png" mode='widthFix' />
</view>
</view>
</view>
</view>
<view class="reportContentBottom">
<view class="submit" catchtap="submit">提交</view>
</view>
</block>
<block wx:else>
<view class="report_icon_content">
<view class="report_icon">
<van-icon name="passed" size="60px" color="#f53939"/>
</view>
<view class="title">您的举报已提交成功!</view>
<view class="return_btn" catchtap = "returnBtn">返回</view>
</view>
</block>
</view>