css
litian
2024-12-18 cbc33eaf1cfa0ae319e1580dbc7887494b101d11
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
<!-- 中间弹窗 -->
<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="row-info">
    <view class="popup-content">
      <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="row-btn">
      <view class="submit-btn">
        <t-button theme="primary" size="large" block bind:tap="confirmSuggest"
          >提交</t-button
        >
      </view>
    </view>
  </view></view
>