城阳pc工作端前端代码
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.

70 lines
1.7 KiB

<template>
<div class="">
<div class="content_box">
<div class="left">
<i class="el-icon-success" style="font-size: 50px; color: #1cc58c;"></i>
<p>导入完成</p>
</div>
<div class="right">
<h4>
<el-icon
class="el-icon-warning-outline"
style="color: #0056d6; font-size: 18px; font-weight: 600"
></el-icon>
操作说明
</h4>
<p>1可以到居民信息中查看本次导入的数据</p>
<p>2导入失效的数据,您可以下载失败文件修改后,重新创建任务导入</p>
</div>
</div>
<h3 class="title-small">数据导入明细</h3>
</div>
</template>
<script>
import { requestPost } from "@/js/dai/request";
export default {
data() {
return {
form: {
importCategory: null,
taskName: null,
},
rules: {
importCategory: [
{ required: true, message: "请选择任务类型", trigger: "change" },
],
taskName: [
{ required: true, message: "请输入任务名称", trigger: "change" },
],
},
resident_category_import_list: [],
};
},
props: {},
created() {},
methods: {
handelClickUpload() {
this.$emit("handelClickUpload");
},
handelClickBack() {
// this.$emit("handelClickBack");
},
},
components: {},
computed: {},
watch: {},
};
</script>
<style lang="scss" scoped>
@import "@/assets/scss/buttonstyle.scss";
@import "@/assets/scss/modules/management/detail-main.scss";
@import "@/assets/scss/pages/smartImport.scss";
.left {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #838383;
}
</style>