|
@@ -167,8 +167,8 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<pagination :page-sizes="[20, 30, 40, 50]"
|
|
|
- v-show="total>0"
|
|
|
- :total="total"
|
|
|
+ v-show="total2>0"
|
|
|
+ :total="total2"
|
|
|
:page.sync="dialogForm.pageNum"
|
|
|
:limit.sync="dialogForm.pageSize"
|
|
|
@pagination="getUserList"
|
|
@@ -237,6 +237,7 @@
|
|
|
endTime:null,
|
|
|
},
|
|
|
total:0,
|
|
|
+ total2:0,
|
|
|
tableData:[],
|
|
|
dateRange:[],
|
|
|
dialogForm:{
|
|
@@ -322,7 +323,6 @@
|
|
|
},
|
|
|
//监听关联记录弹窗关闭
|
|
|
handleClose(){
|
|
|
- console.log('弹窗关闭');
|
|
|
this.$refs.multipleTable.clearSelection();
|
|
|
this.dialogForm.searchValue='';
|
|
|
this.dialogForm.pageNum=1;
|
|
@@ -369,7 +369,7 @@
|
|
|
this.dialogForm.userType=22
|
|
|
listUser(this.addDateRange(this.dialogForm)).then(response => {
|
|
|
this.dialogTable = response.rows;
|
|
|
- this.total = response.total;
|
|
|
+ this.total2 = response.total;
|
|
|
this.loading = false;
|
|
|
this.dialogTable.forEach(function(item) {
|
|
|
item.authType='2'
|
|
@@ -380,7 +380,7 @@
|
|
|
this.dialogForm.userType=11
|
|
|
listUser(this.addDateRange(this.dialogForm)).then(response => {
|
|
|
this.dialogTable = response.rows;
|
|
|
- this.total = response.total;
|
|
|
+ this.total2 = response.total;
|
|
|
this.loading = false;
|
|
|
this.dialogTable.forEach(function(item) {
|
|
|
item.authType='2'
|
|
@@ -395,7 +395,6 @@
|
|
|
getSignTypeList().then(response => {
|
|
|
if(response.code==200){
|
|
|
this.verifyWayList=response.rows
|
|
|
- console.log(this.verifyWayList)
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -509,8 +508,7 @@
|
|
|
let _this=this;
|
|
|
if(doType=='delete'){//删除
|
|
|
let _this=this
|
|
|
- console.log(row)
|
|
|
- this.$confirm('是否确认删除['+row.userName+']门禁授权?', "警告", {
|
|
|
+ this.$confirm('是否确认删除['+row.userName+']?', "警告", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning"
|