MicroCommunityWeb/public/components/property/deleteFeeConfig/deleteFeeConfig.html
sangzhigang 2b0c6b6267 费用管理下费用项设置修改如下:
1.添加了重置按钮
  2.收费项目改为模糊查询
  3.设置隐藏按钮,隐藏一些查询选框
  4.查询选框新增费用项ID查询和出账类型查询
  5.列表新增费用项列表
  6.费用项ID和收费项目查询选框做了去空处理
  7.下拉框关联了字典表
  8.取消按钮加上图标
  9.下拉框与字典表关联
  10.解决时间插件多次点击失去焦点问题
  11.解决添加成功后出账类型下拉框不显示问题
  12.添加成功后提示添加成功
  13.修改成功后提示修改成功
  14.修改选框去空

  附:
    1.费用项列表表头加上单位
    2.添加按钮选框去空
2020-12-03 08:53:50 +08:00

25 lines
1.1 KiB
HTML

<div class="modal fade" id="deleteFeeConfigModel" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">请确认您的操作!</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<tr align="center">
<th>确定删除费用项</th>
</tr>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal"
v-on:click="closeDeleteFeeConfigModel()">点错了
</button>
<button type="button" class="btn btn-primary" v-on:click="deleteFeeConfig()">确认删除</button>
</div>
</div>
</div>
</div>