vue2-client 1.22.29 → 1.22.30
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/package.json
CHANGED
|
@@ -265,7 +265,6 @@ import ImagePreviewModal from '@vue2-client/base-client/components/common/ImageP
|
|
|
265
265
|
import { printWithHtmlToImage, exportToPDFWithJpeg } from '@vue2-client/utils/htmlToImage'
|
|
266
266
|
import { runLogic } from '@vue2-client/services/api/common'
|
|
267
267
|
import { executeStrFunctionByContext } from '@vue2-client/utils/runEvalFunction'
|
|
268
|
-
|
|
269
268
|
export default {
|
|
270
269
|
name: 'XInspectionDetailDrawer',
|
|
271
270
|
components: {
|
|
@@ -467,7 +466,7 @@ export default {
|
|
|
467
466
|
//遍历隐患明细,获取隐患处理后照片
|
|
468
467
|
for (let i = 0; i < data.hazardList.length; i++) {
|
|
469
468
|
let param = { defectId:data.hazardList[i].id }
|
|
470
|
-
const res = await
|
|
469
|
+
const res = await runLogic('getDefectDetailList', param,'af-safecheck')
|
|
471
470
|
data.hazardList[i].handleimages=res[0].handleimages
|
|
472
471
|
}
|
|
473
472
|
this.inspectionData = {
|