278 lines
7.5 KiB
Vue
278 lines
7.5 KiB
Vue
<template>
|
|
<div>
|
|
<!--查询区域-->
|
|
<div class="jeecg-basic-table-form-container">
|
|
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol"
|
|
:wrapper-col="wrapperCol">
|
|
<a-row :gutter="24">
|
|
<a-col :lg="5">
|
|
<a-form-item name="instructionTagId">
|
|
<template #label><span title="分类标签">分类标签</span></template>
|
|
<j-dict-select-tag v-model:value="queryParam.instructionTagId" :orgCode="bkOrgCode"
|
|
:dictCode="`nu_config_service_instruction_tag,instruction_name,id,del_flag = 0 and iz_enabled = 0 order by sort asc`"
|
|
placeholder="请选择分类标签" allowClear :ignoreDisabled="true" />
|
|
<!-- <span v-else>请选择源平台</span> -->
|
|
</a-form-item>
|
|
</a-col>
|
|
|
|
<a-col :lg="5">
|
|
<a-form-item name="categoryId">
|
|
<template #label><span title="服务类别">服务类别</span></template>
|
|
<j-dict-select-tag type="list" v-model:value="queryParam.categoryId" :orgCode="bkOrgCode"
|
|
:dictCode="`nu_config_service_category,category_name,id,del_flag = 0 and iz_enabled = 0 and instruction_id = '${queryParam.instructionTagId || ''}' order by sort asc`"
|
|
placeholder="请选择服务类别" allowClear :ignoreDisabled="true" />
|
|
</a-form-item>
|
|
</a-col>
|
|
|
|
<a-col :lg="5">
|
|
<a-form-item name="typeId">
|
|
<template #label><span title="服务类型">服务类型</span></template>
|
|
<j-dict-select-tag type="list" v-model:value="queryParam.typeId" :orgCode="bkOrgCode"
|
|
:dictCode="`nu_config_service_type,type_name,id,del_flag = 0 and iz_enabled = 0 and category_id = '${queryParam.categoryId || ''}' order by sort asc`"
|
|
placeholder="请选择服务类型" allowClear :ignoreDisabled="true" />
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="5">
|
|
<a-form-item name="directiveName">
|
|
<template #label><span title="服务指令">服务指令</span></template>
|
|
<JInput v-model:value="queryParam.directiveName" placeholder="请输入服务指令名称" allowClear />
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :xl="4" :lg="4" :md="4" :sm="4">
|
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
|
<a-col :lg="6">
|
|
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
|
|
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset"
|
|
style="margin-left: 8px">重置</a-button>
|
|
</a-col>
|
|
</span>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
</div>
|
|
<!--引用表格-->
|
|
<BasicTable @register="registerTable">
|
|
<!--插槽:table标题-->
|
|
<template #tableTitle>
|
|
</template>
|
|
<!--操作栏-->
|
|
<template #action="{ record }">
|
|
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
|
|
</template>
|
|
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
</template>
|
|
</BasicTable>
|
|
<!-- 表单区域 -->
|
|
<DirectiveBkItemModal ref="registerModal" @success="handleSuccess"></DirectiveBkItemModal>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" name="directivebk-directiveBkItem" setup>
|
|
import { ref, reactive } from 'vue';
|
|
import { BasicTable, useTable, TableAction } from '/@/components/Table';
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
import { columns, superQuerySchema } from './DirectiveBkItem.data';
|
|
import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from './DirectiveBkItem.api';
|
|
import { downloadFile } from '/@/utils/common/renderUtils';
|
|
import DirectiveBkItemModal from './components/DirectiveBkItemModal.vue'
|
|
import { useUserStore } from '/@/store/modules/user';
|
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
|
import JInput from "/@/components/Form/src/jeecg/components/JInput.vue";
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
|
|
|
const { createMessage } = useMessage();
|
|
const props = defineProps({
|
|
bkOrgCode: '',
|
|
pkid: '',
|
|
});
|
|
const formRef = ref();
|
|
const queryParam = reactive<any>({});
|
|
const toggleSearchStatus = ref<boolean>(false);
|
|
const registerModal = ref();
|
|
const userStore = useUserStore();
|
|
//注册table数据
|
|
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
|
tableProps: {
|
|
title: '指令备份子表',
|
|
api: list,
|
|
columns,
|
|
canResize: false,
|
|
useSearchForm: false,
|
|
immediate: false,
|
|
scroll: { y: '58vh' },
|
|
showActionColumn: false,
|
|
actionColumn: {
|
|
width: 100,
|
|
fixed: 'right',
|
|
},
|
|
pagination: {
|
|
current: 1,
|
|
pageSize: 15,
|
|
pageSizeOptions: ['15', '50', '70', '100'],
|
|
},
|
|
beforeFetch: async (params) => {
|
|
queryParam.pkid = props.pkid
|
|
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: 5,
|
|
xxl: 5
|
|
});
|
|
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) {
|
|
createMessage.warning('功能建设中~')
|
|
// registerModal.value.disableSubmit = true;
|
|
// registerModal.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: handleDetail.bind(null, record),
|
|
}
|
|
];
|
|
}
|
|
|
|
/**
|
|
* 下拉操作栏
|
|
*/
|
|
function getDropDownAction(record) {
|
|
return [
|
|
]
|
|
}
|
|
|
|
/**
|
|
* 查询
|
|
*/
|
|
function searchQuery() {
|
|
reload();
|
|
}
|
|
|
|
/**
|
|
* 重置
|
|
*/
|
|
function searchReset() {
|
|
formRef.value.resetFields();
|
|
selectedRowKeys.value = [];
|
|
//刷新数据
|
|
reload();
|
|
}
|
|
|
|
function init() {
|
|
reload()
|
|
}
|
|
|
|
defineExpose({
|
|
init,
|
|
});
|
|
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.jeecg-basic-table-form-container {
|
|
padding: 0;
|
|
margin-bottom: 14px;
|
|
|
|
.table-page-search-submitButtons {
|
|
display: block;
|
|
margin-bottom: 14px;
|
|
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: 14px;
|
|
height: 32px;
|
|
}
|
|
|
|
:deep(.ant-picker),
|
|
:deep(.ant-input-number) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|