feat:禅道282

This commit is contained in:
shijing 2026-01-08 10:29:11 +08:00
parent 20229df433
commit 9a10bc78e8
1 changed files with 9 additions and 1 deletions

View File

@ -35,6 +35,12 @@
<el-image
style="width: 100px; height: 100px"
:src="imageUrl"
:zoom-rate="1.2"
:max-scale="7"
:min-scale="0.2"
:preview-src-list="srcList"
show-progress
:initial-index="0"
fit="fill"
/>
</el-descriptions-item>
@ -497,6 +503,7 @@ export default {
count_use: 0,
count_pn_jgqbl: 0,
},
srcList:[],
fileList:[],
options: [],
tableData:[],
@ -604,7 +611,8 @@ export default {
let params_json = routeRes.params_json;
if(params_json.fileurl){
let fileurl = JSON.parse(params_json.fileurl);
that.imageUrl = fileurl[0].file;
that.imageUrl = fileurl[0].path;
that.srcList.push(fileurl[0].path);
}
})
}