@zscreate/zhxy-app-component 1.0.274 → 1.0.275

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -149,12 +149,19 @@
149
149
  </view>
150
150
  <view class="verify-cot" :style="{position:item.model === verifyNode ? 'initial' : 'relative'}">
151
151
  <m-textarea
152
+ v-if="models[item.model]"
152
153
  :max-length="item.options.commentsLength"
153
154
  show-word-limit
154
155
  :value="models[item.model].comments"
155
156
  :disabled="warpVerifyDisable(item)" :placeholder="item.options.placeholder"
156
157
  @change="val => handlerText(val, item.model)">
157
158
  </m-textarea>
159
+ <m-textarea
160
+ v-else
161
+ disabled
162
+ :placeholder="item.options.placeholder"
163
+ >
164
+ </m-textarea>
158
165
  </view>
159
166
  <!-- #ifdef HBSF-MODE -->
160
167
  <view style="display: flex;align-items: center;background-color: #fff;padding: 20rpx 30rpx;" v-if="item.model === verifyNode">
@@ -181,15 +188,15 @@
181
188
  </view>
182
189
  <view v-if="warpVerifyDisable(item)" class="verify-cot">
183
190
  <view class="verify-title">{{item.options.operation}}</view>
184
- <view>{{models[item.model].operationShow || models[item.model].operation}}</view>
191
+ <view v-if="models[item.model]">{{models[item.model].operationShow || models[item.model].operation}}</view>
185
192
  </view>
186
193
  <view class="verify-cot">
187
194
  <view class="verify-title">{{ item.options.operator }}</view>
188
- <view>{{ models[item.model].operator }}</view>
195
+ <view v-if="models[item.model]">{{ models[item.model].operator }}</view>
189
196
  </view>
190
197
  <view class="verify-cot">
191
198
  <view class="verify-title">{{ item.options.operationTime }}</view>
192
- <view>{{ models[item.model].operationTime }}</view>
199
+ <view v-if="models[item.model]">{{ models[item.model].operationTime }}</view>
193
200
  </view>
194
201
  </view>
195
202
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zscreate/zhxy-app-component",
3
- "version": "1.0.274",
3
+ "version": "1.0.275",
4
4
  "private": false,
5
5
  "description": "zhxy-app-component",
6
6
  "main": "index.js",