bug
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
<img src="./components/img/fail.png" alt="" v-else>
|
<img src="./components/img/fail.png" alt="" v-else>
|
||||||
<p>{{status == 1 ? '信息申报成功!' : '信息申报失败!'}}</p>
|
<p>{{status == 1 ? '信息申报成功!' : '信息申报失败!'}}</p>
|
||||||
<p class="text">{{status == 1 ? '重新进入即可开始正常使用' : '系统无法匹配该申报信息,请联系管理人员进行处理'}}</p>
|
<p class="text">{{status == 1 ? '重新进入即可开始正常使用' : '系统无法匹配该申报信息,请联系管理人员进行处理'}}</p>
|
||||||
<div class="footer" @click="back">{{status ? '确定' : '我知道了'}}</div>
|
<div class="footer" @click="back">{{status == 1 ? '确定' : '我知道了'}}</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -207,6 +207,12 @@
|
|||||||
<AiFixedBtn v-if="currIndex === 1">
|
<AiFixedBtn v-if="currIndex === 1">
|
||||||
<div class="addBtn iconfont iconfont-iconfangda" @tap="toAddLog"></div>
|
<div class="addBtn iconfont iconfont-iconfangda" @tap="toAddLog"></div>
|
||||||
</AiFixedBtn>
|
</AiFixedBtn>
|
||||||
|
<AiFixedBtn v-if="currIndex != 1">
|
||||||
|
<div class="footer-btn">
|
||||||
|
<div @click="cancel">驳回申请</div>
|
||||||
|
<div class="confirm-btn" @click="confirm">纳入监测</div>
|
||||||
|
</div>
|
||||||
|
</AiFixedBtn>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -263,7 +269,6 @@ export default {
|
|||||||
if (query.isFrom) {
|
if (query.isFrom) {
|
||||||
this.isFrom = true
|
this.isFrom = true
|
||||||
}
|
}
|
||||||
uni.showLoading()
|
|
||||||
this.$dict.load(['fpType', 'riskEliminationMethod', 'fpRiskType', 'fpYesOrNo']).then(() => {
|
this.$dict.load(['fpType', 'riskEliminationMethod', 'fpRiskType', 'fpYesOrNo']).then(() => {
|
||||||
this.getInfo(query.id)
|
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);
|
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>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user