feat:房间关联楼层
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
dev_ljl 2025-07-30 16:01:42 +08:00
parent 8f6dc2ba11
commit ea9eda3973

View File

@ -91,12 +91,12 @@ async function handleConfirm() {
* 初始化城市 * 初始化城市
*/ */
async function setupCommunitySelect() { async function setupCommunitySelect() {
const areaList = await communityTree(4); const areaList = await communityTree(3);
// / // /
// addFullName(areaList, 'areaName', ' / '); // addFullName(areaList, 'areaName', ' / ');
const splitStr = '/'; const splitStr = '/';
handleNode(areaList, 'label', splitStr, function (node: any) { handleNode(areaList, 'label', splitStr, function (node: any) {
if (node.level != 4) { if (node.level != 3) {
node.disabled = true; node.disabled = true;
} }
}); });