feat: There is no way the,iphone config

This commit is contained in:
super_liu
2021-12-22 15:20:28 +08:00
parent 6fd9053bde
commit f78853d4c5
4 changed files with 109 additions and 44 deletions
+30
View File
@@ -0,0 +1,30 @@
<template>
<div class="processedPage">
<van-icon name="checked" color="#1fcd24" size="70"/>
<div style="font-size: 15px;margin-top: 20px;color: #8c939d">当前任务已处理</div>
<el-button type="primary" size="small" style="margin-top: 30px;width: 270px;" @click="$router.go(-1)">返回</el-button>
</div>
</template>
<script>
import Vue from 'vue';
import { Icon } from 'vant';
Vue.use(Icon);
export default {
name: "processedPage",
data() {
return {}
},
methods: {}
}
</script>
<style lang="less" scoped>
@import '~@/assets/styles/phone';
.processedPage {
text-align: center;
margin-top: 55%;
}
</style>