You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.9 KiB
48 lines
2.9 KiB
<view class="report-issue">
|
|
<view class="issue-list">
|
|
<view class="report-issue-img" bindtap="toIssueList">
|
|
<image src="../../images/jubaojilu.png" />
|
|
</view>
|
|
<view class="issue-item text-item">
|
|
<view class="item-title">诉求描述</view>
|
|
<textarea class="item-content text-content" maxlength="500" placeholder="请详细描述您的诉求(500字以内)" value="{{dataForm.content}}" bindinput="onInputContent"></textarea>
|
|
</view>
|
|
<view class="issue-item">
|
|
<view class="item-title">是否匿名</view>
|
|
<view class="radio-group">
|
|
<view class="radio-item" bindtap="onChangeRadio" data-flag="1">
|
|
<image class="radio-img" src="../../images/radiochecked.png" wx:if="{{dataForm.anonymousFlag == '1'}}"/>
|
|
<image class="radio-img" src="../../images/radio.png" wx:else/>
|
|
<view class="radio-text">是</view>
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="radio-item" bindtap="onChangeRadio" data-flag="0">
|
|
<image class="radio-img" src="../../images/radiochecked.png" wx:if="{{dataForm.anonymousFlag == '0'}}"/>
|
|
<image class="radio-img" src="../../images/radio.png" wx:else/>
|
|
<view class="radio-text">否</view>
|
|
</view>
|
|
<view class="radio-info" hidden="{{dataForm.anonymousFlag == '1'}}">
|
|
<input type="text" class="info" placeholder="请输入姓名" value="{{dataForm.reportUser}}" bindinput="onInputUser"></input>
|
|
<view class="line2"></view>
|
|
<input type="text" class="info" placeholder="请输入电话" value="{{dataForm.reportUserMobile}}" bindinput="onInputMobile"></input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="agree-box">
|
|
<checkbox-group class="checkbox-group" bindchange="checkboxChange">
|
|
<label class="checkbox">
|
|
<checkbox value="isAgree" color="#df0006"/>我已阅读并同意
|
|
</label>
|
|
<text class="agreement" bindtap="showAgreement">《{{agreement.noticeTitle||'诉求须知'}}》</text>
|
|
</checkbox-group>
|
|
</view>
|
|
</view>
|
|
<view class="submit" bindtap="submitIssue">
|
|
<image class="submit-bk" src="../../images/submitbk.png" />
|
|
<view class="submit-text">提交</view>
|
|
</view>
|
|
</view>
|
|
|
|
<notice bind:close="closeDialog" bind:confirm="confirmDialog" dialogVisible="{{dialogVisible}}" title="{{dialogTitle}}" content="{{errMsg}}" confirmText="知道了"></notice>
|
|
|
|
<rich-text-dialog bind:confirm="confirmAgreement" dialogVisible="{{agreementVisible}}" title="{{agreement.noticeTitle||'诉求须知'}}" content="{{agreement.noticeContent||'暂无内容~'}}" confirmText="确定"></rich-text-dialog>
|