diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansBad.api.ts b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansBad.api.ts new file mode 100644 index 0000000..8051fcc --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansBad.api.ts @@ -0,0 +1,72 @@ +import { defHttp } from '/@/utils/http/axios'; +import { useMessage } from "/@/hooks/web/useMessage"; + +const { createConfirm } = useMessage(); + +enum Api { + list = '/grab/kcOldEvaluationansBad/list', + save='/grab/kcOldEvaluationansBad/add', + edit='/grab/kcOldEvaluationansBad/edit', + deleteOne = '/grab/kcOldEvaluationansBad/delete', + deleteBatch = '/grab/kcOldEvaluationansBad/deleteBatch', + importExcel = '/grab/kcOldEvaluationansBad/importExcel', + exportXls = '/grab/kcOldEvaluationansBad/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/xxhbbkjxtkpjBadLog/KcOldEvaluationansBad.data.ts b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansBad.data.ts new file mode 100644 index 0000000..e899f2f --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansBad.data.ts @@ -0,0 +1,232 @@ +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: 'kcmc' + }, + { + title: '开课院系', + align: "center", + dataIndex: 'kkdw' + }, + { + title: '上课教师工号', + align: "center", + dataIndex: 'jgh' + }, + { + title: '上课教师', + align: "center", + dataIndex: 'skjs' + }, + { + title: '上课时间', + align: "center", + dataIndex: 'sksj' + }, + { + title: '课程节次', + align: "center", + dataIndex: 'hh' + }, + { + title: '上课地点', + align: "center", + dataIndex: 'skdd' + }, + { + title: '听课教师工号', + align: "center", + dataIndex: 'tkjgh' + }, + { + title: '听课教师', + align: "center", + dataIndex: 'tkjs' + }, + { + title: '评课时间', + align: "center", + dataIndex: 'pksj' + }, + { + title: '答案1', + align: "center", + dataIndex: 'ans1' + }, + { + title: '答案2', + align: "center", + dataIndex: 'ans2' + }, + { + title: '答案3', + align: "center", + dataIndex: 'ans3' + }, + { + title: '答案4', + align: "center", + dataIndex: 'ans4' + }, + { + title: '答案5', + align: "center", + dataIndex: 'ans5' + }, + { + title: '答案6', + align: "center", + dataIndex: 'ans6' + }, + { + title: '答案7', + align: "center", + dataIndex: 'ans7' + }, + { + title: '答案8', + align: "center", + dataIndex: 'ans8' + }, + { + title: '答案9', + align: "center", + dataIndex: 'ans9' + }, + { + title: '答案10', + align: "center", + dataIndex: 'ans10' + }, + { + title: '学年学期', + align: "center", + dataIndex: 'xnxq' + }, +]; + +//查询数据 +export const searchFormSchema: FormSchema[] = [ +]; + +//表单数据 +export const formSchema: FormSchema[] = [ + { + label: '课程名称', + field: 'kcmc', + component: 'Input', + }, + { + label: '开课院系', + field: 'kkdw', + component: 'Input', + }, + { + label: '上课教师工号', + field: 'jgh', + component: 'Input', + }, + { + label: '上课教师', + field: 'skjs', + component: 'Input', + }, + { + label: '上课时间', + field: 'sksj', + component: 'Input', + }, + { + label: '课程节次', + field: 'hh', + component: 'Input', + }, + { + label: '上课地点', + field: 'skdd', + component: 'Input', + }, + { + label: '听课教师工号', + field: 'tkjgh', + component: 'Input', + }, + { + label: '听课教师', + field: 'tkjs', + component: 'Input', + }, + { + label: '评课时间', + field: 'pksj', + component: 'Input', + }, + { + label: '答案1', + field: 'ans1', + component: 'Input', + }, + { + label: '答案2', + field: 'ans2', + component: 'Input', + }, + { + label: '答案3', + field: 'ans3', + component: 'Input', + }, + { + label: '答案4', + field: 'ans4', + component: 'Input', + }, + { + label: '答案5', + field: 'ans5', + component: 'Input', + }, + { + label: '答案6', + field: 'ans6', + component: 'Input', + }, + { + label: '答案7', + field: 'ans7', + component: 'Input', + }, + { + label: '答案8', + field: 'ans8', + component: 'Input', + }, + { + label: '答案9', + field: 'ans9', + component: 'Input', + }, + { + label: '答案10', + field: 'ans10', + component: 'InputTextArea', + }, + { + label: '学年学期', + field: 'xnxq', + component: 'Input', + }, + // TODO 主键隐藏字段,目前写死为ID + { + label: '', + field: 'id', + component: 'Input', + show: false, + }, +]; diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansBadList.vue b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansBadList.vue new file mode 100644 index 0000000..fb5ff34 --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansBadList.vue @@ -0,0 +1,216 @@ + + + + + diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansGood.api.ts b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansGood.api.ts new file mode 100644 index 0000000..5f40c61 --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansGood.api.ts @@ -0,0 +1,72 @@ +import { defHttp } from '/@/utils/http/axios'; +import { useMessage } from "/@/hooks/web/useMessage"; + +const { createConfirm } = useMessage(); + +enum Api { + list = '/grab/kcOldEvaluationansGood/list', + save='/grab/kcOldEvaluationansGood/add', + edit='/grab/kcOldEvaluationansGood/edit', + deleteOne = '/grab/kcOldEvaluationansGood/delete', + deleteBatch = '/grab/kcOldEvaluationansGood/deleteBatch', + importExcel = '/grab/kcOldEvaluationansGood/importExcel', + exportXls = '/grab/kcOldEvaluationansGood/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/xxhbbkjxtkpjBadLog/KcOldEvaluationansGood.data.ts b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansGood.data.ts new file mode 100644 index 0000000..e899f2f --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansGood.data.ts @@ -0,0 +1,232 @@ +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: 'kcmc' + }, + { + title: '开课院系', + align: "center", + dataIndex: 'kkdw' + }, + { + title: '上课教师工号', + align: "center", + dataIndex: 'jgh' + }, + { + title: '上课教师', + align: "center", + dataIndex: 'skjs' + }, + { + title: '上课时间', + align: "center", + dataIndex: 'sksj' + }, + { + title: '课程节次', + align: "center", + dataIndex: 'hh' + }, + { + title: '上课地点', + align: "center", + dataIndex: 'skdd' + }, + { + title: '听课教师工号', + align: "center", + dataIndex: 'tkjgh' + }, + { + title: '听课教师', + align: "center", + dataIndex: 'tkjs' + }, + { + title: '评课时间', + align: "center", + dataIndex: 'pksj' + }, + { + title: '答案1', + align: "center", + dataIndex: 'ans1' + }, + { + title: '答案2', + align: "center", + dataIndex: 'ans2' + }, + { + title: '答案3', + align: "center", + dataIndex: 'ans3' + }, + { + title: '答案4', + align: "center", + dataIndex: 'ans4' + }, + { + title: '答案5', + align: "center", + dataIndex: 'ans5' + }, + { + title: '答案6', + align: "center", + dataIndex: 'ans6' + }, + { + title: '答案7', + align: "center", + dataIndex: 'ans7' + }, + { + title: '答案8', + align: "center", + dataIndex: 'ans8' + }, + { + title: '答案9', + align: "center", + dataIndex: 'ans9' + }, + { + title: '答案10', + align: "center", + dataIndex: 'ans10' + }, + { + title: '学年学期', + align: "center", + dataIndex: 'xnxq' + }, +]; + +//查询数据 +export const searchFormSchema: FormSchema[] = [ +]; + +//表单数据 +export const formSchema: FormSchema[] = [ + { + label: '课程名称', + field: 'kcmc', + component: 'Input', + }, + { + label: '开课院系', + field: 'kkdw', + component: 'Input', + }, + { + label: '上课教师工号', + field: 'jgh', + component: 'Input', + }, + { + label: '上课教师', + field: 'skjs', + component: 'Input', + }, + { + label: '上课时间', + field: 'sksj', + component: 'Input', + }, + { + label: '课程节次', + field: 'hh', + component: 'Input', + }, + { + label: '上课地点', + field: 'skdd', + component: 'Input', + }, + { + label: '听课教师工号', + field: 'tkjgh', + component: 'Input', + }, + { + label: '听课教师', + field: 'tkjs', + component: 'Input', + }, + { + label: '评课时间', + field: 'pksj', + component: 'Input', + }, + { + label: '答案1', + field: 'ans1', + component: 'Input', + }, + { + label: '答案2', + field: 'ans2', + component: 'Input', + }, + { + label: '答案3', + field: 'ans3', + component: 'Input', + }, + { + label: '答案4', + field: 'ans4', + component: 'Input', + }, + { + label: '答案5', + field: 'ans5', + component: 'Input', + }, + { + label: '答案6', + field: 'ans6', + component: 'Input', + }, + { + label: '答案7', + field: 'ans7', + component: 'Input', + }, + { + label: '答案8', + field: 'ans8', + component: 'Input', + }, + { + label: '答案9', + field: 'ans9', + component: 'Input', + }, + { + label: '答案10', + field: 'ans10', + component: 'InputTextArea', + }, + { + label: '学年学期', + field: 'xnxq', + component: 'Input', + }, + // TODO 主键隐藏字段,目前写死为ID + { + label: '', + field: 'id', + component: 'Input', + show: false, + }, +]; diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansGoodList.vue b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansGoodList.vue new file mode 100644 index 0000000..ea37ff8 --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/KcOldEvaluationansGoodList.vue @@ -0,0 +1,216 @@ + + + + + diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/XxhbbkjxtkpjGoodLog.api.ts b/src/views/kc/xxhbbkjxtkpjBadLog/XxhbbkjxtkpjGoodLog.api.ts new file mode 100644 index 0000000..79d4ab6 --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/XxhbbkjxtkpjGoodLog.api.ts @@ -0,0 +1,72 @@ +import { defHttp } from '/@/utils/http/axios'; +import { useMessage } from "/@/hooks/web/useMessage"; + +const { createConfirm } = useMessage(); + +enum Api { + list = '/grab/xxhbbkjxtkpjGoodLog/list', + save='/grab/xxhbbkjxtkpjGoodLog/add', + edit='/grab/xxhbbkjxtkpjGoodLog/edit', + deleteOne = '/grab/xxhbbkjxtkpjGoodLog/delete', + deleteBatch = '/grab/xxhbbkjxtkpjGoodLog/deleteBatch', + importExcel = '/grab/xxhbbkjxtkpjGoodLog/importExcel', + exportXls = '/grab/xxhbbkjxtkpjGoodLog/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/xxhbbkjxtkpjBadLog/XxhbbkjxtkpjGoodLog.data.ts b/src/views/kc/xxhbbkjxtkpjBadLog/XxhbbkjxtkpjGoodLog.data.ts new file mode 100644 index 0000000..c4cf89c --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/XxhbbkjxtkpjGoodLog.data.ts @@ -0,0 +1,300 @@ +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: 'bh' + }, + { + title: '轮次编号', + align: "center", + dataIndex: 'lcbh' + }, + { + title: '轮次出镜人', + align: "center", + dataIndex: 'lccjr' + }, + { + title: '听课人工号', + align: "center", + dataIndex: 'tkrgh' + }, + { + title: '听课人姓名', + align: "center", + dataIndex: 'tkrxm' + }, + { + title: '听课人单位名称', + align: "center", + dataIndex: 'tkrdwmc' + }, + { + title: '听课时间学期', + align: "center", + dataIndex: 'tksjxq' + }, + { + title: '课程节次', + align: "center", + dataIndex: 'kcjc' + }, + { + title: '课程节次(转换后)', + align: "center", + dataIndex: 'hh' + }, + { + title: '课程单位', + align: "center", + dataIndex: 'kcdm' + }, + { + title: '听课教师', + align: "center", + dataIndex: 'tkjs' + }, + { + title: '听课课程名称', + align: "center", + dataIndex: 'tkkcmc' + }, + { + title: '任课教师', + align: "center", + dataIndex: 'rkjs' + }, + { + title: '总体评价', + align: "center", + dataIndex: 'ztpj' + }, + { + title: '教师工号', + align: "center", + dataIndex: 'jsgh' + }, + { + title: '全体意见', + align: "center", + dataIndex: 'qtyj' + }, + { + title: '教师评估1', + align: "center", + dataIndex: 'jspg1' + }, + { + title: '教师评估2', + align: "center", + dataIndex: 'jspg2' + }, + { + title: '教师评估3', + align: "center", + dataIndex: 'jspg3' + }, + { + title: '教师评估4', + align: "center", + dataIndex: 'jspg4' + }, + { + title: '教师评估5', + align: "center", + dataIndex: 'jspg5' + }, + { + title: '学生评估1', + align: "center", + dataIndex: 'xspg1' + }, + { + title: '学生评估2', + align: "center", + dataIndex: 'xspg2' + }, + { + title: '学生评估3', + align: "center", + dataIndex: 'xspg3' + }, + { + title: '课程编号', + align: "center", + dataIndex: 'kcbh' + }, + { + title: '时间戳', + align: "center", + dataIndex: 'timestamps', + customRender:({text}) =>{ + return !text?"":(text.length>10?text.substr(0,10):text); + }, + }, + { + title: '课表编号', + align: "center", + dataIndex: 'kbbh' + }, +]; + +//查询数据 +export const searchFormSchema: FormSchema[] = [ +]; + +//表单数据 +export const formSchema: FormSchema[] = [ + { + label: '编号', + field: 'bh', + component: 'Input', + dynamicRules: ({model,schema}) => { + return [ + { required: true, message: '请输入编号!'}, + ]; + }, + }, + { + label: '轮次编号', + field: 'lcbh', + component: 'Input', + }, + { + label: '轮次出镜人', + field: 'lccjr', + component: 'Input', + }, + { + label: '听课人工号', + field: 'tkrgh', + component: 'Input', + }, + { + label: '听课人姓名', + field: 'tkrxm', + component: 'Input', + }, + { + label: '听课人单位名称', + field: 'tkrdwmc', + component: 'Input', + }, + { + label: '听课时间学期', + field: 'tksjxq', + component: 'Input', + }, + { + label: '课程节次', + field: 'kcjc', + component: 'Input', + }, + { + label: '课程节次(转换后)', + field: 'hh', + component: 'Input', + }, + { + label: '课程单位', + field: 'kcdm', + component: 'Input', + }, + { + label: '听课教师', + field: 'tkjs', + component: 'Input', + }, + { + label: '听课课程名称', + field: 'tkkcmc', + component: 'Input', + }, + { + label: '任课教师', + field: 'rkjs', + component: 'Input', + }, + { + label: '总体评价', + field: 'ztpj', + component: 'Input', + }, + { + label: '教师工号', + field: 'jsgh', + component: 'Input', + }, + { + label: '全体意见', + field: 'qtyj', + component: 'InputTextArea', + }, + { + label: '教师评估1', + field: 'jspg1', + component: 'Input', + }, + { + label: '教师评估2', + field: 'jspg2', + component: 'Input', + }, + { + label: '教师评估3', + field: 'jspg3', + component: 'Input', + }, + { + label: '教师评估4', + field: 'jspg4', + component: 'Input', + }, + { + label: '教师评估5', + field: 'jspg5', + component: 'Input', + }, + { + label: '学生评估1', + field: 'xspg1', + component: 'Input', + }, + { + label: '学生评估2', + field: 'xspg2', + component: 'Input', + }, + { + label: '学生评估3', + field: 'xspg3', + component: 'Input', + }, + { + label: '课程编号', + field: 'kcbh', + component: 'Input', + }, + { + label: '时间戳', + field: 'timestamps', + component: 'DatePicker', + }, + { + label: '课表编号', + field: 'kbbh', + component: 'Input', + }, + // TODO 主键隐藏字段,目前写死为ID + { + label: '', + field: 'id', + component: 'Input', + show: false, + }, +]; diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/XxhbbkjxtkpjGoodLogList.vue b/src/views/kc/xxhbbkjxtkpjBadLog/XxhbbkjxtkpjGoodLogList.vue new file mode 100644 index 0000000..6dcd1df --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/XxhbbkjxtkpjGoodLogList.vue @@ -0,0 +1,302 @@ + + + + + diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansBadForm.vue b/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansBadForm.vue new file mode 100644 index 0000000..12bac15 --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansBadForm.vue @@ -0,0 +1,247 @@ + + + + + diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansBadModal.vue b/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansBadModal.vue new file mode 100644 index 0000000..570dbc8 --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansBadModal.vue @@ -0,0 +1,75 @@ + + + + + diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansGoodForm.vue b/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansGoodForm.vue new file mode 100644 index 0000000..44b6dae --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansGoodForm.vue @@ -0,0 +1,247 @@ + + + + + diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansGoodModal.vue b/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansGoodModal.vue new file mode 100644 index 0000000..1a1791c --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/components/KcOldEvaluationansGoodModal.vue @@ -0,0 +1,75 @@ + + + + + diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjBadLogForm.vue b/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjBadLogForm.vue index 4f6c717..083c348 100644 --- a/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjBadLogForm.vue +++ b/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjBadLogForm.vue @@ -2,132 +2,132 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -144,7 +144,7 @@ import { getValueType } from '/@/utils'; import { saveOrUpdate } from '../XxhbbkjxtkpjBadLog.api'; import { Form } from 'ant-design-vue'; - + const props = defineProps({ formDisabled: { type: Boolean, default: false }, formData: { type: Object, default: ()=>{} }, @@ -204,7 +204,7 @@ return props.formDisabled; }); - + /** * 新增 */ diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjBadLogModal.vue b/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjBadLogModal.vue index 12df5a1..706df6d 100644 --- a/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjBadLogModal.vue +++ b/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjBadLogModal.vue @@ -7,9 +7,9 @@ + + diff --git a/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjGoodLogModal.vue b/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjGoodLogModal.vue new file mode 100644 index 0000000..7340b17 --- /dev/null +++ b/src/views/kc/xxhbbkjxtkpjBadLog/components/XxhbbkjxtkpjGoodLogModal.vue @@ -0,0 +1,75 @@ + + + + +