This commit is contained in:
shijingjing
2022-02-16 18:53:12 +08:00
parent e4f4dd72a7
commit fae3f04927
4 changed files with 103 additions and 107 deletions

View File

@@ -2,22 +2,22 @@
<div class="detail">
<div class="detail-list">
<div class="detail-info">
<div class="detail-name">申请人:<span>李毅</span></div>
<div class="detail-type">新冠疫苗接种</div>
<!-- <AiOpenData type="userName" :openid="form.corpId" style="display: inline-block;"/> -->
<div class="detail-name">申请人:<span>{{form.corpId}}</span></div>
<div class="detail-type">{{ $dict.getLabel('atWillReportType',form.applyIntegralType) }}</div>
</div>
<div class="detail-area">
<div class="time">2020-05-06 13:45</div>
<div class="time">{{ form.createTime }}</div>
<div class="address">
<img src="./img/address.png" alt="">
<span>新港镇三联村</span>
<span>{{ form.areaId }}</span>
</div>
</div>
<div class="detail-text">
经村两委及村篮球队青年商讨决定我村赴黎平参加百村杯篮球赛经费分两阶段分发第一阶段为小组循环赛第二阶段为淘汰赛
第一阶段费用预计一万元整其中包括队员球服两套住宿饮食
{{ form.description }}
</div>
<div class="detail-img">
<img :src="item.url" alt="" v-for="(item, i) in data.files" :key="i" @click="previewImage(data.files, item.url)" />
<img :src="item.url" alt="" v-for="(item, i) in form.applyFiles" :key="i" @click="previewImage(form.applyFiles, item.url)" />
</div>
</div>
@@ -115,6 +115,7 @@ export default {
name: 'detail',
data () {
return {
id: '',
data: {
files: [],
},
@@ -124,18 +125,56 @@ export default {
isShowType: false,
isShowOption: false,
getList: [],
reason: ''
reason: '',
form: {
uploadUserName: '',
applyIntegralType: '',
areaId: "",
auditIntegral: null,
auditIntegralType: null,
auditOpinion: null,
auditRuleId: null,
auditRuleName: null,
auditStatus: "0",
auditTime: null,
auditUserId: null,
auditUserName: null,
corpId: '',
createTime: "2022-02-16 17:16:18",
createTimeEnd: null,
createTimeStart: null,
description: "是的1",
familyId: null,
familyName: null,
id: "dedaae6e992c4f4c9670a88a726939be",
residentId: "fba455ddf8e9494da93a533e8da57989",
residentName: "陶瑞武",
residentPhone: "15802784240",
}
}
},
onLoad(o) {
this.$dict.load('atWillReportType','integralDeclareStatus').then(()=>{
this.id = o.id
this.getDetail()
})
},
methods: {
previewImage() {}
previewImage() {},
getDetail() {
this.$http.post(`/app/appvillagerintegraldeclare/queryDetailById?id=${this.id}`).then(res => {
console.log(res);
if(res.code==0) {
this.form = res.data
}
})
}
},
onShow() {
document.title = '积分审核'
},
onLoad() {
// this.$dict.load('yesOrNo')
},
}
</script>
@@ -192,6 +231,7 @@ export default {
.detail-text {
color: #333333;
font-size: 30px;
margin-bottom: 30px;
}
.detail-img {