Files
dvcp_v2_wxcp_app/src/apps/AppWarningMonitoring/result.vue

95 lines
1.7 KiB
Vue
Raw Normal View History

2022-03-24 11:02:59 +08:00
<template>
2022-03-24 14:32:23 +08:00
<div class="result">
<div class="type">
<div class="left">
<span>*</span><span>处理结果</span>
</div>
<div class="right">
<AiSelect v-model="result" dict="" />
</div>
</div>
<div class="remark">
<div class="top">
<span>*</span><span>备注说明</span>
</div>
<div class="bottom">
<u-input type="textarea" v-model="value" placeholder="请简要说明情况" maxlength="500" height="200"/>
</div>
</div>
<div class="picture">
<div class="top">
<span style="margin-right: 8px"></span><span>图片<span style="color: #999;font-size:14px;">最多9张</span></span>
</div>
<div class="bottom">
<img src="./img/phone.png" alt="">
</div>
</div>
</div>
2022-03-24 11:02:59 +08:00
</template>
<script>
export default {
data() {
2022-03-24 14:32:23 +08:00
return {
result: '',
value: ''
}
2022-03-24 11:02:59 +08:00
},
methods: {},
onShow() {
document.title = "处理结果"
}
}
</script>
<style lang="scss" scoped>
.result {
2022-03-24 14:32:23 +08:00
.type {
height: 112px;
line-height: 112px;
background: #FFF;
font-size: 32px;
display: flex;
justify-content: space-between;
padding: 0 32px;
box-sizing: border-box;
.left {
span:first-child {
color: #FF4466;
}
span:last-child {
color: #333333;
}
}
.right {
}
}
.remark,
.picture {
box-sizing: border-box;
margin-top: 16px;
background: #FFF;
padding: 0 32px;
font-size: 32px;
.top {
padding-top: 20px;
span:first-child {
color: #FF4466;
}
span:last-child {
color: #333333;
}
}
.bottom {
img {
margin: 30px 0;
}
}
}
2022-03-24 11:02:59 +08:00
}
</style>