<!-- 中间弹窗 -->
|
<view class="popup-box" wx:if="{{showIndex=='1'}}" bindtap="closePopup"></view>
|
<view
|
class="info-center"
|
style="top:{{height*0.3}}px"
|
wx:if="{{showIndex=='1'}}"
|
>
|
<view class="top-icon">
|
<image
|
src="/static/images/bookService/detail/feedback.png"
|
mode="aspectFit"
|
/>
|
</view>
|
<view class="close-icon" bind:tap="closePopup">
|
<t-icon
|
name="close-circle"
|
size="28"
|
data-name="close-circle"
|
bind:click="onIconTap"
|
color="#f1f1f1"
|
/>
|
</view>
|
<view class="row-info">
|
<view class="popup-content">
|
<view class="top-title">我要建议</view>
|
<view class="demo-rate">
|
<t-rate
|
value="{{ratevalue}}"
|
catch:change="onChangeRate"
|
size="{{30}}"
|
color="#FFB400"
|
/>
|
</view>
|
<view class="phone-input">
|
<t-input
|
value="{{inputvalue}}"
|
placeholder="请输入联系方式"
|
bind:change="inputChange"
|
type="number"
|
maxlength="{{11}}"
|
class="phone"
|
style="{{inputStyle}}"
|
/>
|
</view>
|
<view style="width: 100%">
|
<t-textarea
|
value="{{textvalue}}"
|
t-class="external-class"
|
label=""
|
placeholder="请输入反馈内容"
|
maxcharacter="200"
|
disableDefaultPadding="{{true}}"
|
indicator
|
bind:change="textareaChange"
|
style="{{inputStyle}}"
|
placeholder-style="{{placeholderstyle}}"
|
/>
|
</view>
|
</view>
|
<view class="submit-btn">
|
<t-button theme="primary" size="large" block bind:tap="confirmSuggest"
|
>提交</t-button
|
>
|
</view>
|
</view></view
|
>
|