运营admin加入订单详情功能

This commit is contained in:
wuxw 2025-02-20 17:53:38 +08:00
parent 18e3a92286
commit ea647d6cc3
2 changed files with 11 additions and 9 deletions

View File

@ -45,7 +45,7 @@
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请填写房屋编号','reportOweFeeDetail')"
class="form-control form-control-md"
v-model="reportOweFeeDetailInfo.conditions.objName">
v-model="reportOweFeeDetailInfo.conditions.objNameLike">
</div>
</div>
<div class="col-sm-2">
@ -73,19 +73,20 @@
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-md" v-on:click="_queryMethod()">
<i class="fa fa-search"></i>
<span>
<vc:i18n name="查询" namespace="reportOweFeeDetail"></vc:i18n>
</span>
</button>
<button type="button" class="btn btn-info btn-md" v-on:click="_resetMethod()"
style="margin-left: 20px;">
<i class="fa fa-repeat"></i>
<span>
<vc:i18n name="重置" namespace="reportOweFeeDetail"></vc:i18n>
</span>
</button>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请填写业主名称','reportOweFeeDetail')"
class="form-control form-control-md"
v-model="reportOweFeeDetailInfo.conditions.ownerNameLike">
</div>
</div>
</div>
</div>

View File

@ -21,11 +21,12 @@
floorId: '',
floorName: '',
roomNum: '',
objName: '',
objNameLike: '',
feeTypeCd: '',
startTime: '',
endTime: '',
communityId: ''
communityId: '',
ownerNameLike:'',
}
}
},