diff --git a/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLog.api.ts b/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLog.api.ts
new file mode 100644
index 0000000..fa2f83c
--- /dev/null
+++ b/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLog.api.ts
@@ -0,0 +1,81 @@
+import { defHttp } from '/@/utils/http/axios';
+import { useMessage } from "/@/hooks/web/useMessage";
+
+const { createConfirm } = useMessage();
+
+enum Api {
+ list = '/nuWorkOrderPzxxLog/nuWorkOrderPzxxLog/list',
+ save='/nuWorkOrderPzxxLog/nuWorkOrderPzxxLog/add',
+ edit='/nuWorkOrderPzxxLog/nuWorkOrderPzxxLog/edit',
+ deleteOne = '/nuWorkOrderPzxxLog/nuWorkOrderPzxxLog/delete',
+ deleteBatch = '/nuWorkOrderPzxxLog/nuWorkOrderPzxxLog/deleteBatch',
+ importExcel = '/nuWorkOrderPzxxLog/nuWorkOrderPzxxLog/importExcel',
+ exportXls = '/nuWorkOrderPzxxLog/nuWorkOrderPzxxLog/exportXls',
+ testConnection = '/online/cgreport/api/testConnection',
+}
+
+/**
+ * 导出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 });
+}
+
+/**
+ * 测试连接
+ * @param params
+ */
+export const testConnection = (params) => {
+ return defHttp.post({ url: Api.testConnection, params });
+};
\ No newline at end of file
diff --git a/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLog.data.ts b/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLog.data.ts
new file mode 100644
index 0000000..cdffffc
--- /dev/null
+++ b/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLog.data.ts
@@ -0,0 +1,45 @@
+import {BasicColumn} from '/@/components/Table';
+import {FormSchema} from '/@/components/Table';
+import { rules} from '/@/utils/helper/validator';
+import { render } from '/@/utils/common/renderUtils';
+import { getWeekMonthQuarterYear } from '/@/utils';
+//列表数据
+export const columns: BasicColumn[] = [
+ {
+ title: '机构名称',
+ align: "center",
+ dataIndex: 'orgName'
+ },
+ {
+ title: '访问地址',
+ align: "center",
+ dataIndex: 'netUrl'
+ },
+ {
+ title: '账号',
+ align: "center",
+ dataIndex: 'accountNo',
+ width: 100
+ },
+ {
+ title: '密码',
+ align: "center",
+ dataIndex: 'passwordText',
+ width: 100
+ },
+ {
+ title: '是否应用',
+ align: "center",
+ dataIndex: 'izEnabled_dictText',
+ width: 100
+ },
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+ orgName: {title: '机构名称',order: 1,view: 'text', type: 'string',},
+ netUrl: {title: '访问地址',order: 2,view: 'text', type: 'string',},
+ accountNo: {title: '账号',order: 3,view: 'text', type: 'string',},
+ passwordText: {title: '密码',order: 4,view: 'text', type: 'string',},
+ izEnabled: {title: '是否启用',order: 10,view: 'list', type: 'string',dictCode: 'iz_enabled',},
+};
diff --git a/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLogList.vue b/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLogList.vue
new file mode 100644
index 0000000..96fb6e3
--- /dev/null
+++ b/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLogList.vue
@@ -0,0 +1,188 @@
+
+
+
+
+
+
+
+
+ 新增
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLogListModal.vue b/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLogListModal.vue
new file mode 100644
index 0000000..528669f
--- /dev/null
+++ b/src/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLogListModal.vue
@@ -0,0 +1,71 @@
+
+
+
+
+
+ 关闭
+
+
+
+
+
+
+
+
diff --git a/src/views/admin/nuWorkOrderPzxxLog/components/NuWorkOrderPzxxLogForm.vue b/src/views/admin/nuWorkOrderPzxxLog/components/NuWorkOrderPzxxLogForm.vue
new file mode 100644
index 0000000..6370a81
--- /dev/null
+++ b/src/views/admin/nuWorkOrderPzxxLog/components/NuWorkOrderPzxxLogForm.vue
@@ -0,0 +1,490 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/admin/nuWorkOrderPzxxLog/components/NuWorkOrderPzxxLogModal.vue b/src/views/admin/nuWorkOrderPzxxLog/components/NuWorkOrderPzxxLogModal.vue
new file mode 100644
index 0000000..d89af43
--- /dev/null
+++ b/src/views/admin/nuWorkOrderPzxxLog/components/NuWorkOrderPzxxLogModal.vue
@@ -0,0 +1,82 @@
+
+
+
+
+ 关闭
+ 确认
+
+
+
+
+
+
+
+
diff --git a/src/views/admin/workorder/WorkOrderList.vue b/src/views/admin/workorder/WorkOrderList.vue
index 3213136..7e9b2ed 100644
--- a/src/views/admin/workorder/WorkOrderList.vue
+++ b/src/views/admin/workorder/WorkOrderList.vue
@@ -64,9 +64,10 @@
-
-
+
+
+
@@ -83,6 +84,7 @@ import JInput from "/@/components/Form/src/jeecg/components/JInput.vue";
import { useMessage } from '/@/hooks/web/useMessage';
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
import GdglDataSourceModal from './components/DataSourceModal.vue';
+import NuWorkOrderPzxxLogListModal from '/@/views/admin/nuWorkOrderPzxxLog/NuWorkOrderPzxxLogListModal.vue';
import { useDrawer } from "@/components/Drawer";
@@ -92,6 +94,7 @@ const registerDrawer = ref();
const queryParam = reactive({});
const toggleSearchStatus = ref(false);
const registerModal = ref();
+const orderPzxxLogDrawer = ref();
const userStore = useUserStore();
const { createMessage } = useMessage();
//注册table数据
@@ -172,6 +175,14 @@ function handleSuccess() {
(selectedRowKeys.value = []) && reload();
}
+/**
+ * 配置信息
+ */
+function handlePzxx(record) {
+ orderPzxxLogDrawer.value.disableSubmit = true;
+ orderPzxxLogDrawer.value.init(record);
+}
+
/**
* 操作栏
*/
@@ -206,6 +217,11 @@ function getTableAction(record) {
confirm: handFkFunc.bind(null, record),
},
},
+ {
+ label: '配置信息',
+ onClick: handlePzxx.bind(null, record),
+ ifShow: record.status > 1
+ },
// {
// label: '访问配置',
// onClick: handleFwpz.bind(null, record),
diff --git a/src/views/nuPlatformServerInfo/NuPlatformServerInfo.api.ts b/src/views/nuPlatformServerInfo/NuPlatformServerInfo.api.ts
new file mode 100644
index 0000000..674fd08
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/NuPlatformServerInfo.api.ts
@@ -0,0 +1,72 @@
+import { defHttp } from '/@/utils/http/axios';
+import { useMessage } from "/@/hooks/web/useMessage";
+
+const { createConfirm } = useMessage();
+
+enum Api {
+ list = '/nuPlatformServerInfo/nuPlatformServerInfo/list',
+ save='/nuPlatformServerInfo/nuPlatformServerInfo/add',
+ edit='/nuPlatformServerInfo/nuPlatformServerInfo/edit',
+ deleteOne = '/nuPlatformServerInfo/nuPlatformServerInfo/delete',
+ deleteBatch = '/nuPlatformServerInfo/nuPlatformServerInfo/deleteBatch',
+ importExcel = '/nuPlatformServerInfo/nuPlatformServerInfo/importExcel',
+ exportXls = '/nuPlatformServerInfo/nuPlatformServerInfo/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/nuPlatformServerInfo/NuPlatformServerInfo.data.ts b/src/views/nuPlatformServerInfo/NuPlatformServerInfo.data.ts
new file mode 100644
index 0000000..ce97e31
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/NuPlatformServerInfo.data.ts
@@ -0,0 +1,48 @@
+import {BasicColumn} from '/@/components/Table';
+import {FormSchema} from '/@/components/Table';
+import { rules} from '/@/utils/helper/validator';
+import { render } from '/@/utils/common/renderUtils';
+import { getWeekMonthQuarterYear } from '/@/utils';
+//列表数据
+export const columns: BasicColumn[] = [
+ {
+ title: '机构编码',
+ align: "center",
+ dataIndex: 'orgCode'
+ },
+ {
+ title: '机构名称',
+ align: "center",
+ dataIndex: 'orgName'
+ },
+ {
+ title: '访问网址',
+ align: "center",
+ dataIndex: 'netUrl'
+ },
+ {
+ title: '服务器',
+ align: "center",
+ dataIndex: 'serverIp'
+ },
+ {
+ title: '访问账号',
+ align: "center",
+ dataIndex: 'platformUsername'
+ },
+ {
+ title: '访问密码',
+ align: "center",
+ dataIndex: 'platformPasswor'
+ },
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+ orgCode: {title: '机构编码',order: 0,view: 'text', type: 'string',},
+ orgName: {title: '机构名称',order: 1,view: 'text', type: 'string',},
+ netUrl: {title: '访问网址',order: 2,view: 'text', type: 'string',},
+ serverIp: {title: '服务器',order: 3,view: 'text', type: 'string',},
+ platformUsername: {title: '访问账号',order: 4,view: 'text', type: 'string',},
+ platformPasswor: {title: '访问密码',order: 5,view: 'text', type: 'string',},
+};
diff --git a/src/views/nuPlatformServerInfo/NuPlatformServerInfoList.vue b/src/views/nuPlatformServerInfo/NuPlatformServerInfoList.vue
new file mode 100644
index 0000000..0965c99
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/NuPlatformServerInfoList.vue
@@ -0,0 +1,177 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/nuPlatformServerInfo/NuPlatformServerLog.api.ts b/src/views/nuPlatformServerInfo/NuPlatformServerLog.api.ts
new file mode 100644
index 0000000..385dfdb
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/NuPlatformServerLog.api.ts
@@ -0,0 +1,72 @@
+import { defHttp } from '/@/utils/http/axios';
+import { useMessage } from "/@/hooks/web/useMessage";
+
+const { createConfirm } = useMessage();
+
+enum Api {
+ list = '/nuPlatformServerInfo/nuPlatformServerLog/list',
+ save='/nuPlatformServerInfo/nuPlatformServerLog/add',
+ edit='/nuPlatformServerInfo/nuPlatformServerLog/edit',
+ deleteOne = '/nuPlatformServerInfo/nuPlatformServerLog/delete',
+ deleteBatch = '/nuPlatformServerInfo/nuPlatformServerLog/deleteBatch',
+ importExcel = '/nuPlatformServerInfo/nuPlatformServerLog/importExcel',
+ exportXls = '/nuPlatformServerInfo/nuPlatformServerLog/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/nuPlatformServerInfo/NuPlatformServerLog.data.ts b/src/views/nuPlatformServerInfo/NuPlatformServerLog.data.ts
new file mode 100644
index 0000000..55f940e
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/NuPlatformServerLog.data.ts
@@ -0,0 +1,36 @@
+import {BasicColumn} from '/@/components/Table';
+import {FormSchema} from '/@/components/Table';
+import { rules} from '/@/utils/helper/validator';
+import { render } from '/@/utils/common/renderUtils';
+import { getWeekMonthQuarterYear } from '/@/utils';
+//列表数据
+export const columns: BasicColumn[] = [
+ {
+ title: '时间戳',
+ align: "center",
+ dataIndex: 'createTime'
+ },
+ {
+ title: '机构名称',
+ align: "center",
+ dataIndex: 'orgName'
+ },
+ {
+ title: '机构编码',
+ align: "center",
+ dataIndex: 'orgCode'
+ },
+ {
+ title: '维护日志',
+ align: "center",
+ dataIndex: 'content'
+ },
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+ orgName: {title: '机构名称',order: 0,view: 'text', type: 'string',},
+ orgCode: {title: '机构编码',order: 1,view: 'text', type: 'string',},
+ content: {title: '维护日志',order: 2,view: 'textarea', type: 'string',},
+ createTime: {title: 'createTime',order: 3,view: 'datetime', type: 'string',},
+};
diff --git a/src/views/nuPlatformServerInfo/NuPlatformServerLogList.vue b/src/views/nuPlatformServerInfo/NuPlatformServerLogList.vue
new file mode 100644
index 0000000..fd80af0
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/NuPlatformServerLogList.vue
@@ -0,0 +1,167 @@
+
+
+
+
+
+
+ 新增
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/nuPlatformServerInfo/NuPlatformServerLogListModal.vue b/src/views/nuPlatformServerInfo/NuPlatformServerLogListModal.vue
new file mode 100644
index 0000000..666a145
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/NuPlatformServerLogListModal.vue
@@ -0,0 +1,68 @@
+
+
+
+
+ 关闭
+
+
+
+
+
+
+
+
diff --git a/src/views/nuPlatformServerInfo/components/NuPlatformServerInfoForm.vue b/src/views/nuPlatformServerInfo/components/NuPlatformServerInfoForm.vue
new file mode 100644
index 0000000..a0531b2
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/components/NuPlatformServerInfoForm.vue
@@ -0,0 +1,175 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/nuPlatformServerInfo/components/NuPlatformServerInfoModal.vue b/src/views/nuPlatformServerInfo/components/NuPlatformServerInfoModal.vue
new file mode 100644
index 0000000..eddc4ca
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/components/NuPlatformServerInfoModal.vue
@@ -0,0 +1,82 @@
+
+
+
+
+ 关闭
+ 确认
+
+
+
+
+
+
+
+
diff --git a/src/views/nuPlatformServerInfo/components/NuPlatformServerLogForm.vue b/src/views/nuPlatformServerInfo/components/NuPlatformServerLogForm.vue
new file mode 100644
index 0000000..b463166
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/components/NuPlatformServerLogForm.vue
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/nuPlatformServerInfo/components/NuPlatformServerLogModal.vue b/src/views/nuPlatformServerInfo/components/NuPlatformServerLogModal.vue
new file mode 100644
index 0000000..4086718
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/components/NuPlatformServerLogModal.vue
@@ -0,0 +1,82 @@
+
+
+
+
+ 关闭
+ 确认
+
+
+
+
+
+
+
+
diff --git a/src/views/nuPlatformServerInfo/components/PzxxDetailForm.vue b/src/views/nuPlatformServerInfo/components/PzxxDetailForm.vue
new file mode 100644
index 0000000..34a7201
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/components/PzxxDetailForm.vue
@@ -0,0 +1,375 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/nuPlatformServerInfo/components/PzxxDetailModal.vue b/src/views/nuPlatformServerInfo/components/PzxxDetailModal.vue
new file mode 100644
index 0000000..28c4e37
--- /dev/null
+++ b/src/views/nuPlatformServerInfo/components/PzxxDetailModal.vue
@@ -0,0 +1,68 @@
+
+
+
+
+ 关闭
+
+
+
+
+
+
+
+