|
|
<template>
|
|
|
<div>
|
|
|
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
|
|
|
<el-row>
|
|
|
<el-form-item class="query-form-item">
|
|
|
<el-select v-model="filterQuery.isCheck" placeholder="审核状态">
|
|
|
<el-option label="全部" value=""></el-option>
|
|
|
<el-option label="未审核" value="0"></el-option>
|
|
|
<el-option label="已审核" value="1"></el-option>
|
|
|
<el-option label="未通过" value="2"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item class="query-form-item">
|
|
|
<el-input v-model="filterQuery.customerName" placeholder="企业名称"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button-group>
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
icon="el-icon-refresh"
|
|
|
@click="onReset"
|
|
|
></el-button>
|
|
|
<el-button type="primary" icon="search" @click="onSubmit"
|
|
|
>查询
|
|
|
</el-button
|
|
|
>
|
|
|
</el-button-group>
|
|
|
</el-form-item>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%">
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
<el-table-column label="企业名称" prop="companyName" width="230"></el-table-column>
|
|
|
<el-table-column label="IMEI唯一识别码" prop="imei" width="230"></el-table-column>
|
|
|
<el-table-column label="登记说明" prop="remark"></el-table-column>
|
|
|
<el-table-column label="申请人" prop="applicant"></el-table-column>
|
|
|
<el-table-column label="审核状态" prop="isCheck" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ checkFlag[scope.row.isCheck] }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="注册时间" prop="date"></el-table-column>
|
|
|
<el-table-column label="审核时间" prop="auditTime"></el-table-column>
|
|
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
type="text"
|
|
|
size="small"
|
|
|
v-if="scope.row.isCheck !== 1"
|
|
|
@click.native.stop="checkDialog(scope.row)"
|
|
|
>审核
|
|
|
</el-button
|
|
|
>
|
|
|
|
|
|
<el-button
|
|
|
type="text"
|
|
|
size="small"
|
|
|
@click.native.stop="editDialog(scope.row)"
|
|
|
>编辑
|
|
|
</el-button
|
|
|
>
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
type="text"
|
|
|
size="small"
|
|
|
@click.native.stop="deleteDialog(scope.row)"
|
|
|
>删除
|
|
|
</el-button
|
|
|
>
|
|
|
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<el-dialog
|
|
|
title="审核"
|
|
|
:close-on-click-modal="false"
|
|
|
:close-on-press-escape="false"
|
|
|
:visible.sync="centerDialogVisible"
|
|
|
width="30%"
|
|
|
center
|
|
|
>
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
<el-col :span="6">
|
|
|
<div class="ao-text">
|
|
|
<span>IMEI:</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-input
|
|
|
size="small"
|
|
|
placeholder=""
|
|
|
v-model="checkQuery.imei"
|
|
|
disabled
|
|
|
></el-input>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row :gutter="20" class="el-row" type="flex" style="margin-top: 10px">
|
|
|
<el-col :span="6">
|
|
|
<div class="ao-text">
|
|
|
<span>登记说明:</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-input
|
|
|
size="small"
|
|
|
placeholder=""
|
|
|
v-model="checkQuery.remark"
|
|
|
></el-input>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<span slot="footer" class="dialog-footer" style="margin-top: 40px">
|
|
|
<el-button @click="cancelDialog">取消</el-button>
|
|
|
<el-button type="primary" @click="passRegister">通过</el-button>
|
|
|
<el-button type="primary" @click="noPassRegister">不通过</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
title="编辑"
|
|
|
:close-on-click-modal="false"
|
|
|
:close-on-press-escape="false"
|
|
|
:visible.sync="editDialogVisible"
|
|
|
width="30%"
|
|
|
center
|
|
|
>
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
<el-col :span="6">
|
|
|
<div class="ao-text">
|
|
|
<span>IMEI:</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-input
|
|
|
size="small"
|
|
|
placeholder=""
|
|
|
v-model="checkQuery.imei"
|
|
|
disabled
|
|
|
></el-input>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row :gutter="20" class="el-row" type="flex" style="margin-top: 10px">
|
|
|
<el-col :span="6">
|
|
|
<div class="ao-text">
|
|
|
<span>登记说明:</span>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-input
|
|
|
size="small"
|
|
|
placeholder=""
|
|
|
v-model="checkQuery.remark"
|
|
|
></el-input>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<span slot="footer" class="dialog-footer" style="margin-top: 40px">
|
|
|
<el-button @click="cancelEdit">取消</el-button>
|
|
|
<el-button type="primary" @click="confirmEdit">确定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
|
|
|
<el-pagination
|
|
|
:current-page="filterQuery.page"
|
|
|
:page-size="filterQuery.limit"
|
|
|
@current-change="handleCurrentChange"
|
|
|
layout="prev, pager, next"
|
|
|
:total="total"
|
|
|
></el-pagination>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import {registerList, check, deleterKey} from "../../api/auth/deviceCheck";
|
|
|
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
filterQuery: {
|
|
|
isCheck: "",
|
|
|
customerName: "",
|
|
|
page: 1,
|
|
|
limit: 20
|
|
|
},
|
|
|
value: "",
|
|
|
total: 0,
|
|
|
checkFlag: {
|
|
|
0: "未审核",
|
|
|
1: "已通过",
|
|
|
2: "已拒绝"
|
|
|
},
|
|
|
list: [],
|
|
|
centerDialogVisible: false,
|
|
|
check: "",
|
|
|
checkQuery: {
|
|
|
imei: null,
|
|
|
remark: null
|
|
|
},
|
|
|
editDialogVisible: false,
|
|
|
loading: false
|
|
|
};
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
onReset() {
|
|
|
this.$router.push({
|
|
|
path: ""
|
|
|
});
|
|
|
this.filterQuery = {
|
|
|
isCheck: "",
|
|
|
page: 1,
|
|
|
limit: 20
|
|
|
};
|
|
|
this.getList();
|
|
|
},
|
|
|
|
|
|
onSubmit() {
|
|
|
this.filterQuery.page = 1;
|
|
|
this.getList();
|
|
|
},
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
registerList(this.filterQuery)
|
|
|
.then((response) => {
|
|
|
this.loading = false;
|
|
|
this.list = response.data.list || [];
|
|
|
this.total = response.data.total || 0;
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.loading = false;
|
|
|
this.list = [];
|
|
|
this.total = 0;
|
|
|
});
|
|
|
},
|
|
|
editDialog(row) {
|
|
|
this.checkQuery = row;
|
|
|
this.editDialogVisible = true;
|
|
|
},
|
|
|
cancelDialog() {
|
|
|
this.centerDialogVisible = false
|
|
|
this.getList();
|
|
|
},
|
|
|
|
|
|
handleCheckedChange(val) {
|
|
|
},
|
|
|
|
|
|
handleSizeChange(val) {
|
|
|
this.filterQuery.limit = val;
|
|
|
this.getList();
|
|
|
},
|
|
|
handleCurrentChange(val) {
|
|
|
this.filterQuery.page = val;
|
|
|
this.getList();
|
|
|
},
|
|
|
|
|
|
checkRegister() {
|
|
|
this.loading = true;
|
|
|
check(this.checkQuery)
|
|
|
.then((response) => {
|
|
|
if (response.code === 20000) {
|
|
|
this.editDialogVisible = false;
|
|
|
this.getList();
|
|
|
this.$message({
|
|
|
type: "success",
|
|
|
message: "更新成功!"
|
|
|
});
|
|
|
} else {
|
|
|
this.$message.warning("更新失败");
|
|
|
this.loading = false;
|
|
|
}
|
|
|
})
|
|
|
.catch(() => {
|
|
|
});
|
|
|
},
|
|
|
checkDialog(row) {
|
|
|
this.checkQuery = row;
|
|
|
this.centerDialogVisible = true;
|
|
|
},
|
|
|
confirmEdit() {
|
|
|
this.checkRegister();
|
|
|
},
|
|
|
cancelEdit() {
|
|
|
this.editDialogVisible = false;
|
|
|
this.getList();
|
|
|
},
|
|
|
deleteDialog(row) {
|
|
|
let query = {
|
|
|
id: row.id
|
|
|
};
|
|
|
deleterKey(query)
|
|
|
.then((response) => {
|
|
|
if (response.code === 20000) {
|
|
|
this.getList();
|
|
|
this.$message({
|
|
|
type: "success",
|
|
|
message: "删除成功!"
|
|
|
});
|
|
|
} else {
|
|
|
this.$message.warning("删除失败");
|
|
|
this.loading = false;
|
|
|
}
|
|
|
})
|
|
|
.catch(() => {
|
|
|
});
|
|
|
},
|
|
|
|
|
|
|
|
|
passRegister() {
|
|
|
this.checkQuery.isCheck = 1;
|
|
|
this.checkRegister();
|
|
|
this.centerDialogVisible = false;
|
|
|
},
|
|
|
noPassRegister() {
|
|
|
this.checkQuery.isCheck = 2;
|
|
|
this.checkRegister();
|
|
|
this.centerDialogVisible = false;
|
|
|
}
|
|
|
|
|
|
//
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
},
|
|
|
created() {
|
|
|
this.getList();
|
|
|
}
|
|
|
};
|
|
|
</script>
|