This commit is contained in:
liuye
2022-03-25 11:36:44 +08:00
parent 0bfbc9c49a
commit 30d3a94692
2 changed files with 39 additions and 2 deletions

View File

@@ -207,6 +207,12 @@
<AiFixedBtn v-if="currIndex === 1">
<div class="addBtn iconfont iconfont-iconfangda" @tap="toAddLog"></div>
</AiFixedBtn>
<AiFixedBtn v-if="currIndex != 1">
<div class="footer-btn">
<div @click="cancel">驳回申请</div>
<div class="confirm-btn" @click="confirm">纳入监测</div>
</div>
</AiFixedBtn>
</div>
</template>
@@ -263,7 +269,6 @@ export default {
if (query.isFrom) {
this.isFrom = true
}
uni.showLoading()
this.$dict.load(['fpType', 'riskEliminationMethod', 'fpRiskType', 'fpYesOrNo']).then(() => {
this.getInfo(query.id)
})
@@ -365,6 +370,18 @@ export default {
})
}
})
},
cancel() {
this.$confirm('', '您确认要驳回此居民的监测对象申请吗?').then(() => {
})
},
confirm() {
this.$confirm('', '您确认要将此居民纳入监测对象吗?').then(() => {
})
}
}
}
@@ -612,5 +629,25 @@ export default {
transform: rotate(0deg);
}
}
.footer-btn{
width: 100%;
height: 112px;
line-height: 112px;
background: #FFF;
display: flex;
box-shadow: inset 0px 1px 0px 0px #DDDDDD;
div{
flex: 1;
text-align: center;
font-size: 32px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #333;
}
.confirm-btn{
background-color: #3192F4;
color: #fff;
}
}
}
</style>