liuxiaolong
2019-05-06 d380e76ec9783bcd80eb42e495d6f8e1af0827b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<template>
  <div>
    <el-table
      ref="multipleTable"
      :data="tableList"
      :border="true"
      fit
      height="65vh"
      @sort-change="sortChange"
      @select-all="handleTableCheck"
      @select="handleTableCheck"
    >
      <el-table-column type="selection" width="35"></el-table-column>
      <el-table-column
        type="index"
        prop="index"
        label="序号"
        :index="snMethod"
        :fit="true"
        width="80px"
        align="center"
      />
      <el-table-column label="人员图片" prop="pname">
        <template slot-scope="scope">
          <div class="flex-center">
            <httpImg :src="scope.row.imgUrl" width="100px" height="100px" alt/>
          </div>
        </template>
      </el-table-column>
      <el-table-column label="人员信息" prop="userInfo">
        <template slot-scope="scope">
          <div>
            <span :id="scope.row.id">{{scope.row | getUserInfo}}</span>
            <b-tooltip
              :target="scope.row.id"
              placement="bottom"
              delay="100"
              class="text-left"
            >{{scope.row | getUserInfo}}</b-tooltip>
          </div>
        </template>
      </el-table-column>
      <el-table-column label="所属底库" sortable="custom" prop="dbInfos">
        <template slot-scope="scope">
          <div>
            <div v-for="(item,index) in scope.row.dbInfo" :key="index">{{item.cluId}}</div>
          </div>
        </template>
      </el-table-column>
      <el-table-column label="加入时间" sortable="custom" prop="createTime">
        <template
          slot-scope="scope"
        >{{$moment(scope.row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</template>
      </el-table-column>
      <el-table-column label="操作人" sortable="custom" prop="createBy"/>
      <el-table-column label="操作">
        <template slot-scope="scope">
          <div @click.stop>
            <fButton
              type="link"
              style="padding:2px;"
              @click.native="$emit('add',scope.row)"
              authority="ctrl:person:addCtrl"
            >加入布控</fButton>
            <fButton
              type="link"
              style="padding:2px;"
              @click.native="$emit('del',scope.row)"
              authority="ctrl:person:del"
            >删除此人</fButton>
            <fButton
              type="link"
              style="padding:2px;"
              @click.native="$emit('edit',scope.row)"
              authority="ctrl:person:editPerson"
            >编辑信息</fButton>
          </div>
        </template>
      </el-table-column>
    </el-table>
    <div class="pt15 pb20">
      <b-pagination
        class="justify-content-center justify-content-sm-end m-0"
        v-if="total"
        v-model="activePage"
        :total-rows="total"
        :per-page="pageSize"
      />
    </div>
  </div>
</template>
<script>
import { Table, TableColumn } from 'element-ui'
export default {
  name: 'tableTodo',
  metaInfo: {
    title: '待控人员'
  },
  props: ['total', 'activePage', 'pageSize', 'tableList', 'multipleSelection'],
  inheritAttrs: false,
  data() {
    return {}
  },
  computed: {},
  filters: {
    getUserInfo(item) {
      if (!item) {
        return item
      }
      // userInfo 拼接用户信息
      if (item.sex > -1) {
        item.sexName = item.sex > 0 ? '男' : item.sex === 0 ? '女' : ''
      }
      const arr = ['username', 'sexName', 'idCard', 'mobile']
      let userInfo = ''
      for (let [index, name] of arr.entries()) {
        if (item[name]) {
          userInfo += item[name] + `${index !== arr.length - 1 ? '/' : ''}`
        }
      }
      return userInfo
    },
    getdbInfos(item) {
      if (!item) {
        return item
      }
      const json = JSON.parse(item)
      return json
    }
  },
  methods: {
    snMethod(index) {
      return this.activePage > 1
        ? this.pageSize * (this.activePage - 1) + index + 1
        : index + 1
    },
    sortChange(data) {
      this.$emit('sortChange', data)
    },
    /* 多选 */
    toggleSelection(rows) {
      if (rows) {
        rows.forEach(row => {
          this.$refs.multipleTable.toggleRowSelection(row)
        })
      } else {
        this.$refs.multipleTable.clearSelection()
      }
    },
    handleTableCheck(val) {
      const ids = val.map(item => item.id)
      this.$emit('handleTableCheck', ids)
    }
  },
  created() {},
  beforeUpdate() {
    // check 初始化
    const rows = this.tableList.filter(item =>
      this.multipleSelection.includes(item.id)
    )
    this.$nextTick(() => {
      if (rows) {
        rows.forEach(row => {
          this.$refs.multipleTable.toggleRowSelection(row, true)
        })
      }
    })
  },
  components: {
    elTable: Table,
    elTableColumn: TableColumn
  }
}
</script>