sale-client 3.6.596 → 3.6.597
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.
- package/.gradle/8.5/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.5/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/.gradle/file-system.probe +0 -0
- package/package.json +1 -1
- package/src/components/revenue/base/leftview/SafeCheck.vue +11 -8
- package/src/filiale/shanxian/components/charge/SafeCheck.vue +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Mon Oct 13 09:26:02 CST 2025
|
|
2
2
|
gradle.version=5.2.1
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
let getSafeCheck = await http.load('POST', 'rs/logic/getSafecheck', param, {resolveMsg: null, rejectMsg: null})
|
|
241
241
|
if (!(JSON.stringify(getSafeCheck.data) == '{}')) {
|
|
242
242
|
self.model = {}
|
|
243
|
-
self.model = Object.assign({},
|
|
243
|
+
self.model = Object.assign({}, getSafeCheck.data)
|
|
244
244
|
self.hasCheck = 1
|
|
245
245
|
} else {
|
|
246
246
|
self.hasCheck = 0
|
|
@@ -286,13 +286,16 @@
|
|
|
286
286
|
}
|
|
287
287
|
},
|
|
288
288
|
watch: {
|
|
289
|
-
'data'
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
289
|
+
'data': {
|
|
290
|
+
handler (newVal, oldVal) {
|
|
291
|
+
if (newVal == null) {
|
|
292
|
+
this.hasCheck = 0
|
|
293
|
+
this.model = {}
|
|
294
|
+
} else {
|
|
295
|
+
getSafeCheckGen(this)
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
deep: true
|
|
296
299
|
}
|
|
297
300
|
}
|
|
298
301
|
}
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
<td colspan="1" v-if="model.ajresult && (model.ajresult.indexOf('有隐患') >= 0)" style="text-align: center;border: #E9E9E9 solid 1px;color:red;">{{ model.ajresult }}</td>
|
|
126
126
|
</tr>
|
|
127
127
|
<tr>
|
|
128
|
-
<td colspan="1" v-if="model.ajresult && (model.ajresult.indexOf('有隐患') >= 0)" style="text-align: center;border: #E9E9E9 solid 1px;color:red;"
|
|
128
|
+
<td colspan="1" v-if="model.ajresult && (model.ajresult.indexOf('有隐患') >= 0)" style="text-align: center;border: #E9E9E9 solid 1px;color:red;">安检内容:</td>
|
|
129
129
|
<td colspan="3" v-if="model.ajresult && (model.ajresult.indexOf('有隐患') >= 0)" style="text-align: center;border: #E9E9E9 solid 1px;word-wrap:break-word;word-break:break-all;width:87%;color:red;">
|
|
130
130
|
<span v-for="deviceCollect in model.deviceCollects">
|
|
131
131
|
<span class="li-font">
|