You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.1 KiB
78 lines
1.1 KiB
<template>
|
|
<div class="bg-caiji-success">
|
|
<div class="title">
|
|
居民信息填报
|
|
</div>
|
|
|
|
<div class="main">
|
|
|
|
<div class="icon-success">
|
|
<i class="el-icon-circle-check "></i>
|
|
</div>
|
|
<div class="success-content"> 提交成功</div>
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
|
|
|
|
import { requestPost } from "@/js/dai/request";
|
|
import { Toast } from "mint-ui";
|
|
import { MessageBox } from 'mint-ui';
|
|
|
|
let loading // 加载动画
|
|
export default {
|
|
data () {
|
|
return {
|
|
|
|
|
|
}
|
|
},
|
|
components: {},
|
|
computed: {
|
|
|
|
},
|
|
created () { },
|
|
mounted () {
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped >
|
|
@import "@/assets/scss/pages/caiji.scss";
|
|
|
|
.my-field /deep/ .mint-field-core {
|
|
text-align: right;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
/deep/ .mint-popup-bottom {
|
|
width: 100vw;
|
|
}
|
|
|
|
.picker-toolbar-title {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
background-color: #eee;
|
|
height: 44px;
|
|
line-height: 44px;
|
|
font-size: 16px;
|
|
.usi-btn-cancel,
|
|
.usi-btn-sure {
|
|
color: #26a2ff;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
</style>
|
|
|