From c1fd6952f42461bc7e83c97f594a52fc1af934eb Mon Sep 17 00:00:00 2001
From: liubp <1535785116@qq.com>
Date: 星期四, 25 十二月 2025 18:15:43 +0800
Subject: [PATCH] 费用明细表,查询,编辑,删除,添加接口对接,公益金表接口对接,页面样式优化
---
public/pages/property/costDetail/costDetail.html | 66 ++++++++++++++++----------------
1 files changed, 33 insertions(+), 33 deletions(-)
diff --git a/public/pages/property/costDetail/costDetail.html b/public/pages/property/costDetail/costDetail.html
index 95b9d9a..73e667d 100644
--- a/public/pages/property/costDetail/costDetail.html
+++ b/public/pages/property/costDetail/costDetail.html
@@ -4,14 +4,14 @@
<!-- 鎼滅储鏍� -->
<div class="search-bar">
<div>
- <label>鏃ユ湡锛�</label>
- <input type="text" class="form-control queryDate" placeholder="璇烽�夋嫨鏃ユ湡" v-model="costDetailInfo.conditions.date" />
+ <label>骞翠唤锛�</label>
+ <input type="date" class="form-control queryDate" placeholder="璇疯緭鍏ュ勾浠�" v-model="costDetailInfo.conditions.year" min="2000" max="2099" />
</div>
<div>
<label>灏忓尯锛�</label>
<select class="form-control" v-model="costDetailInfo.conditions.communityName">
<option value="">璇烽�夋嫨</option>
- <option value="楸煎鑺卞洯A鍖�">楸煎鑺卞洯A鍖�</option>
+ <option v-for="community in costDetailInfo.communityList" :value="community.name">{{community.name}}</option>
</select>
</div>
<div>
@@ -31,43 +31,43 @@
<table>
<thead>
<tr id="costDetailTableHead">
- <th>搴忓彿</th>
- <th>娴佽浆缂栫爜</th>
- <th>灏忓尯缂栫爜</th>
- <th>灏忓尯鍚嶇О</th>
- <th>鏃ユ湡</th>
- <th>宸ョ▼鍐呭</th>
- <th>绠$悊澶勯噾棰� (鍏�)</th>
- <th>鏄惁鐩栫珷</th>
- <th>涓氬浼氶噾棰� (鍏�)</th>
- <th>瀹′环閲戦 (鍏�)</th>
- <th>鏄惁鐩栫珷</th>
- <th>绛炬姤閮ㄩ棬</th>
- <th>鍩洪噾绫诲瀷-涓�绾у垎绫�</th>
- <th>鍩洪噾绫诲瀷-浜岀骇鍒嗙被</th>
- <th>骞�/鍏ㄤ綋</th>
- <th>缁翠慨绫诲瀷</th>
- <th>鎿嶄綔</th>
+ <th style="width: 8px;">搴忓彿</th>
+ <th style="width: 15px;">娴佽浆缂栫爜</th>
+ <th style="width: 6px;">灏忓尯缂栫爜</th>
+ <th style="width: 8px;">灏忓尯鍚嶇О</th>
+ <th style="width: 35px;">鏃ユ湡</th>
+ <th style="width: 200px;">宸ョ▼鍐呭</th>
+ <th style="width: 6px;">绠$悊澶勯噾棰� (鍏�)</th>
+ <th style="width: 6px;">鏄惁鐩栫珷</th>
+ <th style="width: 12px;">涓氬浼氶噾棰� (鍏�)</th>
+ <th style="width: 20px;">瀹′环閲戦 (鍏�)</th>
+ <th style="width: 6px;">鏄惁鐩栫珷</th>
+ <th style="width: 8px;">绛炬姤閮ㄩ棬</th>
+ <th style="width: 12px;">鍩洪噾绫诲瀷-涓�绾у垎绫�</th>
+ <th style="width: 12px;">鍩洪噾绫诲瀷-浜岀骇鍒嗙被</th>
+ <th style="width: 6px;">骞�/鍏ㄤ綋</th>
+ <th style="width: 8px;">缁翠慨绫诲瀷</th>
+ <th style="width: 220px;">鎿嶄綔</th>
</tr>
</thead>
<tbody>
<tr v-for="(item, index) in costDetailInfo.costDetails">
<td>{{(costDetailInfo.paginationInfo.currentPage - 1) * costDetailInfo.paginationInfo.rows + index + 1}}</td>
- <td>{{item.flowCode || '-'}}</td>
- <td>{{item.communityCode || '-'}}</td>
- <td>{{item.communityName || '-'}}</td>
- <td>{{item.date || '-'}}</td>
- <td>{{item.projectContent || '-'}}</td>
- <td>{{item.managementAmount || '-'}}</td>
+ <td>{{item.flowCode || '--'}}</td>
+ <td>{{item.communityCode || '--'}}</td>
+ <td>{{item.communityName || '--'}}</td>
+ <td>{{item.date || '--'}}</td>
+ <td>{{item.projectContent || '--'}}</td>
+ <td>{{item.managementAmount || '--'}}</td>
<td>{{item.managementStamped == '1' ? '鏄�' : '鍚�'}}</td>
- <td>{{item.committeeAmount || '-'}}</td>
- <td>{{item.appraisalAmount || '-'}}</td>
+ <td>{{item.committeeAmount || '--'}}</td>
+ <td>{{item.appraisalAmount || '--'}}</td>
<td>{{item.committeeStamped == '1' ? '鏄�' : '鍚�'}}</td>
- <td>{{item.approvalDepartment || '-'}}</td>
- <td>{{item.fundTypeLevel1 || '-'}}</td>
- <td>{{item.fundTypeLevel2 || '-'}}</td>
- <td>{{item.buildingType || '-'}}</td>
- <td>{{item.maintenanceType || '-'}}</td>
+ <td>{{item.approvalDepartment || '--'}}</td>
+ <td>{{item.fundTypeLevel1 || '--'}}</td>
+ <td>{{item.fundTypeLevel2 || '--'}}</td>
+ <td>{{item.buildingType || '--'}}</td>
+ <td>{{item.maintenanceType || '--'}}</td>
<td>
<a href="javascript:void(0)" v-on:click="_viewCostDetail(item)">璇︽儏</a>
<a href="javascript:void(0)" v-on:click="_viewMore(item)">鏇村</a>
--
Gitblit v1.8.0