闫增涛
2025-03-31 04c7b0163caeae4ab1c5da62e301fa993101cfad
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<view class="tips" wx:if="{{!skeletonLoding}}">
  仅限学校本课程任课教师申请;请上传有效在职教师工作证将有助于审核。
</view>
<view class="page-body" wx:if="{{!skeletonLoding}}">
  <view class="baseInfoBox">
    <view class="from-item">
      <view class="label"> <text class="empty"></text>当前状态: </view>
      <view class="stateBox">
        <text class="wait" wx:if="{{teacherInfo.state == 'WaitAudit'}}"
          >等待审核</text
        >
        <text class="yes" wx:if="{{teacherInfo.state == 'Normal'}}"
          >已认证</text
        >
        <text class="no" wx:if="{{teacherInfo.state == 'Reject'}}">已驳回</text>
        <text class="wait" wx:if="{{teacherInfo.state == ''}}">待认证</text>
        <view
          class="reasonTxt"
          bindtap="previewReason"
          wx:if="{{teacherInfo.state == 'Reject'}}"
          >查看原因</view
        >
      </view>
    </view>
    <view class="from-item">
      <view class="label"> <text class="icon">*</text>学校: </view>
      <view class="item-content">
        <t-input
          placeholder="请输入学校"
          borderless
          value="{{teacherInfo.schoolName}}"
          disabled="{{!editState}}"
          bindchange="onSchoolNameInput"
          adjust-position="{{false}}"
        />
      </view>
    </view>
    <view class="from-item">
      <view class="label"> <text class="icon">*</text>真实姓名: </view>
      <view class="item-content">
        <t-input
          placeholder="请输入真实姓名"
          borderless
          value="{{teacherInfo.fullName}}"
          disabled="{{!editState}}"
          bindchange="onFullNameInput"
          adjust-position="{{false}}"
        />
      </view>
    </view>
    <view class="from-item">
      <view class="label"> <text class="empty"></text>职称: </view>
      <view class="item-content state" wx:if="{{editState}}">
        <t-cell arrow note="{{teachText}}" bind:click="onTeachPicker" />
        <t-picker
          visible="{{teachVisible}}"
          value="{{teacherInfo.positionalTitle}}"
          title="选择职称"
          cancelBtn="取消"
          confirmBtn="确认"
          bindchange="onPickerChange"
          bindcancel="onPickerCancel"
          adjust-position="{{false}}"
        >
          <t-picker-item options="{{teachPosts}}" />
        </t-picker>
      </view>
      <view class="item-content" wx:if="{{!editState}}">
        <t-cell arrow note="{{teachText}}" />
      </view>
    </view>
    <view class="from-item">
      <view class="label"> <text class="icon">*</text>任教课程: </view>
      <view class="item-content">
        <t-input
          placeholder="请输入任教课程"
          borderless
          value="{{teacherInfo.courseName}}"
          bindchange="onCourseNameInput"
          disabled="{{!editState}}"
          adjust-position="{{false}}"
        />
      </view>
    </view>
    <view class="from-item">
      <view class="label"> <text class="icon">*</text>手机号: </view>
      <view class="item-content">
        <t-input
          placeholder="输入手机号码"
          borderless
          value="{{teacherInfo.phone}}"
          type="number"
          tips="{{phoneError ? '手机号输入不正确' : ''}}"
          bindchange="onPhoneInput"
          disabled="{{!editState}}"
          adjust-position="{{false}}"
        />
      </view>
    </view>
    <view class="from-item form-input-6">
      <view class="label"> <text class="empty"></text>座机: </view>
      <view class="item-content">
        <t-input
          placeholder="输入座机号"
          borderless
          value="{{teacherInfo.telphone}}"
          tips="{{telphoneError ? '座机号输入不正确' : ''}}"
          bindchange="onTelphoneInput"
          disabled="{{!editState}}"
          bindkeyboardheightchange="bindkeyboardheightchange"
          bindblur="changeParam"
          data-class="form-input-7"
          adjust-position="{{false}}"
        />
      </view>
    </view>
    <view class="from-item form-input-7">
      <view class="label"> <text class="icon">*</text>邮箱: </view>
      <view class="item-content">
        <t-input
          placeholder="输入邮箱"
          borderless
          value="{{teacherInfo.email}}"
          tips="{{emailError ? '邮箱输入不正确' : ''}}"
          bindchange="onEmailInput"
          disabled="{{!editState}}"
          bindkeyboardheightchange="bindkeyboardheightchange"
          bindblur="changeParam"
          data-class="form-input-7"
          adjust-position="{{false}}"
        />
      </view>
    </view>
    <view class="from-item form-input-8">
      <view class="label"> <text class="icon">*</text>详细地址: </view>
      <view class="item-content">
        <t-input
          placeholder="请输入详细地址"
          borderless
          value="{{teacherInfo.detailedAddress}}"
          bindchange="onAddressInput"
          disabled="{{!editState}}"
          adjust-position="{{false}}"
          bindkeyboardheightchange="bindkeyboardheightchange"
          bindblur="changeParam"
          data-class="form-input-8"
        />
      </view>
    </view>
  </view>
  <view class="fileInfoBox">
    <view class="from-item">
      <view class="label"> <text class="icon">*</text>在职教师工作证: </view>
      <view class="imageBox">
        <view class="weui-uploader">
          <view
            class="pics"
            wx:for="{{imgPics}}"
            wx:for-item="item"
            wx:key="*this"
          >
            <image
              class="weui-uploader__img"
              src="{{item.url}}"
              data-index="{{index}}"
              mode="aspectFill"
              bindtap="previewImg"
            >
              <icon
                type="cancel"
                class="delete-btn"
                data-index="{{index}}"
                catchtap="deleteImg"
                wx:if="{{editState}}"
              ></icon>
            </image>
          </view>
          <view
            class="tp_cont {{tj_ycang?'':'hide'}}"
            bindtap="chooseImg"
            wx:if="{{editState}}"
          >
            <view class="tp_add">+</view>
          </view>
        </view>
      </view>
      <view class="fileTip"> 教务处盖章文件、校工卡皆可(不超过5个文件) </view>
    </view>
  </view>
  <view class="protocolBox">
    <t-checkbox
      label=""
      icon="rectangle"
      checked="{{teacherInfo.agree}}"
      bind:change="onChange"
      disabled="{{!editState}}"
    />
    <text class="wait" bind:tap="viewContent">《教师认证服务条款》</text>
  </view>
  <view
    class="btn-area"
    wx:if="{{editState}}"
    style="padding-bottom: {{keyboardHeight ? keyboardHeight + 'rpx' : '20rpx'}}"
  >
    <button class="submit" bindtap="submit">提交</button>
  </view>
</view>
<view class="popupBox">
  <t-popup
    visible="{{protocolShow}}"
    bind:visible-change="onVisibleChange"
    placement="center"
  >
    <view class="block">
      <view class="protocol">
        <rich-text space="emsp" nodes="{{protocolTxt}}" class="content" />
      </view>
      <t-icon
        t-class="close-btn"
        name="close-circle"
        size="32"
        color="#fff"
        bind:tap="onCloseProtocol"
      />
    </view>
  </t-popup>
  <t-popup
    visible="{{reasonTxtShow}}"
    bind:visible-change="onVisibleChange"
    placement="center"
  >
    <view class="reasonBlock">
      <view class="blick-header"> 驳回原因 </view>
      <view class="reasonBox"> {{reasonTxt}} </view>
      <t-icon
        t-class="close-btn"
        name="close-circle"
        size="32"
        color="#fff"
        bind:tap="onCloseReasonTxt"
      />
    </view>
  </t-popup>
</view>
<import src="index.skeleton.wxml" />
<template is="skeleton" wx:if="{{skeletonLoding}}" />