bug修复
This commit is contained in:
parent
313464bc14
commit
1be57becd3
|
|
@ -1551,7 +1551,7 @@
|
||||||
// this.reset();
|
// this.reset();
|
||||||
const shPersonName = row.shPersonName;
|
const shPersonName = row.shPersonName;
|
||||||
const shId = row.shId;
|
const shId = row.shId;
|
||||||
if(shPersonName!=null){
|
if(shPersonName!=null&&shPersonName!=''){
|
||||||
this.$alert('手环已绑定使用人,不可修改', '提示', {
|
this.$alert('手环已绑定使用人,不可修改', '提示', {
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: '确定',
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,6 @@
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<el-table v-loading="loading" :data="tableData" >
|
<el-table v-loading="loading" :data="tableData" >
|
||||||
<el-table-column type="selection" width="55" align="center" :reserve-selection="true" />
|
|
||||||
<el-table-column label="序号" align="center" width="80" type="index">
|
<el-table-column label="序号" align="center" width="80" type="index">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}</span>
|
<span>{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}</span>
|
||||||
|
|
@ -154,6 +153,8 @@ export default {
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
loading: true,
|
loading: true,
|
||||||
// 非单个禁用
|
// 非单个禁用
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
single: true,
|
single: true,
|
||||||
// 非多个禁用
|
// 非多个禁用
|
||||||
// 总条数
|
// 总条数
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue