64 lines
1.7 KiB
Vue
64 lines
1.7 KiB
Vue
<!-- +----------------------------------------------------------------------
|
||
| 麦沃德科技赋能开发者,助力商协会发展
|
||
+----------------------------------------------------------------------
|
||
| Copyright (c) 2017~2024 www.wdsxh.cn All rights reserved.
|
||
+----------------------------------------------------------------------
|
||
| 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
|
||
+----------------------------------------------------------------------
|
||
| Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
|
||
+----------------------------------------------------------------------
|
||
| 证书查询结果 开发者: 麦沃德科技-半夏
|
||
+---------------------------------------------------------------------- -->
|
||
|
||
<template>
|
||
<view class="container">
|
||
<!-- 标题栏 -->
|
||
<title-bar :showBack="true" title="查询结果"></title-bar>
|
||
<!-- 内容区 -->
|
||
<view class="container-main">
|
||
<image class="main-image" :src="item" mode="widthFix" v-for="(item, index) in imageList" :key="index" @click="previewImage(index)"></image>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
// 图片列表
|
||
imageList: [],
|
||
};
|
||
},
|
||
onLoad(option) {
|
||
this.imageList = JSON.parse(option.images);
|
||
},
|
||
methods: {
|
||
// 预览图片
|
||
previewImage(index) {
|
||
uni.previewImage({
|
||
urls: this.imageList,
|
||
current: index
|
||
});
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
page {
|
||
background: #FFF;
|
||
}
|
||
|
||
.container {
|
||
.container-main {
|
||
padding: 48rpx 64rpx;
|
||
display: flex;
|
||
flex-direction: column;
|
||
row-gap: 32rpx;
|
||
|
||
.main-image {
|
||
width: 100%;
|
||
}
|
||
}
|
||
}
|
||
</style> |