diff --git a/src/views/common/amap/index.vue b/src/views/common/amap/index.vue
deleted file mode 100644
index a56f184..0000000
--- a/src/views/common/amap/index.vue
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
diff --git a/src/views/common/amapTask/AmapTaskModal.vue b/src/views/common/amapTask/AmapTaskModal.vue
new file mode 100644
index 0000000..a4eadbc
--- /dev/null
+++ b/src/views/common/amapTask/AmapTaskModal.vue
@@ -0,0 +1,70 @@
+
+
+
+
+
+
diff --git a/src/views/common/amapTask/amapTask.data.ts b/src/views/common/amapTask/amapTask.data.ts
new file mode 100644
index 0000000..a43a73b
--- /dev/null
+++ b/src/views/common/amapTask/amapTask.data.ts
@@ -0,0 +1,61 @@
+import { BasicColumn } from '/@/components/Table';
+import { FormSchema } from '/@/components/Table';
+
+export const columns: BasicColumn[] = [
+ {
+ title: '地图名称',
+ dataIndex: 'name',
+ width: 120,
+ },
+ {
+ title: '收样员名称',
+ dataIndex: 'courierUserName',
+ width: 120,
+ },
+ {
+ title: '收样员起点经度值',
+ dataIndex: 'courierLng',
+ },
+ {
+ title: '收样员起点纬度值',
+ dataIndex: 'courierLat',
+ },
+ {
+ title: '发单下级医院名称',
+ dataIndex: 'sendOrderName',
+ width: 120
+ },
+ {
+ title: '发单起点经度值',
+ dataIndex: 'sendOrderLng',
+ },
+ {
+ title: '发单起点纬度值',
+ dataIndex: 'sendOrderLat',
+ },
+ {
+ title: '报告单批次码',
+ dataIndex: 'batchCode',
+ },
+];
+
+export const searchFormSchema: FormSchema[] = [
+ {
+ field: 'name',
+ label: '地图名称' ,
+ component: 'Input',
+ componentProps: {
+ placeholder: '请输入地图名称',
+ },
+ colProps: { span: 8 },
+ },
+ {
+ field: 'batchCode',
+ label: '报告单批次码',
+ component: 'Input',
+ componentProps: {
+ placeholder: '请输入报告单批次码',
+ },
+ colProps: { span: 8 }
+ }
+];
diff --git a/src/views/common/amapTask/index.vue b/src/views/common/amapTask/index.vue
new file mode 100644
index 0000000..0bcfe18
--- /dev/null
+++ b/src/views/common/amapTask/index.vue
@@ -0,0 +1,100 @@
+
+
+
+
+ 新增地图线路
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/common/org/OrgModal.vue b/src/views/common/org/OrgModal.vue
index 8aaee5c..63b8d3d 100644
--- a/src/views/common/org/OrgModal.vue
+++ b/src/views/common/org/OrgModal.vue
@@ -16,7 +16,7 @@
*/
import { reactive } from 'vue';
import { BasicForm, useForm } from '/@/components/Form';
- import { institutionFormSchema } from './org.data';
+ import { formSchema } from './org.data';
import { addOrg, getOrg, editOrg } from '/@/api/platform/common/controller/org';
import { BasicModal, ModalProps, useModalInner } from '/@/components/Modal';
@@ -28,7 +28,7 @@
const emit = defineEmits(['success', 'register']);
const [registerForm, { resetFields, setFieldsValue, validate, clearValidate, updateSchema }] = useForm({
labelWidth: 100,
- schemas: institutionFormSchema,
+ schemas: formSchema,
showActionButtonGroup: false,
baseColProps: { span: 24 }
});
diff --git a/src/views/common/org/org.data.ts b/src/views/common/org/org.data.ts
index 6cc9e9a..eabdd37 100644
--- a/src/views/common/org/org.data.ts
+++ b/src/views/common/org/org.data.ts
@@ -120,7 +120,7 @@ export const searchFormSchema: FormSchema[] = [
}
];
-export const institutionFormSchema: FormSchema[] = [
+export const formSchema: FormSchema[] = [
{
field: 'id',
label: 'ID',