From 9e90f6e2e7958310906ccb88489015bbd2bc02b8 Mon Sep 17 00:00:00 2001
From: liubp <1535785116@qq.com>
Date: 星期三, 24 十二月 2025 09:50:05 +0800
Subject: [PATCH] 权限页面完善,我的小区页面权限对接,费用明细详情页面,公共收益金编辑模态框

---
 public/pages/property/costDetail/edit/edit.html |   28 ++++++++++++++++++----------
 1 files changed, 18 insertions(+), 10 deletions(-)

diff --git a/public/pages/property/costDetail/edit/edit.html b/public/pages/property/costDetail/edit/edit.html
index e62b096..c335946 100644
--- a/public/pages/property/costDetail/edit/edit.html
+++ b/public/pages/property/costDetail/edit/edit.html
@@ -79,24 +79,32 @@
         <div class="form-row">
             <label class="form-label">鍩洪噾涓庤鏂�</label>
             <div class="radio-group">
-                <input type="radio" id="fundRepair" name="fundType" checked>
+                <input type="radio" id="fundRepair" name="fundType" value="repair" v-model="fundType">
                 <label for="fundRepair" style="margin-top: 8px;">缁翠慨璧勯噾</label>
             </div>
-            <label class="form-label" for="ownerScope">涓氫富澶т細鑼冨洿</label>
-            <select id="ownerScope" class="form-select">
-                <option value="multi">澶氶��</option>
-            </select>
-            <label class="form-label" for="buildingScope">闂ㄧ墝骞㈣寖鍥�</label>
-            <select id="buildingScope" class="form-select">
-                <option value="multi">澶氶��</option>
-            </select>
+            <div class="radio-group" style="margin-left: 100px;" v-if="fundType === 'repair'">
+                <label class="form-label" for="ownerScope">涓氫富澶т細鑼冨洿</label>
+                <select id="ownerScope" class="form-select">
+                    <option value="multi">澶氶��</option>
+                </select>
+                <label class="form-label" for="buildingScope">闂ㄧ墝骞㈣寖鍥�</label>
+                <select id="buildingScope" class="form-select">
+                    <option value="multi">澶氶��</option>
+                </select>
+            </div>
         </div>
 
         <div class="form-row">
             <div class="radio-group" style="margin-left: 100px;">
-            <input type="radio" id="fundPublic" name="fundType">
+                <input type="radio" id="fundPublic" name="fundType" value="public" v-model="fundType">
                 <label for="fundPublic" style="margin-top: 8px;">鍏叡鏀剁泭</label>
             </div>
+            <div class="radio-group" style="margin-left: 100px;" v-if="fundType === 'public'">
+                <input type="radio" id="fundSystemOut" name="fundSystemType" value="out" v-model="fundSystemType">
+                <label for="fundSystemOut" style="margin-top: 8px;">绯荤粺澶�</label>
+                <input type="radio" id="fundSystemIn" name="fundSystemType" value="in" v-model="fundSystemType">
+                <label for="fundSystemIn" style="margin-top: 8px;">绯荤粺鍐�</label>
+            </div>
         </div>
 
         <!-- 鎸夐挳缁� -->

--
Gitblit v1.8.0