| | |
| | | <div class="ibox-title"> |
| | | <h5>查询条件</h5> |
| | | <div class="ibox-tools" style="top:10px;"> |
| | | <!--<button type="button" class="btn btn-link btn-sm" style="margin-right:10px;" |
| | | <button type="button" class="btn btn-link btn-sm" style="margin-right:10px;" |
| | | v-on:click="_moreCondition()">{{payFeeManageInfo.moreCondition == true?'隐藏':'更多'}} |
| | | </button>--> |
| | | </button> |
| | | </div> |
| | | </div> |
| | | <div class="ibox-content"> |
| | | <div class="row"> |
| | | <div class="col-sm-4"> |
| | | <select class="custom-select" v-model="basePrivilegeManageInfo.conditions.feeTypeCd"> |
| | | <select class="custom-select" v-model="payFeeManageInfo.conditions.feeTypeCd"> |
| | | <option selected value="">请选择费用类型</option> |
| | | <option value="800900000001">运营团队</option> |
| | | <option value="800900000002">代理商</option> |
| | | <option value="800900000003">物业</option> |
| | | <option value="800900000000">开发团队</option> |
| | | <option v-for="(item,index) in payFeeManageInfo.payFeeTypes" :key="index" v-bind:value="item.statusCd">{{item.name}}</option> |
| | | </select> |
| | | </div> |
| | | <div class="col-sm-4"> |
| | | <div class="form-group"> |
| | | <input size="16" type="text" placeholder="请选择开始时间" readonly class="form-control form-control-sm start_time"> |
| | | <input size="16" type="text" placeholder="请选择开始时间" readonly class="form-control start_time"> |
| | | </div> |
| | | </div> |
| | | <div class="col-sm-3"> |
| | | <div class="form-group"> |
| | | <input size="16" type="text" placeholder="请选择结束时间" readonly class="form-control form-control-sm end_time"> |
| | | <input size="16" type="text" placeholder="请选择结束时间" readonly class="form-control end_time"> |
| | | </div> |
| | | </div> |
| | | <div class="col-sm-1"> |
| | | <button type="button" class="btn btn-primary btn-sm" v-on:click="_queryPayFeeMethod()"> |
| | | <i class="glyphicon glyphicon-search"></i> 查询 |
| | | <i class="glyphicon glyphicon-search"></i> |
| | | </button> |
| | | </div> |
| | | </div> |
| | | <div class="row"> |
| | | <div class="row" v-if="payFeeManageInfo.moreCondition == true"> |
| | | <div class="col-sm-4"> |
| | | <input size="16" type="text" placeholder="请填写员工编码" v-model="basePrivilegeManageInfo.conditions.userCode" readonly class="form-control form-control-sm"> |
| | | <input size="16" type="text" placeholder="请填写员工编码" v-model="payFeeManageInfo.conditions.userCode" class="form-control"> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | <th class="text-center">应付金额</th> |
| | | <td class="text-center">实付金额</td> |
| | | <td class="text-center">操作员工</td> |
| | | <td class="text-center">缴费时间</td> |
| | | </tr> |
| | | </thead> |
| | | <tbody> |
| | |
| | | <td class="text-center">{{payFee.receivableAmount}}</td> |
| | | <td class="text-center">{{payFee.receivedAmount}}</td> |
| | | <td class="text-center">{{payFee.userName}}</td> |
| | | <td class="text-center">{{payFee.createTime}}</td> |
| | | |
| | | </tr> |
| | | </tbody> |