|
@@ -300,7 +300,7 @@
|
|
|
v-slot:materialUploadSuccessIcon="slotProps"
|
|
|
>
|
|
|
<img
|
|
|
- :src="slotProps.uploadInfo.successInfo[slotProps.tableItemStructure.key] + $imgsuffix"
|
|
|
+ :src="slotProps.uploadInfo.successInfo[slotProps.tableItemStructure.key]"
|
|
|
alt=""
|
|
|
/>
|
|
|
</template>
|
|
@@ -326,7 +326,7 @@
|
|
|
v-slot:materialIcon="slotProps"
|
|
|
>
|
|
|
<img
|
|
|
- :src="slotProps.materialInfo[slotProps.tableItemStructure.key] + $imgsuffix"
|
|
|
+ :src="slotProps.materialInfo[slotProps.tableItemStructure.key]"
|
|
|
alt=""
|
|
|
/>
|
|
|
</template>
|
|
@@ -501,7 +501,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
videoMaterialItemCustomProcess(item) {
|
|
|
- item.icon = process.env.VUE_APP_ORIGIN == 'aws' ? item.icon : (item.ossPath + '?x-oss-process=video/snapshot,t_0,f_jpg,w_89,h_50,m_fast,ar_auto')
|
|
|
+ item.icon = process.env.VUE_APP_ORIGIN == 'aws' ? item.icon : (item.ossPath + this.$videoImg)
|
|
|
},
|
|
|
onClickComfirm: debounce(function () {
|
|
|
this.$emit('submit', this.select)
|