From 6191f1a3f5304776dca95045a213f7a043ffb93a Mon Sep 17 00:00:00 2001 From: dragon <3013557874@qq.com> Date: Thu, 6 Feb 2025 15:53:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=88=86=E5=8C=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/room/RoomTabView.vue | 921 +++++++++++------- .../world/community/DynamicVerifyView.vue | 27 + 2 files changed, 595 insertions(+), 353 deletions(-) diff --git a/src/views/room/RoomTabView.vue b/src/views/room/RoomTabView.vue index cda5beb..8d8e446 100644 --- a/src/views/room/RoomTabView.vue +++ b/src/views/room/RoomTabView.vue @@ -1,369 +1,584 @@ diff --git a/src/views/world/community/DynamicVerifyView.vue b/src/views/world/community/DynamicVerifyView.vue index 2e5cc78..3ce17a7 100644 --- a/src/views/world/community/DynamicVerifyView.vue +++ b/src/views/world/community/DynamicVerifyView.vue @@ -16,6 +16,14 @@ method="post" target="_blank" > +
+ +
+ +
+
import TableHelper from "@/utils/bootstrap-table-helper"; import { showLoading, hideLoading } from "@/utils/maintainer"; +import { getPartitionInfoList } from "@/api/partition/partitionInfo"; +import { buildSelectOption } from "@/utils/system-helper"; var picker1 = $("#beginDate").datetimepicker({ format: "yyyy-mm-dd hh:ii:00", @@ -325,6 +335,7 @@ export default { created() { this.$nextTick(function () { this.initData(); + this.initPartition(); }); }, methods: { @@ -503,6 +514,7 @@ export default { beginDate: $("#beginDate").val(), endDate: $("#endDate").val(), wolrdId: $("#wolrdId").val(), + partitionId: $("#partitionId").val(), }; return param; }, @@ -640,6 +652,21 @@ export default { }); }); }, + initPartition() { + getPartitionInfoList().then((res) => { + let data = res.data; + buildSelectOption( + "#partitionId", + 4, + data.map((v) => { + return { + value: v.id, + text: v.desc, + }; + }) + ); + }); + }, }, };