1
0
forked from dyf/APP

添加102联机记录

This commit is contained in:
liub
2026-03-05 10:06:37 +08:00
parent aa87a1a78f
commit c1c7d4491b
43 changed files with 4732 additions and 745 deletions

View File

@ -10,6 +10,7 @@
<view class="example-body">
<!-- 图片列表 -->
<view class="image-list">
<view class="image-item" v-for="(image, index) in instructionImages" :key="index"
@click="handleImageClick(index,image)">
<image :src="image.fileUrl" mode="aspectFit" class="instruction-image"
@ -71,6 +72,7 @@
fileList: [],
deviceID: "",
instructionImages: [],
typeImgs:[],//该设备类型的官方数据
isDeleteMode: false, // 是否删除模式
selectedImages: [], // 选中的图片索引
deleteShow: false,
@ -225,7 +227,8 @@
},
onLoad(options) {
this.deviceID = options.id
this.callOtherApi()
this.callOtherApi();
}
}
</script>