| | |
| | | <input type="date" class="form-control endDate" placeholder="请选择结束日期" v-model="moreInfo.conditions.endDate" /> |
| | | </div> |
| | | <div class="action-buttons"> |
| | | <button type="button" class="download-btn" v-on:click="_downloadTemplate()" style="line-height: 0px;">下载模板</button> |
| | | <button type="button" class="edit-btn" v-on:click="_editPublicIncome()" style="line-height: 0px;">编辑</button> |
| | | <button type="button" class="add-btn" v-on:click="_add()" style="line-height: 0px;">添加</button> |
| | | <button type="button" class="import-btn" v-on:click="_export()" style="line-height: 0px;">导出</button> |
| | | <button type="button" class="import-btn" v-on:click="_export()" style="line-height: 0px; background-color: white; color: #333; border: 1px solid #e8e8e8;">导出</button> |
| | | </div> |
| | | </div> |
| | | |
| | |
| | | <td>{{item.publishedStartDate || '-'}}</td> |
| | | <td>{{item.publishedEndDate || '-'}}</td> |
| | | <td> |
| | | <a href="javascript:void(0)" v-on:click="_viewDetail(item)">详情</a> |
| | | <a href="javascript:void(0)" v-on:click="_edit(item)">编辑</a> |
| | | <a href="javascript:void(0)" v-on:click="_viewDetailPublicIncome(item)">详情</a> |
| | | <a href="javascript:void(0)" v-on:click="_editPublicIncome(item)">编辑</a> |
| | | <a href="javascript:void(0)" v-on:click="_delete(item)">删除</a> |
| | | </td> |
| | | </tr> |
| | |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- 编辑公共收益金 Modal --> |
| | | <div class="modal fade" id="editPublicIncomeModal" inert aria-hidden="true" tabindex="-1" style="position: relative; top: 50%; left: 50%; transform: translate(-50%, -30%);"> |
| | | <div class="modal-dialog"> |
| | | <div class="modal-content" style="border-radius: 10px;"> |
| | | <div class="modal-header"> |
| | | <h4 class="modal-title">编辑</h4> |
| | | <button type="button" class="close" v-on:click="_hideEditPublicModal()" aria-label="Close"><span aria-hidden="true">×</span></button> |
| | | </div> |
| | | <div class="modal-body edit-public-income-modal"> |
| | | <div class="form-group edit-form-group"> |
| | | <label class="edit-form-label">额度</label> |
| | | <div class="edit-input-wrapper"> |
| | | <input type="text" class="form-control edit-input" v-model.trim="moreInfo.editForm.amount" placeholder="请输入名称"> |
| | | <span class="edit-input-unit">元</span> |
| | | </div> |
| | | </div> |
| | | <div class="form-group edit-form-group"> |
| | | <label class="edit-form-label">业委会大会决议</label> |
| | | <div class="edit-radio-group"> |
| | | <label class="edit-radio-label"> |
| | | <input type="radio" name="meetingResolution" value="1" v-model="moreInfo.editForm.meetingResolution"> 是 |
| | | </label> |
| | | <label class="edit-radio-label"> |
| | | <input type="radio" name="meetingResolution" value="0" v-model="moreInfo.editForm.meetingResolution"> 否 |
| | | </label> |
| | | </div> |
| | | </div> |
| | | <div class="form-group edit-form-group"> |
| | | <label class="edit-form-label">业委会征询表</label> |
| | | <div class="edit-radio-group"> |
| | | <label class="edit-radio-label"> |
| | | <input type="radio" name="consultationForm" value="1" v-model="moreInfo.editForm.consultationForm"> 是 |
| | | </label> |
| | | <label class="edit-radio-label"> |
| | | <input type="radio" name="consultationForm" value="0" v-model="moreInfo.editForm.consultationForm"> 否 |
| | | </label> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <div style="display: flex; justify-content: center; padding-bottom: 20px; gap: 20px;"> |
| | | <button type="button" class="btn btn-white" v-on:click="_hideEditPublicModal()">取消</button> |
| | | <button type="button" class="btn btn-primary" v-on:click="_saveEditPublicIncome()">确认</button> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | |