213 lines
6.3 KiB
Vue
213 lines
6.3 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-select placeholder="请选择题目类型" ref="select" v-model:value="queryParam.wjType">
|
||
|
<a-select-option value="">全部</a-select-option>
|
||
|
<a-select-option value="3">单选</a-select-option>
|
||
|
<a-select-option value="4">多选</a-select-option>
|
||
|
<a-select-option value="5">填空</a-select-option>
|
||
|
</a-select>
|
||
|
</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" :rowSelection="rowSelection">
|
||
|
<!--插槽: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-siyou" setup>
|
||
|
import {ref, reactive,watch, computed, unref,defineExpose} 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 {columnsYytkdc} from './WjxWjxxTmlb.data';
|
||
|
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl,distinctList} from './WjxWjxxTmlb.api';
|
||
|
import {downloadFile} from '/@/utils/common/renderUtils';
|
||
|
import { JInput,JDictSelectTag } from '/@/components/Form';
|
||
|
import { useUserStore } from '/@/store/modules/user';
|
||
|
|
||
|
//用户相关
|
||
|
const userStore = useUserStore();
|
||
|
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: distinctList,
|
||
|
columns: columnsYytkdc,
|
||
|
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 emit = defineEmits(['register', 'ok']);
|
||
|
const [registerTable, {reload},{ rowSelection, selectedRowKeys,selectedRows }] = tableContext
|
||
|
|
||
|
const props = defineProps({
|
||
|
currentRowKey: Object,
|
||
|
})
|
||
|
|
||
|
watch(() => props.currentRowKey, async (newRow, oldRow) => {
|
||
|
selectedRows.value = [];
|
||
|
selectedRowKeys.value = [];
|
||
|
});
|
||
|
/**
|
||
|
* 详情
|
||
|
*/
|
||
|
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();
|
||
|
}
|
||
|
|
||
|
function submitForm(){
|
||
|
console.log(`🚀 ~ searchReset 111111 ~ selectedRowKeys:`, selectedRowKeys)
|
||
|
console.log(`🚀 ~ searchReset 222222 ~ selectedRows:`, selectedRows)
|
||
|
emit('ok',selectedRows.value);
|
||
|
}
|
||
|
|
||
|
function init(record){
|
||
|
console.log(`🚀 ~ init ~ record:`, record)
|
||
|
selectedRowKeys.value = []
|
||
|
selectedRows.value = []
|
||
|
queryParam.value = {
|
||
|
...record
|
||
|
}
|
||
|
reload();
|
||
|
}
|
||
|
|
||
|
|
||
|
defineExpose({
|
||
|
init,
|
||
|
submitForm,
|
||
|
});
|
||
|
|
||
|
|
||
|
</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>
|