267 lines
10 KiB
Vue
267 lines
10 KiB
Vue
<template>
|
|
<view>
|
|
<view class="uni-header">
|
|
<view class="uni-group">
|
|
<view class="uni-title"></view>
|
|
<view class="uni-sub-title"></view>
|
|
</view>
|
|
<view class="uni-group">
|
|
<input class="uni-search" type="text" v-model="query" @confirm="search" placeholder="请输入搜索内容" />
|
|
<button class="uni-button" type="default" size="mini" @click="search">搜索</button>
|
|
<button class="uni-button" type="default" size="mini" @click="navigateTo('./add')">新增</button>
|
|
<button class="uni-button" type="default" size="mini" :disabled="!selectedIndexs.length" @click="delTable">批量删除</button>
|
|
<download-excel class="hide-on-phone" :fields="exportExcel.fields" :data="exportExcelData" :type="exportExcel.type" :name="exportExcel.filename">
|
|
<button class="uni-button" type="primary" size="mini">导出 Excel</button>
|
|
</download-excel>
|
|
</view>
|
|
</view>
|
|
<view class="uni-container">
|
|
<unicloud-db ref="udb" :collection="collectionList" field="create_date,device_uuid,ip,state,type,ua,user_id,username,email,mobile,appid" :where="where" page-data="replace"
|
|
:orderby="orderby" :getcount="true" :page-size="options.pageSize" :page-current="options.pageCurrent"
|
|
v-slot:default="{data,pagination,loading,error,options}" :options="options" loadtime="manual" @load="onqueryload">
|
|
<uni-table ref="table" :loading="loading" :emptyText="error.message || '没有更多数据'" border stripe type="selection" @selection-change="selectionChange">
|
|
<uni-tr>
|
|
<uni-th align="center" filter-type="timestamp" @filter-change="filterChange($event, 'create_date')" sortable @sort-change="sortChange($event, 'create_date')">create_date</uni-th>
|
|
<uni-th align="center" filter-type="search" @filter-change="filterChange($event, 'device_uuid')" sortable @sort-change="sortChange($event, 'device_uuid')">device_uuid</uni-th>
|
|
<uni-th align="center" filter-type="search" @filter-change="filterChange($event, 'ip')" sortable @sort-change="sortChange($event, 'ip')">ip</uni-th>
|
|
<uni-th align="center" filter-type="range" @filter-change="filterChange($event, 'state')" sortable @sort-change="sortChange($event, 'state')">state</uni-th>
|
|
<uni-th align="center" filter-type="select" :filter-data="options.filterData.type_localdata" @filter-change="filterChange($event, 'type')">type</uni-th>
|
|
<uni-th align="center" filter-type="search" @filter-change="filterChange($event, 'ua')" sortable @sort-change="sortChange($event, 'ua')">ua</uni-th>
|
|
<uni-th align="center" sortable @sort-change="sortChange($event, 'user_id')">user_id</uni-th>
|
|
<uni-th align="center" filter-type="search" @filter-change="filterChange($event, 'username')" sortable @sort-change="sortChange($event, 'username')">username</uni-th>
|
|
<uni-th align="center" filter-type="search" @filter-change="filterChange($event, 'email')" sortable @sort-change="sortChange($event, 'email')">email</uni-th>
|
|
<uni-th align="center" filter-type="search" @filter-change="filterChange($event, 'mobile')" sortable @sort-change="sortChange($event, 'mobile')">mobile</uni-th>
|
|
<uni-th align="center" filter-type="search" @filter-change="filterChange($event, 'appid')" sortable @sort-change="sortChange($event, 'appid')">appid</uni-th>
|
|
<uni-th align="center">操作</uni-th>
|
|
</uni-tr>
|
|
<uni-tr v-for="(item,index) in data" :key="item._id || item.menu_id || item.user_id || index">
|
|
<uni-td align="center">
|
|
<uni-dateformat :threshold="[0, 0]" :date="item.create_date"></uni-dateformat>
|
|
</uni-td>
|
|
<uni-td align="center">{{item.device_uuid}}</uni-td>
|
|
<uni-td align="center">{{item.ip}}</uni-td>
|
|
<uni-td align="center">{{item.state}}</uni-td>
|
|
<uni-td align="center">{{options.type_valuetotext[item.type]}}</uni-td>
|
|
<uni-td align="center">{{item.ua}}</uni-td>
|
|
<uni-td align="center">{{item.user_id}}</uni-td>
|
|
<uni-td align="center">{{item.username}}</uni-td>
|
|
<uni-td align="center">{{item.email}}</uni-td>
|
|
<uni-td align="center">{{item.mobile}}</uni-td>
|
|
<uni-td align="center">{{item.appid}}</uni-td>
|
|
<uni-td align="center">
|
|
<view class="uni-group">
|
|
<button @click="navigateTo('./edit?id='+item._id, false)" class="uni-button" size="mini" type="primary">修改</button>
|
|
<button @click="confirmDelete(item._id)" class="uni-button" size="mini" type="warn">删除</button>
|
|
</view>
|
|
</uni-td>
|
|
</uni-tr>
|
|
</uni-table>
|
|
<view class="uni-pagination-box">
|
|
<uni-pagination show-icon :page-size="pagination.size" v-model="pagination.current" :total="pagination.count" @change="onPageChanged" />
|
|
</view>
|
|
</unicloud-db>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { enumConverter, filterToWhere } from '../../js_sdk/validator/uni-id-log.js';
|
|
|
|
const db = uniCloud.database()
|
|
// 表查询配置
|
|
const dbOrderBy = '' // 排序字段
|
|
const dbSearchFields = ['username', 'device_uuid', 'ip', 'appid'] // 模糊搜索字段,支持模糊搜索的字段列表。联表查询格式: 主表字段名.副表字段名,例如用户表关联角色表 role.role_name
|
|
// 分页配置
|
|
const pageSize = 20
|
|
const pageCurrent = 1
|
|
|
|
const orderByMapping = {
|
|
"ascending": "asc",
|
|
"descending": "desc"
|
|
}
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
collectionList: "uni-id-log",
|
|
query: '',
|
|
where: '',
|
|
orderby: dbOrderBy,
|
|
orderByFieldName: "",
|
|
selectedIndexs: [],
|
|
options: {
|
|
pageSize,
|
|
pageCurrent,
|
|
filterData: {
|
|
"type_localdata": [
|
|
{
|
|
"value": "logout",
|
|
"text": "logout"
|
|
},
|
|
{
|
|
"value": "login",
|
|
"text": "login"
|
|
},
|
|
{
|
|
"value": "register",
|
|
"text": "register"
|
|
},
|
|
{
|
|
"value": "reset-pwd",
|
|
"text": "reset-pwd"
|
|
},
|
|
{
|
|
"value": "bind-mobile",
|
|
"text": "bind-mobile"
|
|
},
|
|
{
|
|
"value": "bind-weixin",
|
|
"text": "bind-weixin"
|
|
},
|
|
{
|
|
"value": "bind-qq",
|
|
"text": "bind-qq"
|
|
},
|
|
{
|
|
"value": "bind-apple",
|
|
"text": "bind-apple"
|
|
},
|
|
{
|
|
"value": "bind-alipay",
|
|
"text": "bind-alipay"
|
|
}
|
|
]
|
|
},
|
|
...enumConverter
|
|
},
|
|
imageStyles: {
|
|
width: 64,
|
|
height: 64
|
|
},
|
|
exportExcel: {
|
|
"filename": "uni-id-log.xls",
|
|
"type": "xls",
|
|
"fields": {
|
|
"create_date": "create_date",
|
|
"device_uuid": "device_uuid",
|
|
"ip": "ip",
|
|
"state": "state",
|
|
"type": "type",
|
|
"ua": "ua",
|
|
"user_id": "user_id",
|
|
"username": "username",
|
|
"email": "email",
|
|
"mobile": "mobile",
|
|
"appid": "appid"
|
|
}
|
|
},
|
|
exportExcelData: []
|
|
}
|
|
},
|
|
onLoad() {
|
|
this._filter = {}
|
|
},
|
|
onReady() {
|
|
this.$refs.udb.loadData()
|
|
},
|
|
methods: {
|
|
onqueryload(data) {
|
|
this.exportExcelData = data
|
|
},
|
|
getWhere() {
|
|
const query = this.query.trim()
|
|
if (!query) {
|
|
return ''
|
|
}
|
|
const escapedQuery = query.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
|
|
const queryRe = new RegExp(escapedQuery, 'i')
|
|
return dbSearchFields.map(name => queryRe + '.test(' + name + ')').join(' || ')
|
|
},
|
|
search() {
|
|
const newWhere = this.getWhere()
|
|
this.where = newWhere
|
|
this.$nextTick(() => {
|
|
this.loadData()
|
|
})
|
|
},
|
|
loadData(clear = true) {
|
|
this.$refs.udb.loadData({
|
|
clear
|
|
})
|
|
},
|
|
onPageChanged(e) {
|
|
this.selectedIndexs.length = 0
|
|
this.$refs.table.clearSelection()
|
|
this.$refs.udb.loadData({
|
|
current: e.current
|
|
})
|
|
},
|
|
navigateTo(url, clear) {
|
|
// clear 表示刷新列表时是否清除页码,true 表示刷新并回到列表第 1 页,默认为 true
|
|
uni.navigateTo({
|
|
url,
|
|
events: {
|
|
refreshData: () => {
|
|
this.loadData(clear)
|
|
}
|
|
}
|
|
})
|
|
},
|
|
// 多选处理
|
|
selectedItems() {
|
|
var dataList = this.$refs.udb.dataList
|
|
return this.selectedIndexs.map(i => dataList[i]._id)
|
|
},
|
|
// 批量删除
|
|
delTable() {
|
|
this.$refs.udb.remove(this.selectedItems(), {
|
|
success:(res) => {
|
|
this.$refs.table.clearSelection()
|
|
}
|
|
})
|
|
},
|
|
// 多选
|
|
selectionChange(e) {
|
|
this.selectedIndexs = e.detail.index
|
|
},
|
|
confirmDelete(id) {
|
|
this.$refs.udb.remove(id, {
|
|
success:(res) => {
|
|
this.$refs.table.clearSelection()
|
|
}
|
|
})
|
|
},
|
|
sortChange(e, name) {
|
|
this.orderByFieldName = name;
|
|
if (e.order) {
|
|
this.orderby = name + ' ' + orderByMapping[e.order]
|
|
} else {
|
|
this.orderby = ''
|
|
}
|
|
this.$refs.table.clearSelection()
|
|
this.$nextTick(() => {
|
|
this.$refs.udb.loadData()
|
|
})
|
|
},
|
|
filterChange(e, name) {
|
|
this._filter[name] = {
|
|
type: e.filterType,
|
|
value: e.filter
|
|
}
|
|
let newWhere = filterToWhere(this._filter, db.command)
|
|
if (Object.keys(newWhere).length) {
|
|
this.where = newWhere
|
|
} else {
|
|
this.where = ''
|
|
}
|
|
this.$nextTick(() => {
|
|
this.$refs.udb.loadData()
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|