238 lines
5.7 KiB
Vue
238 lines
5.7 KiB
Vue
<template>
|
|
<div class="p-2">
|
|
<!--引用表格-->
|
|
<BasicTable @register="registerTable" >
|
|
<!--插槽:table标题-->
|
|
<template #tableTitle>
|
|
<a-button type="primary" v-auth="'IssueInfo:nu_issue_info:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
</template>
|
|
<!--操作栏-->
|
|
<template #action="{ record }">
|
|
<TableAction :actions="getTableAction(record)" />
|
|
</template>
|
|
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
<template v-if="column.dataIndex==='content'">
|
|
<!--富文本件字段回显插槽-->
|
|
<a-popover placement="top">
|
|
<template #content>
|
|
<div v-html="text"></div>
|
|
</template>
|
|
<template #title>
|
|
<span>发版内容</span>
|
|
</template>
|
|
<div v-html="text" class="view-container"></div>
|
|
</a-popover>
|
|
|
|
</template>
|
|
</template>
|
|
</BasicTable>
|
|
<!-- 表单区域 -->
|
|
<NuIssueInfoModal ref="registerModal" @success="handleSuccess"></NuIssueInfoModal>
|
|
<IssueInfoDetailModal ref="issueInfoDetailModal" @success="handleSuccess"></IssueInfoDetailModal>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" name="IssueInfo-nuIssueInfo" setup>
|
|
import { ref, reactive } from 'vue';
|
|
import { BasicTable, useTable, TableAction } from '/@/components/Table';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
import { columns, superQuerySchema } from './IssueInfo.data';
|
|
import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from './IssueInfo.api';
|
|
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
import NuIssueInfoModal from './components/IssueInfoModal.vue'
|
|
import IssueInfoDetailModal from './components/IssueInfoDetailModal.vue'
|
|
import { useUserStore } from '/@/store/modules/user';
|
|
|
|
const formRef = ref();
|
|
const queryParam = reactive<any>({});
|
|
const toggleSearchStatus = ref<boolean>(false);
|
|
const registerModal = ref();
|
|
const issueInfoDetailModal = ref();
|
|
const userStore = useUserStore();
|
|
//注册table数据
|
|
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
|
tableProps: {
|
|
title: '发版日志',
|
|
api: list,
|
|
columns,
|
|
canResize:false,
|
|
useSearchForm: false,
|
|
showIndexColumn: true,
|
|
actionColumn: {
|
|
width: 150,
|
|
fixed: 'right',
|
|
},
|
|
beforeFetch: async (params) => {
|
|
return Object.assign(params, queryParam);
|
|
},
|
|
},
|
|
exportConfig: {
|
|
name: "发版日志",
|
|
url: getExportUrl,
|
|
params: queryParam,
|
|
},
|
|
importConfig: {
|
|
url: getImportUrl,
|
|
success: handleSuccess
|
|
},
|
|
});
|
|
const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
|
|
const labelCol = reactive({
|
|
xs:24,
|
|
sm:4,
|
|
xl:6,
|
|
xxl:4
|
|
});
|
|
const wrapperCol = reactive({
|
|
xs: 24,
|
|
sm: 20,
|
|
});
|
|
|
|
// 高级查询配置
|
|
const superQueryConfig = reactive(superQuerySchema);
|
|
|
|
/**
|
|
* 高级查询事件
|
|
*/
|
|
function handleSuperQuery(params) {
|
|
Object.keys(params).map((k) => {
|
|
queryParam[k] = params[k];
|
|
});
|
|
searchQuery();
|
|
}
|
|
|
|
/**
|
|
* 新增事件
|
|
*/
|
|
function handleAdd() {
|
|
registerModal.value.disableSubmit = false;
|
|
registerModal.value.add();
|
|
}
|
|
|
|
/**
|
|
* 编辑事件
|
|
*/
|
|
function handleEdit(record: Recordable) {
|
|
registerModal.value.disableSubmit = false;
|
|
registerModal.value.edit(record);
|
|
}
|
|
|
|
/**
|
|
* 详情
|
|
*/
|
|
function handleDetail(record: Recordable) {
|
|
issueInfoDetailModal.value.disableSubmit = true;
|
|
issueInfoDetailModal.value.edit(record);
|
|
}
|
|
|
|
/**
|
|
* 删除事件
|
|
*/
|
|
async function handleDelete(record) {
|
|
await deleteOne({ id: record.id }, handleSuccess);
|
|
}
|
|
|
|
/**
|
|
* 批量删除事件
|
|
*/
|
|
async function batchHandleDelete() {
|
|
await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
|
|
}
|
|
|
|
/**
|
|
* 成功回调
|
|
*/
|
|
function handleSuccess() {
|
|
(selectedRowKeys.value = []) && reload();
|
|
}
|
|
|
|
/**
|
|
* 操作栏
|
|
*/
|
|
function getTableAction(record) {
|
|
return [
|
|
{
|
|
label: '编辑',
|
|
onClick: handleEdit.bind(null, record),
|
|
auth: 'IssueInfo:nu_issue_info:edit'
|
|
},
|
|
{
|
|
label: '详情',
|
|
onClick: handleDetail.bind(null, record),
|
|
}, {
|
|
label: '删除',
|
|
popConfirm: {
|
|
title: '是否确认删除',
|
|
confirm: handleDelete.bind(null, record),
|
|
placement: 'topLeft',
|
|
},
|
|
auth: 'IssueInfo:nu_issue_info:delete'
|
|
}
|
|
];
|
|
}
|
|
|
|
/**
|
|
* 下拉操作栏
|
|
*/
|
|
function getDropDownAction(record) {
|
|
return [
|
|
|
|
]
|
|
}
|
|
|
|
/**
|
|
* 查询
|
|
*/
|
|
function searchQuery() {
|
|
reload();
|
|
}
|
|
|
|
/**
|
|
* 重置
|
|
*/
|
|
function searchReset() {
|
|
formRef.value.resetFields();
|
|
selectedRowKeys.value = [];
|
|
//刷新数据
|
|
reload();
|
|
}
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.jeecg-basic-table-form-container {
|
|
padding: 0;
|
|
.table-page-search-submitButtons {
|
|
display: block;
|
|
margin-bottom: 24px;
|
|
white-space: nowrap;
|
|
}
|
|
.query-group-cust{
|
|
min-width: 100px !important;
|
|
}
|
|
.query-group-split-cust{
|
|
width: 30px;
|
|
display: inline-block;
|
|
text-align: center
|
|
}
|
|
.ant-form-item:not(.ant-form-item-with-help){
|
|
margin-bottom: 16px;
|
|
height: 32px;
|
|
}
|
|
:deep(.ant-picker),:deep(.ant-input-number){
|
|
width: 100%;
|
|
}
|
|
}
|
|
.view-container{
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1; /* 限制文本为1行 */
|
|
overflow: hidden;
|
|
height: 25px;
|
|
}
|
|
|
|
</style>
|