This commit is contained in:
liuye
2023-12-26 14:05:33 +08:00
parent 25ab3a9517
commit 454c40e351
3 changed files with 48 additions and 15 deletions

View File

@@ -58,6 +58,15 @@
</div>
</div>
</div>
<div class="item">
<span class="tips">*</span>
<div class="text-label">
<div class="label">我要上报的事情</div>
</div>
<div class="text-value">
<u-input type="textarea" placeholder="请输入" :height="300" input-align="left" v-model="info.reportThing" :clearable="false" maxlength="500"></u-input>
</div>
</div>
</div>
<div class="bottom-btn">
<!-- <div class="confirm" @click="confirm('保存成功')">保存内容</div> -->
@@ -138,7 +147,10 @@ export default {
// if(this.info.householdNumber == null || !this.info.householdNumber) {
// return this.$u.toast('请输入家庭人口数')
// }
this.$u.toast(successText)
// this.showModel = true
this.$confirm('已流转到城管部门处理', '上报成功').then(() => {
this.back()
})
},
back() {
uni.navigateBack({delta: 2})
@@ -169,21 +181,21 @@ uni-page-body {
font-size: 32px;
color: #F46;
}
.label {
font-family: PingFangSC-Regular;
font-size: 32px;
color: #333;
line-height: 44px;
width: 240px;
}
.item-border {
padding: 34px 32px 34px 0;
width: 100%;
box-sizing: border-box;
border-bottom: 1px solid #D8DDE6;
display: flex;
.label {
font-family: PingFangSC-Regular;
font-size: 32px;
color: #333;
line-height: 44px;
width: 200px;
}
.value {
width: calc(100% - 200px);
width: calc(100% - 240px);
text-align: right;
.u-input {
display: inline-block;
@@ -202,6 +214,15 @@ uni-page-body {
}
}
}
.text-label {
padding: 34px 32px 34px 0;
}
.text-value {
padding-right: 32px;
::v-deep .uni-textarea-textarea{
font-size: 28px;
}
}
}
}
.bottom-btn {