@zscreate/zhxy-app-component 1.0.401 → 1.0.403
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.
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
<text>{{item.name }}</text>
|
|
169
169
|
</view>
|
|
170
170
|
<view v-if="item.options.supportMulti && (verifyLogs && verifyLogs[item.model])" >
|
|
171
|
-
<view v-for="(v_log, idx) in verifyLogsList(item.model)" :key="idx">
|
|
171
|
+
<view v-for="(v_log, idx) in verifyLogsList(item.model)" :key="idx" style="position: relative;">
|
|
172
172
|
<view class="verify-cot">
|
|
173
173
|
<textarea :value="v_log.note" disabled>
|
|
174
174
|
</textarea>
|
|
@@ -185,8 +185,13 @@
|
|
|
185
185
|
<view class="verify-title">{{item.options.operationTime}}</view>
|
|
186
186
|
<view style="flex-shrink: 0">{{v_log['shenpiTime']}}</view>
|
|
187
187
|
</view>
|
|
188
|
+
<!-- 历史审核盖章回显 -->
|
|
189
|
+
<view v-if="v_log.userSeal" class="verify-seal">
|
|
190
|
+
<image :src="resolveSealUrl(v_log.userSeal)" mode="aspectFit" class="verify-seal__img"></image>
|
|
191
|
+
</view>
|
|
188
192
|
</view>
|
|
189
193
|
</view>
|
|
194
|
+
<view style="position: relative;">
|
|
190
195
|
<view class="verify-cot" :style="{position:item.model === verifyNode ? 'initial' : 'relative'}">
|
|
191
196
|
<m-textarea
|
|
192
197
|
v-if="models[item.model]"
|
|
@@ -204,10 +209,18 @@
|
|
|
204
209
|
</m-textarea>
|
|
205
210
|
</view>
|
|
206
211
|
<!-- 盖章按钮 -->
|
|
207
|
-
<view v-if="item.options.enableSeal && item.model === verifyNode && sealCache[item.model] && !(models[item.model] && models[item.model].userSeal) && !warpVerifyDisable(item)"
|
|
212
|
+
<view v-if="(item.type === 'hnkj-verify' && item.options.enableSeal || item.type !== 'hnkj-verify') && item.model === verifyNode && sealCache[item.model] && !(models[item.model] && models[item.model].userSeal) && !warpVerifyDisable(item)"
|
|
208
213
|
class="verify-seal-btn" @tap="handleVerifySeal(item.model)">
|
|
209
214
|
盖章
|
|
210
215
|
</view>
|
|
216
|
+
<!-- 当前审核盖章 -->
|
|
217
|
+
<view v-if="item.model === verifyNode && models[item.model] && models[item.model].userSeal" class="verify-seal">
|
|
218
|
+
<image :src="resolveSealUrl(models[item.model].userSeal)" mode="aspectFit" class="verify-seal__img"></image>
|
|
219
|
+
<view v-if="!warpVerifyDisable(item)" class="verify-seal__close" @tap.stop="handleVerifySealClose(item.model)">
|
|
220
|
+
<text class="verify-seal__close-text">x</text>
|
|
221
|
+
</view>
|
|
222
|
+
</view>
|
|
223
|
+
</view>
|
|
211
224
|
<!-- #ifdef HBSF-MODE -->
|
|
212
225
|
<view style="display: flex;align-items: center;background-color: #fff;padding: 20rpx 30rpx;" v-if="item.model === verifyNode">
|
|
213
226
|
<view style="color: #808080;">推荐审核意见:</view>
|
|
@@ -238,13 +251,6 @@
|
|
|
238
251
|
<view class="verify-title">{{ item.options.operationTime }}</view>
|
|
239
252
|
<view style="flex-shrink: 0" v-if="models[item.model]">{{ models[item.model].operationTime }}</view>
|
|
240
253
|
</view>
|
|
241
|
-
<!-- 当前审核盖章 -->
|
|
242
|
-
<view v-if="item.model === verifyNode && models[item.model] && models[item.model].userSeal" class="verify-seal">
|
|
243
|
-
<image :src="resolveSealUrl(models[item.model].userSeal)" mode="aspectFit" class="verify-seal__img"></image>
|
|
244
|
-
<view v-if="!warpVerifyDisable(item)" class="verify-seal__close" @tap.stop="handleVerifySealClose(item.model)">
|
|
245
|
-
<text class="verify-seal__close-text">x</text>
|
|
246
|
-
</view>
|
|
247
|
-
</view>
|
|
248
254
|
<!-- 回显盖章 -->
|
|
249
255
|
<view v-if="item.model !== verifyNode && models[item.model] && models[item.model].userSeal" class="verify-seal">
|
|
250
256
|
<image :src="resolveSealUrl(models[item.model].userSeal)" mode="aspectFit" class="verify-seal__img"></image>
|
|
@@ -1729,7 +1735,7 @@ $mybottom: 0; //底部按钮
|
|
|
1729
1735
|
.verify-seal {
|
|
1730
1736
|
position: absolute;
|
|
1731
1737
|
left: 200rpx;
|
|
1732
|
-
top:
|
|
1738
|
+
top: 180rpx;
|
|
1733
1739
|
width: 260rpx;
|
|
1734
1740
|
height: 260rpx;
|
|
1735
1741
|
z-index: 10;
|