123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <template>
- <a-card :bordered="false">
- <div class="table-page-search-wrapper">
- <a-form layout="inline">
- <a-row :gutter="48">
- <a-col :md="6" :sm="24">
- <a-form-item label="用户名称">
- <a-input
- allowClear
- v-model.trim="queryParam.name"
- placeholder="请输入用户名称"
- id="userList-name"
- :maxLength="30"
- @pressEnter="$refs.table.refresh(true)" />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="手机号码">
- <a-input
- allowClear
- v-model.trim="queryParam.phone"
- placeholder="请输入手机号码"
- :maxLength="11"
- id="userList-phone"
- @pressEnter="$refs.table.refresh(true)" />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="状态">
- <v-select code="ENABLE_FLAG" v-model="queryParam.loginFlag" allowClear placeholder="请选择状态" id="userList-check-enable-state"></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-button type="primary" @click="$refs.table.refresh(true)" id="userList-handSubmit" style="margin-right: 10px;">查询</a-button>
- <a-button type="" @click="reset" id="userList-reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <a-divider />
- <div class="table-operator">
- <a-button type="primary" icon="plus" @click="openModal" id="userList-openModal">新增</a-button>
- </div>
- <s-table
- ref="table"
- size="default"
- rowKey="id"
- :columns="columns"
- :data="loadData"
- bordered>
- <span slot="status" slot-scope="text, record">
- <a-switch
- checkedChildren="启用"
- unCheckedChildren="禁用"
- v-model="record.loginFlag"
- @change="changeFlagHandle(text, record)"
- id="userList-changeFlagHandle" />
- </span>
- <!-- <div slot="roleNames" slot-scope="text, record" :title="record.roleNames">
- <span v-if="record.roleNames">{{ record.roleNames.substr(0,12) + '...' }}</span>
- <span v-else>无</span>
- </div> -->
- <span slot="action" slot-scope="text, record">
- <a-icon
- type="edit"
- title="编辑"
- :style="{fontSize: '20px',color:' #1890FF',padding:' 0 10px'}"
- @click="handleEdit(record)"
- />
- <a-icon
- type="unlock"
- title="重置密码"
- v-if="record.loginFlag==1"
- :style="{fontSize: '20px',color:' #08c0de',padding: '0 10px'}"
- @click="resetPassword(record)" />
- <a-icon
- type="delete"
- title="删除"
- :style="{fontSize: '20px',color: '#f00',padding: '0 10px'}"
- v-if="record.loginFlag==0"
- @click="delect(record)"/>
- </span>
- </s-table>
- <userModal :visible="showModal" @refresh="$refs.table.refresh(true)" :data="itemData" @close="showModal = false"></userModal>
- </a-card>
- </template>
- <script>
- import {
- STable,
- VSelect
- } from '@/components'
- import userModal from './userModal.vue'
- import {
- resetPSD,
- updateEnableStatus,
- getPowerUserList,
- delectUserPower
- } from '@/api/power-user.js'
- export default {
- name: 'UserList',
- components: {
- STable,
- VSelect,
- userModal
- },
- data () {
- return {
- // 查询参数
- queryParam: {
- name: '',
- phone: '',
- loginFlag: ''
- },
- showModal: false,
- itemData: {}, // 编辑行数据
- // 表头
- columns: [{
- title: '序号',
- dataIndex: 'no',
- width: 60,
- align: 'center'
- },
- {
- title: '创建时间',
- dataIndex: 'createDate',
- width: '120',
- align: 'center'
- },
- {
- title: '用户名称',
- dataIndex: 'name',
- width: '100',
- align: 'center'
- },
- {
- title: '手机号码',
- dataIndex: 'phone',
- width: '100',
- align: 'center'
- },
- {
- title: '角色',
- width: '100',
- align: 'center',
- dataIndex: 'roleNames'
- },
- {
- title: '状态',
- width: '100',
- align: 'center',
- scopedSlots: {
- customRender: 'status'
- }
- },
- {
- title: '操作',
- width: '100',
- align: 'center',
- scopedSlots: {
- customRender: 'action'
- }
- }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- return getPowerUserList(Object.assign(parameter, this.queryParam)).then(res => {
- const no = (res.data.pageNo - 1) * res.data.pageSize
- for (let i = 0; i < res.data.list.length; i++) {
- const _item = res.data.list[i]
- _item.no = no + i + 1
- _item.loginFlag = _item.loginFlag + '' === '1'
- }
- return res.data
- })
- },
- optionAlertShow: false
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- // vm.$refs.table.refresh()
- })
- },
- methods: {
- // 刷新列表
- refreshTable () {
- this.$refs.table.refresh(true)
- },
- // 新建
- openModal () {
- this.showModal = true
- this.itemData = {}
- },
- // 重置
- reset () {
- this.queryParam.name = ''
- this.queryParam.phone = '',
- this.queryParam.loginFlag = ''
- this.refreshTable()
- },
- // 重置密码
- resetPassword (row) {
- resetPSD({
- id: row.id
- }).then(res => {
- if (res.status == 200) {
- this.$message.success(res.message)
- }
- })
- },
- // 删除
- delect (row) {
- const _this = this
- this.$confirm({
- title: '警告',
- centered: true,
- content: '删除后无法恢复,确认删除?',
- okText: '确定',
- cancelText: '取消',
- onOk () {
- delectUserPower({
- id: row.id
- }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- }
- })
- }
- })
- },
- getBizStr (storeBizList) {
- const str = []
- storeBizList.forEach(item => {
- str.push(item.bizTypeName)
- })
- return str.join(',')
- },
- handleEdit (row) {
- console.log(row, 'row')
- this.showModal = true
- this.itemData = row
- },
- // 修改状态
- changeFlagHandle (text, record) {
- const _data = {
- id: record.id,
- flag: record.loginFlag ? '1' : '0'
- }
- updateEnableStatus(_data).then(res => {
- if (res.status + '' === '200') {
- this.$message.success(res.message)
- } else {
- record.loginFlag = !record.loginFlag
- }
- })
- }
- }
- }
- </script>
- <style scoped>
- .table-page-search-wrapper .ant-form-inline .ant-form-item {
- margin-bottom: 0;
- }
- .action-button {
- line-height: 40px;
- white-space: nowrap;
- padding: 5px 10px;
- background-color: #1890ff;
- border-radius: 4px;
- color: #fff;
- margin-right: 5px;
- }
- .red-text {
- background-color: red;
- }
- .reset-text {
- background-color: #31b50b;
- }
- </style>
|