|
@@ -131,7 +131,7 @@
|
|
</a>
|
|
</a>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="name" label="姓名" width="150" fixed="left"></el-table-column>
|
|
|
|
|
|
+ <el-table-column prop="name" label="姓名" width="80" fixed="left"></el-table-column>
|
|
<el-table-column prop="phone" label="手机号" width="180"></el-table-column>
|
|
<el-table-column prop="phone" label="手机号" width="180"></el-table-column>
|
|
<el-table-column prop="idCard" label="身份证" width="200"></el-table-column>
|
|
<el-table-column prop="idCard" label="身份证" width="200"></el-table-column>
|
|
<el-table-column prop="openId" label="是否绑定公众号" width="180">
|
|
<el-table-column prop="openId" label="是否绑定公众号" width="180">
|
|
@@ -196,24 +196,27 @@
|
|
<el-table-column prop="position5" :label="position5" width="180"></el-table-column>-->
|
|
<el-table-column prop="position5" :label="position5" width="180"></el-table-column>-->
|
|
<el-table-column label="操作" width="290" fixed="right">
|
|
<el-table-column label="操作" width="290" fixed="right">
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
- <el-row>
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
|
+ <el-row style="margin:5px;">
|
|
|
|
+ <el-col :span="6">
|
|
<el-button size="mini" type="warning" @click="handleEdit(row)">编辑</el-button>
|
|
<el-button size="mini" type="warning" @click="handleEdit(row)">编辑</el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="6">
|
|
<el-button size="mini" type="danger" @click="handleDelete(row)">删除</el-button>
|
|
<el-button size="mini" type="danger" @click="handleDelete(row)">删除</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
- <el-row>
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
|
+ <el-row style="margin:5px;">
|
|
|
|
+ <el-col :span="8">
|
|
<el-button size="mini" type="success" @click="bindDevice(row)">绑定设备</el-button>
|
|
<el-button size="mini" type="success" @click="bindDevice(row)">绑定设备</el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="8">
|
|
<span v-if="row.faceBound != null && row.faceBound">
|
|
<span v-if="row.faceBound != null && row.faceBound">
|
|
-    
|
|
|
|
<el-button size="mini" type="success" :disabled="true" @click="uploadData(row)">上传数据</el-button>
|
|
<el-button size="mini" type="success" :disabled="true" @click="uploadData(row)">上传数据</el-button>
|
|
</span>
|
|
</span>
|
|
<span v-if="row.faceBound != null && !row.faceBound">
|
|
<span v-if="row.faceBound != null && !row.faceBound">
|
|
-    
|
|
|
|
<el-button size="mini" type="success" @click="uploadData(row)">上传数据</el-button>
|
|
<el-button size="mini" type="success" @click="uploadData(row)">上传数据</el-button>
|
|
</span>
|
|
</span>
|
|
-    
|
|
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="8">
|
|
<el-button size="mini" type="info" @click="showBound(row)">已绑定设备</el-button>
|
|
<el-button size="mini" type="info" @click="showBound(row)">已绑定设备</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|