Files
dvcp_v2_wxcp_app/src/apps/AppIntegralAudit/detail.vue
shijingjing 6846120b92 头像转换
2022-02-15 09:09:50 +08:00

62 lines
1.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="detail">
<div class="detail-list">
<div>
<div>申请人:<div>李毅</div></div>
<div>新冠疫苗接种</div>
</div>
<div>
<div>2020-05-06 13:45</div>
<div>
<img src="" alt="">
<div>新港镇三联村</div>
</div>
</div>
<div>
经村两委及村篮球队青年商讨决定我村赴黎平参加百村杯篮球赛经费分两阶段分发第一阶段为小组循环赛第二阶段为淘汰赛
第一阶段费用预计一万元整其中包括队员球服两套住宿饮食
</div>
<div>
<img :src="item.url" alt="" v-for="(item, i) in data.files" :key="i" @click="previewImage(data.files, item.url)" />
</div>
</div>
</div>
</template>
<script>
export default {
name: 'detail',
data () {
return {
data: {
files: []
}
}
},
methods: {
previewImage() {}
},
onShow() {
document.title = '积分审核'
},
onLoad() {
// this.$dict.load('yesOrNo')
},
}
</script>
<style lang="scss" scoped>
.detail {
img {
width: 220px;
height: 220px;
margin-right: 8px;
}
img:nth-child(3n) {
margin-right: 0;
}
}
</style>