189 lines
5.5 KiB
Vue
189 lines
5.5 KiB
Vue
<template>
|
|
<div>
|
|
<!--查询区域-->
|
|
<div class="jeecg-basic-table-form-container">
|
|
<a-form @keyup.enter.native="reload" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
|
|
<a-row :gutter="24">
|
|
<a-col :lg="7">
|
|
<a-form-item label="问题标题">
|
|
<j-input placeholder="请输入问题标题" v-model:value="queryParam.wjTitle"></j-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<!-- <a-col :lg="7">
|
|
<a-form-item label="是否公有">
|
|
<JDictSelectTag placeholder="请选择" v-model:value="queryParam.wjSytype" dictCode="yn" />
|
|
</a-form-item>
|
|
</a-col> -->
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
<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-col>
|
|
</span>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
</div>
|
|
<!--引用表格-->
|
|
<BasicTable @register="registerTable">
|
|
<!--插槽:table标题-->
|
|
<!-- <template #tableTitle>
|
|
</template> -->
|
|
<!--操作栏-->
|
|
<template #action="{ record }">
|
|
<TableAction :actions="getTableAction(record)"/>
|
|
</template>
|
|
<!--字段回显插槽-->
|
|
<template #htmlSlot="{text}">
|
|
<div v-html="text"></div>
|
|
</template>
|
|
<!--省市区字段回显插槽-->
|
|
<template #pcaSlot="{text}">
|
|
{{ getAreaTextByCode(text) }}
|
|
</template>
|
|
<template #fileSlot="{text}">
|
|
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
|
|
<a-button v-else :ghost="true" type="primary" preIcon="ant-design:download-outlined" size="small" @click="downloadFile(text)">下载</a-button>
|
|
</template>
|
|
</BasicTable>
|
|
<!-- 表单区域 -->
|
|
<WjxWjxxTmlbModal @register="registerModal" @success="handleSuccess"></WjxWjxxTmlbModal>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" name="wjxWjxxTmlb-gongyou" setup>
|
|
import {ref, reactive,watch, computed, unref,onMounted} from 'vue';
|
|
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
import { useListPage } from '/@/hooks/system/useListPage'
|
|
import {useModal} from '/@/components/Modal';
|
|
import { defHttp } from '/@/utils/http/axios';
|
|
import WjxWjxxTmlbModal from './components/WjxWjxxTmlbModal.vue'
|
|
import {columns, searchFormSchema} from './WjxWjxxTmlb.data';
|
|
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './WjxWjxxTmlb.api';
|
|
import {downloadFile} from '/@/utils/common/renderUtils';
|
|
import { JInput,JDictSelectTag } from '/@/components/Form';
|
|
|
|
const checkedKeys = ref<Array<string | number>>([]);
|
|
const wjLeixing = ref<string>('');
|
|
//注册model
|
|
const [registerModal, {openModal}] = useModal();
|
|
//注册table数据
|
|
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
tableProps:{
|
|
// title: '题目信息',
|
|
api: list,
|
|
columns,
|
|
canResize:false,
|
|
useSearchForm: false,
|
|
actionColumn: {
|
|
width: 120,
|
|
fixed:'right'
|
|
},
|
|
beforeFetch: (params) => {
|
|
return Object.assign(params, queryParam.value);
|
|
},
|
|
},
|
|
exportConfig: {
|
|
name:"题目信息",
|
|
url: getExportUrl,
|
|
},
|
|
importConfig: {
|
|
url: getImportUrl,
|
|
success: handleSuccess
|
|
},
|
|
})
|
|
|
|
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
const props = defineProps({
|
|
wjLeixing: { type: String },
|
|
});
|
|
//监听条件变化
|
|
watch(() => props.wjLeixing, async (newRow, oldRow) => {
|
|
console.log(`🚀 ~ watch2222 ~ newRow, oldRow:`, newRow, oldRow)
|
|
queryParam.value.wjLeixing = newRow;
|
|
},{ deep: true });
|
|
/**
|
|
* 详情
|
|
*/
|
|
function handleDetail(record: Recordable) {
|
|
openModal(true, {
|
|
record,
|
|
isUpdate: true,
|
|
showFooter: false,
|
|
});
|
|
}
|
|
/**
|
|
* 成功回调
|
|
*/
|
|
function handleSuccess() {
|
|
(selectedRowKeys.value = []) && reload();
|
|
}
|
|
/**
|
|
* 操作栏
|
|
*/
|
|
function getTableAction(record){
|
|
return [
|
|
{
|
|
label: '详情',
|
|
onClick: handleDetail.bind(null, record),
|
|
}
|
|
]
|
|
}
|
|
|
|
|
|
|
|
/* ----------------------以下为原生查询需要添加的-------------------------- */
|
|
const queryParam = ref<any>({});
|
|
const toggleSearchStatus = ref<boolean>(false);
|
|
const labelCol = reactive({
|
|
xs: { span: 24 },
|
|
sm: { span: 7 },
|
|
});
|
|
const wrapperCol = reactive({
|
|
xs: { span: 24 },
|
|
sm: { span: 16 },
|
|
});
|
|
|
|
/**
|
|
* 查询
|
|
*/
|
|
function searchQuery() {
|
|
reload();
|
|
}
|
|
/**
|
|
* 重置
|
|
*/
|
|
function searchReset() {
|
|
queryParam.value = {};
|
|
selectedRowKeys.value = [];
|
|
//刷新数据
|
|
reload();
|
|
}
|
|
|
|
|
|
onMounted(() => {
|
|
// wjLeixing.value = "1";
|
|
// queryParam.value.wjLeixing = "1";
|
|
queryParam.value.wjSytype = "1";
|
|
reload();
|
|
});
|
|
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.jeecg-basic-table-form-container {
|
|
.table-page-search-submitButtons {
|
|
display: block;
|
|
margin-bottom: 24px;
|
|
white-space: nowrap;
|
|
}
|
|
.query-group-cust{
|
|
width: calc(50% - 15px);
|
|
min-width: 100px !important;
|
|
}
|
|
.query-group-split-cust{
|
|
width: 30px;
|
|
display: inline-block;
|
|
text-align: center
|
|
}
|
|
}
|
|
</style> |