1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <view class='img-list'>
- <view @click="img(item,index)" v-for="(item,index) in list" :key="index" class="img-list-item">
-
- <image style="width: 100%;height: 100%; border-radius: 10rpx;" :src="item" mode=""></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "imgList",
- props: {
- list: {
- type: Array,
- default: () => []
- }
- },
- data() {
- return {
- };
- },
- methods: {
- img(item, index) {
- uni.previewImage({
- urls: this.list, //需要预览的图片http链接列表,多张的时候,url直接写在后面就行了
- current: index, // 当前显示图片的http链接,默认是第一个
- success: function(res) {},
- fail: function(res) {},
- complete: function(res) {},
- })
- },
- goList(){
- this.$emit('click')
- }
- },
- computed: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .img-list {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- }
- .img-list-item {
- margin-bottom: 20rpx;
- margin-right: 25rpx;
- position: relative;
- width: 192rpx;
- height: 192rpx;
- border-radius: 10rpx;
- overflow: hidden;
- .img-list-item-bgc {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- background-color: rgba(0, 0, 0, .5);
- z-index: 111;
- color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 48rpx;
- }
- }
- .img-list-item:nth-child(3n) {
- margin-right: 0;
- }
- </style>
|