501 lines
17 KiB
JavaScript
501 lines
17 KiB
JavaScript
/**
|
||
* 新增修改完成调用 modalFormOk方法 编辑弹框组件ref定义为modalForm
|
||
* 高级查询按钮调用 superQuery方法 高级查询组件ref定义为superQueryModal
|
||
* data中url定义 list为查询列表 delete为删除单条记录 deleteBatch为批量删除
|
||
*/
|
||
import { filterObj } from '@/utils/util'
|
||
import { downFile, downloadFile, getAction, getFileAccessHttpUrl, postAction } from '@/api/manage'
|
||
import Vue from 'vue'
|
||
import { ACCESS_TOKEN, TENANT_ID } from '@/store/mutation-types'
|
||
import store from '@/store'
|
||
import { isHasPermission } from '../utils/hasPermission'
|
||
import { mapGetters } from 'vuex'
|
||
|
||
// 导入的加载提示
|
||
let importModalLoading
|
||
|
||
export const JeroListMixin = {
|
||
data () {
|
||
return {
|
||
labelCol: {
|
||
span: 4
|
||
},
|
||
wrapperCol: {
|
||
span: 14
|
||
},
|
||
/* 查询条件-请不要在queryParam中声明非字符串值的属性 */
|
||
queryParam: {},
|
||
/* 数据源 */
|
||
dataSource: [],
|
||
/* 分页参数 */
|
||
ipagination: {
|
||
current: 1,
|
||
pageSize: 10,
|
||
pageSizeOptions: ['10', '20', '30'],
|
||
showTotal: (total, range) => {
|
||
return range[0] + '-' + range[1] + ' ' + this.$t('total') + total + this.$t('strip')
|
||
},
|
||
showQuickJumper: true,
|
||
showSizeChanger: true,
|
||
total: 0
|
||
},
|
||
/* 排序参数 */
|
||
isorter: {
|
||
column: 'createTime',
|
||
order: 'desc'
|
||
},
|
||
/* 筛选参数 */
|
||
filters: {},
|
||
/* table加载状态 */
|
||
loading: false,
|
||
/* table选中keys */
|
||
selectedRowKeys: [],
|
||
/* table选中records */
|
||
selectionRows: [],
|
||
/* 查询折叠 */
|
||
toggleSearchStatus: false,
|
||
/* 高级查询条件生效状态 */
|
||
superQueryFlag: false,
|
||
/* 高级查询条件 */
|
||
superQueryParams: '',
|
||
/** 高级查询拼接方式 */
|
||
superQueryMatchType: 'and',
|
||
operateMaxNum: 1, // 表格操作列最多显示的按钮,其他显示在更多中
|
||
needFilterTableBtn: false, // 是否需要过滤表格操作列没有权限的按钮
|
||
isBackTitle: false // 是否是详情页有返回的标题
|
||
}
|
||
},
|
||
created () {
|
||
if (!this.disableMixinCreated) {
|
||
this.loadData()
|
||
// 初始化字典配置 在自己页面定义
|
||
this.initDictConfig()
|
||
}
|
||
},
|
||
mounted () {
|
||
// 过滤表格操作列没有权限的按钮
|
||
if (this.needFilterTableBtn) {
|
||
this.operationList = this.operationList.filter(item => !item.has || isHasPermission(item.has))
|
||
console.log(this.operationList)
|
||
}
|
||
},
|
||
computed: {
|
||
...mapGetters(['defaultHeight']),
|
||
yScrollHeight () {
|
||
/**
|
||
* 前几个使用变量是为了配合iframe嵌套,算出页面显示范围的高度
|
||
* 48px:分页器的高度
|
||
* 48px:a-card的padding(上24+下24)
|
||
* 54px:表头行的高度
|
||
*/
|
||
log
|
||
return `calc(100vh - ${this.defaultHeight['user-info-height']} - ${this.defaultHeight['breadcrumb-height']} - ${this.defaultHeight.oneLineSearchHeight} - ${this.defaultHeight.oneLineOperationHeight} - 48px - 48px - 54px - ${this.isBackTitle ? '56px' : '0'})`
|
||
},
|
||
// token header
|
||
tokenHeader () {
|
||
const head = { 'X-Access-Token': Vue.ls.get(ACCESS_TOKEN) }
|
||
const tenantid = Vue.ls.get(TENANT_ID)
|
||
if (tenantid) {
|
||
head['tenant-id'] = tenantid
|
||
}
|
||
return head
|
||
},
|
||
importExcelUrl: function () {
|
||
return `${window._CONFIG.domianURL}/${this.url.importExcelUrl}`
|
||
}
|
||
},
|
||
methods: {
|
||
loadData (arg) {
|
||
if (!this.url.list) {
|
||
this.$message.warning('请设置url.list属性!')
|
||
return
|
||
}
|
||
// 加载数据 若传入参数1则加载第一页的内容
|
||
if (arg === 1) {
|
||
this.ipagination.current = 1
|
||
}
|
||
const params = this.getQueryParams()// 查询条件
|
||
this.loading = true
|
||
getAction(this.url.list, params).then((res) => {
|
||
if (res.success) {
|
||
// update-begin---author:zhangyafei Date:20201118 for:适配不分页的数据列表------------
|
||
this.dataSource = res.result.records || res.result
|
||
if (res.result.total) {
|
||
this.ipagination.total = res.result.total
|
||
} else {
|
||
this.ipagination.total = 0
|
||
}
|
||
// update-end---author:zhangyafei Date:20201118 for:适配不分页的数据列表------------
|
||
} else {
|
||
this.$message.warning(res.message)
|
||
}
|
||
}).finally(() => {
|
||
this.loading = false
|
||
})
|
||
},
|
||
initDictConfig () {
|
||
|
||
},
|
||
handleSuperQuery (params, matchType) {
|
||
// 高级查询方法
|
||
if (!params) {
|
||
this.superQueryParams = ''
|
||
this.superQueryFlag = false
|
||
} else {
|
||
this.superQueryFlag = true
|
||
this.superQueryParams = JSON.stringify(params)
|
||
this.superQueryMatchType = matchType
|
||
}
|
||
this.loadData(1)
|
||
},
|
||
getQueryParams () {
|
||
// 获取查询条件
|
||
const sqp = {}
|
||
if (this.superQueryParams) {
|
||
sqp.superQueryParams = encodeURI(this.superQueryParams)
|
||
sqp.superQueryMatchType = this.superQueryMatchType
|
||
}
|
||
const param = Object.assign(sqp, this.queryParam, this.isorter, this.filters)
|
||
param.field = this.getQueryField()
|
||
param.pageNo = this.ipagination.current
|
||
param.pageSize = this.ipagination.pageSize
|
||
return filterObj(param)
|
||
},
|
||
getQueryField () {
|
||
// TODO 字段权限控制
|
||
let str = 'id,'
|
||
this.columns.forEach(function (value) {
|
||
str += ',' + value.dataIndex
|
||
})
|
||
return str
|
||
},
|
||
|
||
onSelectChange (selectedRowKeys, selectionRows) {
|
||
this.selectedRowKeys = selectedRowKeys
|
||
this.selectionRows = selectionRows
|
||
},
|
||
onClearSelected () {
|
||
this.selectedRowKeys = []
|
||
this.selectionRows = []
|
||
},
|
||
searchQuery () {
|
||
this.loadData(1)
|
||
// 点击查询清空列表选中行
|
||
this.selectedRowKeys = []
|
||
this.selectionRows = []
|
||
},
|
||
superQuery () {
|
||
this.$refs.superQueryModal.show()
|
||
},
|
||
searchReset () {
|
||
this.queryParam = {}
|
||
this.loadData(1)
|
||
},
|
||
batchDel: function () {
|
||
if (!this.url.deleteBatch) {
|
||
this.$message.warning('请设置url.deleteBatch属性!')
|
||
return
|
||
}
|
||
if (this.selectedRowKeys.length <= 0) {
|
||
this.$message.warning(this.$t('selectARecord'))
|
||
} else {
|
||
const ids = this.selectedRowKeys.join(',')
|
||
const that = this
|
||
this.$confirm({
|
||
title: this.$t('confirmBatchDeletion'),
|
||
content: this.$t('deleteAData'),
|
||
onOk: function () {
|
||
that.loading = true
|
||
postAction(that.url.deleteBatch, { ids: ids }).then((res) => {
|
||
if (res.success) {
|
||
// 重新计算分页问题
|
||
that.reCalculatePage(that.selectedRowKeys.length)
|
||
that.$message.success(res.message)
|
||
that.loadData()
|
||
that.onClearSelected()
|
||
} else {
|
||
that.$message.warning(res.message)
|
||
}
|
||
}).finally(() => {
|
||
that.loading = false
|
||
})
|
||
}
|
||
})
|
||
}
|
||
},
|
||
handleDelete: function (id) {
|
||
if (!this.url.delete) {
|
||
this.$message.warning('请设置url.delete属性!')
|
||
return
|
||
}
|
||
const that = this
|
||
this.$confirm({
|
||
title: this.$t('confirmDeletion'),
|
||
content: this.$t('areYouSure'),
|
||
onOk: function () {
|
||
postAction(that.url.delete, { id: id }).then((res) => {
|
||
if (res.success) {
|
||
that.$message.success(res.message)
|
||
// 判断当前删除的数据是否是最后一页的最后一条数据,如果是的话页码减一
|
||
if (that.ipagination.current > 1 && ((that.ipagination.current - 1) * that.ipagination.pageSize) + 1 === that.ipagination.total) {
|
||
that.ipagination.current -= 1
|
||
}
|
||
that.loadData()
|
||
} else {
|
||
that.$message.warning(res.message)
|
||
}
|
||
})
|
||
}
|
||
})
|
||
},
|
||
reCalculatePage (count) {
|
||
// 总数量-count
|
||
const total = this.ipagination.total - count
|
||
// 获取删除后的分页数
|
||
const currentIndex = Math.ceil(total / this.ipagination.pageSize)
|
||
// 删除后的分页数<所在当前页
|
||
if (currentIndex < this.ipagination.current) {
|
||
this.ipagination.current = currentIndex
|
||
}
|
||
console.log('currentIndex', currentIndex)
|
||
},
|
||
handleEdit: function (record) {
|
||
this.$refs.modalForm.edit(record)
|
||
this.$refs.modalForm.title = this.$t('edit')
|
||
this.$refs.modalForm.disableSubmit = false
|
||
},
|
||
handleAdd: function () {
|
||
this.$refs.modalForm.add()
|
||
this.$refs.modalForm.title = this.$t('newlyAdded')
|
||
this.$refs.modalForm.disableSubmit = false
|
||
},
|
||
handleTableChange (pagination, filters, sorter) {
|
||
// 分页、排序、筛选变化时触发
|
||
if (Object.keys(sorter).length > 0) {
|
||
this.isorter.column = sorter.order ? sorter.field : 'createTime'
|
||
this.isorter.order = sorter.order === 'ascend' ? 'asc' : 'desc'
|
||
}
|
||
this.ipagination = pagination
|
||
this.loadData()
|
||
},
|
||
handleToggleSearch () {
|
||
this.toggleSearchStatus = !this.toggleSearchStatus
|
||
},
|
||
// 给popup查询使用(查询区域不支持回填多个字段,限制只返回一个字段)
|
||
getPopupField (fields) {
|
||
return fields.split(',')[0]
|
||
},
|
||
modalFormOk () {
|
||
// 新增/修改 成功时,重载列表
|
||
this.loadData()
|
||
// 清空列表选中
|
||
this.onClearSelected()
|
||
},
|
||
handleDetail: function (record) {
|
||
this.$refs.modalForm.edit(record)
|
||
this.$refs.modalForm.title = this.$t('details')
|
||
this.$refs.modalForm.disableSubmit = true
|
||
},
|
||
/* 导出 */
|
||
handleExportXls2 () {
|
||
const paramsStr = encodeURI(JSON.stringify(this.getQueryParams()))
|
||
window.location.href = `${window._CONFIG.domianURL}/${this.url.exportXlsUrl}?paramsStr=${paramsStr}`
|
||
},
|
||
handleExportXls (fileName, fileSuffix = '.xlsx') {
|
||
if (!fileName || typeof fileName !== 'string') {
|
||
fileName = '导出文件'
|
||
}
|
||
const param = this.getQueryParams()
|
||
if (this.selectedRowKeys && this.selectedRowKeys.length > 0) {
|
||
param.selections = this.selectedRowKeys.join(',')
|
||
}
|
||
console.log('导出参数', param)
|
||
// 加一个大的提示
|
||
const modalLoading = this.$info({
|
||
title: '提示',
|
||
content: <span>正在导出,请稍候 <a-spin size="small" /></span>,
|
||
keyboard: false
|
||
})
|
||
// 把知道了这个按钮去掉
|
||
this.$nextTick(() => {
|
||
document.getElementsByClassName('ant-modal-confirm-btns')[0].style = 'display:none'
|
||
})
|
||
downFile(this.url.exportXlsUrl, param).then((data) => {
|
||
if (!data) {
|
||
this.$message.warning('文件下载失败')
|
||
return
|
||
}
|
||
if (typeof window.navigator.msSaveBlob !== 'undefined') {
|
||
window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), fileName + fileSuffix)
|
||
} else {
|
||
const url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
|
||
const link = document.createElement('a')
|
||
link.style.display = 'none'
|
||
link.href = url
|
||
link.setAttribute('download', fileName + fileSuffix)
|
||
document.body.appendChild(link)
|
||
link.click()
|
||
document.body.removeChild(link) // 下载完成移除元素
|
||
window.URL.revokeObjectURL(url) // 释放掉blob对象
|
||
}
|
||
}).finally(() => {
|
||
// 销毁这个提示
|
||
modalLoading.destroy()
|
||
})
|
||
},
|
||
// 带文件导出
|
||
handleFileExport (fileName) {
|
||
if (!fileName || typeof fileName !== 'string') {
|
||
fileName = '导出文件'
|
||
}
|
||
const param = this.getQueryParams()
|
||
if (this.selectedRowKeys && this.selectedRowKeys.length > 0) {
|
||
param.selections = this.selectedRowKeys.join(',')
|
||
}
|
||
console.log('导出参数', param)
|
||
// 加一个大的提示
|
||
const modalLoading = this.$info({
|
||
title: '提示',
|
||
content: <span>正在导出,请稍候 <a-spin size="small" /></span>,
|
||
keyboard: false
|
||
})
|
||
// 把知道了这个按钮去掉
|
||
this.$nextTick(() => {
|
||
document.getElementsByClassName('ant-modal-confirm-btns')[0].style = 'display:none'
|
||
})
|
||
downFile(this.url.exportZipUrl, param).then((data) => {
|
||
if (!data) {
|
||
this.$message.warning('文件下载失败')
|
||
return
|
||
}
|
||
if (typeof window.navigator.msSaveBlob !== 'undefined') {
|
||
window.navigator.msSaveBlob(new Blob([data]), fileName + '.zip')
|
||
} else {
|
||
const url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
|
||
const link = document.createElement('a')
|
||
link.style.display = 'none'
|
||
link.href = url
|
||
link.setAttribute('download', fileName + '.zip')
|
||
document.body.appendChild(link)
|
||
link.click()
|
||
document.body.removeChild(link) // 下载完成移除元素
|
||
window.URL.revokeObjectURL(url) // 释放掉blob对象
|
||
}
|
||
}).finally(() => {
|
||
// 销毁这个提示
|
||
modalLoading.destroy()
|
||
})
|
||
},
|
||
/* 导入 */
|
||
handleImportExcel (info) {
|
||
// 加一个大的提示
|
||
if (!this.loading) {
|
||
importModalLoading = this.$info({
|
||
title: '提示',
|
||
content: <span>正在导入,请稍候 <a-spin size="small" /></span>,
|
||
keyboard: false
|
||
})
|
||
}
|
||
this.loading = true
|
||
// 把知道了这个按钮去掉
|
||
this.$nextTick(() => {
|
||
document.getElementsByClassName('ant-modal-confirm-btns')[0].style = 'display:none'
|
||
})
|
||
if (info.file.status !== 'uploading') {
|
||
console.log(info.file, info.fileList)
|
||
}
|
||
if (info.file.status === 'done') {
|
||
// 销毁这个提示
|
||
importModalLoading && importModalLoading.destroy()
|
||
this.loading = false
|
||
if (info.file.response.success) {
|
||
// this.$message.success(`${info.file.name} 文件上传成功`);
|
||
if (info.file.response.code === 201) {
|
||
const { message, result: { msg, fileUrl, fileName } } = info.file.response
|
||
const href = window._CONFIG.domianURL + fileUrl
|
||
this.$warning({
|
||
title: message,
|
||
content: (<div>
|
||
<span>{msg}</span><br />
|
||
<span>具体详情请 <a href={href} target="_blank" download={fileName}>点击下载</a> </span>
|
||
</div>
|
||
)
|
||
})
|
||
} else {
|
||
this.$message.success(info.file.response.message || `${info.file.name} 文件上传成功`)
|
||
}
|
||
this.loadData()
|
||
} else {
|
||
this.$message.warning(`${info.file.name} ${info.file.response.message}.`)
|
||
}
|
||
} else if (info.file.status === 'error') {
|
||
// 销毁这个提示
|
||
importModalLoading && importModalLoading.destroy()
|
||
this.loading = false
|
||
if (info.file.response.status === 500) {
|
||
const data = info.file.response
|
||
const token = Vue.ls.get(ACCESS_TOKEN)
|
||
if (token && data.message.includes('Token失效')) {
|
||
this.error({
|
||
title: '登录已过期',
|
||
content: '很抱歉,登录已过期,请重新登录',
|
||
okText: '重新登录',
|
||
mask: false,
|
||
onOk: () => {
|
||
store.dispatch('Logout').then(() => {
|
||
Vue.ls.remove(ACCESS_TOKEN)
|
||
window.location.reload()
|
||
})
|
||
}
|
||
})
|
||
}
|
||
} else {
|
||
this.$message.warning(`文件上传失败: ${info.file.msg} `)
|
||
}
|
||
}
|
||
},
|
||
/* 图片预览 */
|
||
getImgView (text) {
|
||
if (text && text.indexOf(',') > 0) {
|
||
text = text.substring(0, text.indexOf(','))
|
||
}
|
||
return getFileAccessHttpUrl(text)
|
||
},
|
||
/* 文件下载 */
|
||
// update--autor:lvdandan-----date:20200630------for:修改下载文件方法名uploadFile改为downloadFile------
|
||
downloadFile (text) {
|
||
if (!text) {
|
||
this.$message.warning('未知的文件')
|
||
return
|
||
}
|
||
if (text.indexOf(',') > 0) {
|
||
text = text.substring(0, text.indexOf(','))
|
||
}
|
||
const url = getFileAccessHttpUrl(text)
|
||
window.open(url)
|
||
},
|
||
// 下载导入模板
|
||
downTemplate (fileName, fileSuffix = '.xlsx') {
|
||
if (!fileName || typeof fileName !== 'string') {
|
||
fileName = '模板文件'
|
||
}
|
||
downloadFile(this.url.downTemplateUrl, fileName + fileSuffix)
|
||
},
|
||
handleImportByFileId (fileId) {
|
||
// TODO 完善通过文件id上传文件的方法
|
||
},
|
||
/**
|
||
* 循环操作按钮的操作
|
||
* @param operation
|
||
* @param record
|
||
*/
|
||
operationClick (operation, record) {
|
||
if (operation.clickEvent === 'handleDelete') {
|
||
this.handleDelete(record.id)
|
||
} else {
|
||
this[operation.clickEvent](record)
|
||
}
|
||
}
|
||
}
|
||
}
|