diff --git a/src/App.vue b/src/App.vue index eda074f..8383d15 100644 --- a/src/App.vue +++ b/src/App.vue @@ -47,7 +47,4 @@ const fontColor = computed(() => { .el-card__footer { padding: calc(10px - 2px) 10px !important; } -.el-scrollbar__thumb { - display: none !important; -} diff --git a/src/api/order/index.ts b/src/api/order/index.ts new file mode 100644 index 0000000..503a0f8 --- /dev/null +++ b/src/api/order/index.ts @@ -0,0 +1,11 @@ +import { AxiosPromise } from "axios"; +import { OrderPageResult } from "@/api/order/types"; +import request from "@/utils/request"; + +export function oderTablePage(data: SelectForm): AxiosPromise { + return request({ + url: "/api/order/v1/page", + method: "POST", + data, + }); +} diff --git a/src/api/order/types.ts b/src/api/order/types.ts new file mode 100644 index 0000000..a465467 --- /dev/null +++ b/src/api/order/types.ts @@ -0,0 +1,34 @@ +export interface OrderTableVO { + orderId?: number; + + receivedOrderId?: string; + + receivedOrderLhs?: string; + + orderDate?: string; + + adNo?: string; + + orderStatus?: string; + + orderRemark?: string; + + orderServiceType?: string; + + operRemark?: string; + + port?: string; + + pppoeAccount?: string; + + telNum?: string; + + domain?: string; + + remark3?: string; + + receivedDate?: string; + + devOnLineStatus?: string; +} +export type OrderPageResult = PageResult; diff --git a/src/views/family/operate/index.vue b/src/views/family/operate/index.vue index 98240ae..3e574e9 100644 --- a/src/views/family/operate/index.vue +++ b/src/views/family/operate/index.vue @@ -1,3 +1,20 @@ + + diff --git a/src/views/family/operate/order/index.vue b/src/views/family/operate/order/index.vue new file mode 100644 index 0000000..c30957f --- /dev/null +++ b/src/views/family/operate/order/index.vue @@ -0,0 +1,253 @@ + + + + + diff --git a/src/views/resources/device-type/components/DeviceTypeVersionEdit.vue b/src/views/resources/device-type/components/DeviceTypeVersionEdit.vue index 77c1212..920d7de 100644 --- a/src/views/resources/device-type/components/DeviceTypeVersionEdit.vue +++ b/src/views/resources/device-type/components/DeviceTypeVersionEdit.vue @@ -726,12 +726,12 @@ onMounted(() => { :deep(.my-label) { background: var(--el-color-white) !important; } +:deep(.el-scrollbar__thumb) { + display: none; +} diff --git a/src/views/resources/equipment/components/EquipmentEdit.vue b/src/views/resources/equipment/components/EquipmentEdit.vue index 678512f..5e209af 100644 --- a/src/views/resources/equipment/components/EquipmentEdit.vue +++ b/src/views/resources/equipment/components/EquipmentEdit.vue @@ -508,4 +508,7 @@ onMounted(() => { :deep(.my-label) { background: var(--el-color-white) !important; } +:deep(.el-scrollbar__thumb) { + display: none; +}