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

View File

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