123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <div>
- <div class="ubmit">
- <div class="imgparent">
- <van-nav-bar
- title="提交"
- left-text="返回"
- left-arrow
- @click-left="onClickLeft"
- />
- </div>
- <div class="bottom">
- <img
- src="../assets/img/pic_tjxx_sus.png"
- alt=""
- >
- <p>您的请假信息已提交成功请等待审批</p>
- <span @click="fanhu ">返回首页</span>
- </div>
- <p></p>
- </div>
- </div>
- </template>
- <script>
- export default {
- props: ["detailitem"],
- methods: {
- pathPush() {},
- onClickLeft() {
- this.$router.go(-1)
- },
- fanhu(){
-
- }
- }
- };
- </script>
- <style scoped lang="less">
- .ubmit {
- height: 100vh;
- background: #fff;
- .bottom {
- display: flex;
- flex-direction: column;
- align-items: center;
- p {
- font-size: 3.733vw;
- font-family: PingFang SC;
- font-weight: 600;
- color: #343434;
- line-height: 5.6vw;
- text-align: center;
- width: 42%;
- }
- span {
- font-size: 2.933vw;
- font-family: PingFang SC;
- font-weight: 500;
- color: #aaaaaa;
- line-height: 5.6vw;
- position: fixed;
- bottom: 28vw;
- }
- img{
- widows: 16.267vw;
- height: 19.2vw;
- margin-top: 24vw;
- margin-bottom: 10.667vw;
- }
- }
- }
- </style>
|