防返贫

This commit is contained in:
liuye
2022-03-26 16:55:09 +08:00
parent 95bd2d642f
commit 4687d91dcc
3 changed files with 6 additions and 6 deletions

View File

@@ -196,8 +196,8 @@
</div> </div>
</div> </div>
<p>{{ item.detail }}</p> <p>{{ item.detail }}</p>
<div class="imgs" v-if="item.filies && item.filies.length"> <div class="imgs" v-if="item.files && item.files.length">
<image :src="img.url" @click="prevImg(item.imgs, img.url)" v-for="(img, index) in item.filies" <image :src="img.url" @click="prevImg(item.imgs, img.url)" v-for="(img, index) in item.files"
:key="index"/> :key="index"/>
</div> </div>
</div> </div>

View File

@@ -13,7 +13,7 @@
<i>最多9张</i> <i>最多9张</i>
</div> </div>
<div> <div>
<AiUploader :limit="9" multiple :def.sync="filies"></AiUploader> <AiUploader :limit="9" multiple :def.sync="files"></AiUploader>
</div> </div>
</div> </div>
<div class="btn" @click="submit">提交</div> <div class="btn" @click="submit">提交</div>
@@ -27,7 +27,7 @@ export default {
return { return {
detail: '', detail: '',
pid: '', pid: '',
filies: [] files: []
} }
}, },
@@ -47,7 +47,7 @@ export default {
} }
this.$http.post('/app/apppreventionreturntopovertylog/addOrUpdate', { this.$http.post('/app/apppreventionreturntopovertylog/addOrUpdate', {
detail: this.detail, detail: this.detail,
filies: this.filies, files: this.files,
pid: this.pid, pid: this.pid,
}).then(res => { }).then(res => {
if (res.code === 0) { if (res.code === 0) {

View File

@@ -5,7 +5,7 @@
<image :src="$cdn + 'wdbf.png'"/> <image :src="$cdn + 'wdbf.png'"/>
<h2>监测对象</h2> <h2>监测对象</h2>
</div> </div>
<div class="info-top__item" @click="linkTo('./povertyMonitor')"> <div class="info-top__item" @click="linkTo('../AppWarningMonitoring/AppWarningMonitoring')">
<image :src="$cdn + 'yjjk.png'"/> <image :src="$cdn + 'yjjk.png'"/>
<h2>预警监控</h2> <h2>预警监控</h2>
</div> </div>