|
@@ -18,11 +18,15 @@
|
|
|
<el-input style="width:250px" size="small" placeholder="人员姓名" v-model="condition" @keyup.native.enter="listData()" @clear="listData()" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <tablelayout :layout="tablecols" :data="list" :custom="true" :checkbox="true" height="calc(100vh - 452px)" @checkboxCallBack="checkboxCallBack">
|
|
|
+ <tablelayout class="normal-margin" :layout="tablecols" :data="list" :custom="true" :checkbox="true" height="calc(100vh - 452px)" @checkboxCallBack="checkboxCallBack">
|
|
|
<template v-slot:customcol="scope">
|
|
|
<p>{{scope.column.data[scope.column.columnname]}}</p>
|
|
|
</template>
|
|
|
</tablelayout>
|
|
|
+ <div class="flex-align-center">
|
|
|
+ <p>已选{{selection.length}}人</p>
|
|
|
+ <p>总共{{list.length}}人</p>
|
|
|
+ </div>
|
|
|
<div class="dialog-footer">
|
|
|
<el-button size="small" @click="dialogTableVisible = false" class="normal-btn-width">取 消</el-button>
|
|
|
<el-button size="small" type="warning" :disabled="selection.length === 0" @click="onSubmit" class="normal-btn-width">确 定</el-button>
|