diff --git a/src/views/kc/kcXqxnHistory/KcXqxnHistory.api.ts b/src/views/kc/kcXqxnHistory/KcXqxnHistory.api.ts
new file mode 100644
index 0000000..2bcb08f
--- /dev/null
+++ b/src/views/kc/kcXqxnHistory/KcXqxnHistory.api.ts
@@ -0,0 +1,72 @@
+import { defHttp } from '/@/utils/http/axios';
+import { useMessage } from "/@/hooks/web/useMessage";
+
+const { createConfirm } = useMessage();
+
+enum Api {
+ list = '/kcXqxnHistory/kcXqxnHistory/list',
+ save='/kcXqxnHistory/kcXqxnHistory/add',
+ edit='/kcXqxnHistory/kcXqxnHistory/edit',
+ deleteOne = '/kcXqxnHistory/kcXqxnHistory/delete',
+ deleteBatch = '/kcXqxnHistory/kcXqxnHistory/deleteBatch',
+ importExcel = '/kcXqxnHistory/kcXqxnHistory/importExcel',
+ exportXls = '/kcXqxnHistory/kcXqxnHistory/exportXls',
+}
+
+/**
+ * 导出api
+ * @param params
+ */
+export const getExportUrl = Api.exportXls;
+
+/**
+ * 导入api
+ */
+export const getImportUrl = Api.importExcel;
+
+/**
+ * 列表接口
+ * @param params
+ */
+export const list = (params) => defHttp.get({ url: Api.list, params });
+
+/**
+ * 删除单个
+ * @param params
+ * @param handleSuccess
+ */
+export const deleteOne = (params,handleSuccess) => {
+ return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
+ handleSuccess();
+ });
+}
+
+/**
+ * 批量删除
+ * @param params
+ * @param handleSuccess
+ */
+export const batchDelete = (params, handleSuccess) => {
+ createConfirm({
+ iconType: 'warning',
+ title: '确认删除',
+ content: '是否删除选中数据',
+ okText: '确认',
+ cancelText: '取消',
+ onOk: () => {
+ return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
+ handleSuccess();
+ });
+ }
+ });
+}
+
+/**
+ * 保存或者更新
+ * @param params
+ * @param isUpdate
+ */
+export const saveOrUpdate = (params, isUpdate) => {
+ let url = isUpdate ? Api.edit : Api.save;
+ return defHttp.post({ url: url, params }, { isTransformResponse: false });
+}
diff --git a/src/views/kc/kcXqxnHistory/KcXqxnHistory.data.ts b/src/views/kc/kcXqxnHistory/KcXqxnHistory.data.ts
new file mode 100644
index 0000000..0c1cf11
--- /dev/null
+++ b/src/views/kc/kcXqxnHistory/KcXqxnHistory.data.ts
@@ -0,0 +1,76 @@
+import {BasicColumn} from '/@/components/Table';
+import {FormSchema} from '/@/components/Table';
+import { rules} from '/@/utils/helper/validator';
+import { render } from '/@/utils/common/renderUtils';
+//列表数据
+export const columns: BasicColumn[] = [
+ {
+ title: '学期学年',
+ align: "center",
+ dataIndex: 'title'
+ },
+ {
+ title: '开始时间',
+ align: "center",
+ dataIndex: 'startTime',
+ customRender:({text}) =>{
+ return !text?"":(text.length>10?text.substr(0,10):text);
+ },
+ },
+ {
+ title: '结束时间',
+ align: "center",
+ dataIndex: 'endTime',
+ customRender:({text}) =>{
+ return !text?"":(text.length>10?text.substr(0,10):text);
+ },
+ },
+];
+
+//查询数据
+export const searchFormSchema: FormSchema[] = [
+ {
+ label: "学期学年",
+ field: 'title',
+ component: 'Input',
+ colProps: {span: 6},
+ },
+ {
+ label: "开始时间",
+ field: "startTime",
+ component: 'RangePicker',
+ colProps: {span: 6},
+ },
+ {
+ label: "结束时间",
+ field: "endTime",
+ component: 'RangePicker',
+ colProps: {span: 6},
+ },
+];
+
+//表单数据
+export const formSchema: FormSchema[] = [
+ {
+ label: '学期学年',
+ field: 'title',
+ component: 'Input',
+ },
+ {
+ label: '开始时间',
+ field: 'startTime',
+ component: 'DatePicker',
+ },
+ {
+ label: '结束时间',
+ field: 'endTime',
+ component: 'DatePicker',
+ },
+ // TODO 主键隐藏字段,目前写死为ID
+ {
+ label: '',
+ field: 'id',
+ component: 'Input',
+ show: false,
+ },
+];
diff --git a/src/views/kc/kcXqxnHistory/KcXqxnHistoryList.vue b/src/views/kc/kcXqxnHistory/KcXqxnHistoryList.vue
new file mode 100644
index 0000000..b2b64e7
--- /dev/null
+++ b/src/views/kc/kcXqxnHistory/KcXqxnHistoryList.vue
@@ -0,0 +1,248 @@
+
+
+
+
+
+
+
+
+ 新增
+ 导出
+ 导入
+
+
+
+
+
+ 删除
+
+
+
+ 批量操作
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 无文件
+ 下载
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/kc/kcXqxnHistory/components/KcXqxnHistoryForm.vue b/src/views/kc/kcXqxnHistory/components/KcXqxnHistoryForm.vue
new file mode 100644
index 0000000..328e39f
--- /dev/null
+++ b/src/views/kc/kcXqxnHistory/components/KcXqxnHistoryForm.vue
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/kc/kcXqxnHistory/components/KcXqxnHistoryModal.vue b/src/views/kc/kcXqxnHistory/components/KcXqxnHistoryModal.vue
new file mode 100644
index 0000000..c3883c8
--- /dev/null
+++ b/src/views/kc/kcXqxnHistory/components/KcXqxnHistoryModal.vue
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+