36 lines
744 B
Vue
36 lines
744 B
Vue
<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="closeWindow()">返回</el-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Vue from 'vue';
|
|
import { Icon } from 'vant';
|
|
|
|
Vue.use(Icon);
|
|
export default {
|
|
name: "processedPage",
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {
|
|
closeWindow(){
|
|
window.location.href="about:blank";
|
|
window.close();
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
@import '~@/assets/styles/phone';
|
|
.processedPage {
|
|
text-align: center;
|
|
margin-top: 55%;
|
|
}
|
|
|
|
</style>
|