This commit is contained in:
shijingjing
2022-04-20 11:48:27 +08:00
parent c04c89507c
commit 5f23c94af8
3 changed files with 39 additions and 3 deletions

View File

@@ -19,9 +19,9 @@
<div>
<div class="title"><span style="color: #FF4466">*</span>事件描述</div>
<div>
<u-input type="textarea" v-model="form.description" placeholder="请输入事件内容描述" height="200" maxlength="500"/>
<u-input type="textarea" v-model="form.description" placeholder="请输入事件内容描述" height="200" maxlength="200"/>
</div>
<div class="tips">{{form.description.length}}/500</div>
<div class="tips">{{form.description.length}}/200</div>
</div>
<div class="btn">

View File

@@ -101,7 +101,6 @@ export default {
}
}).then(res => {
if(res.code ==0) {
console.log(res);
this.data = res.data.resident
}
})