优化缴费页面

This commit is contained in:
java110 2021-06-16 00:16:59 +08:00
parent 1b9e52c7d6
commit fe02056d9e
3 changed files with 6 additions and 6 deletions

View File

@ -29,7 +29,7 @@
</div>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryOwnerMethod()">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryAccountMethod()">
<i class="fa fa-search"></i> 查询
</button>
</div>

View File

@ -21,7 +21,7 @@
}
},
_initMethod: function () {
vc.component._listshopAccounts(DEFAULT_PAGE, DEFAULT_ROWS);
vc.component._listAccounts(DEFAULT_PAGE, DEFAULT_ROWS);
},
_initEvent: function () {
@ -42,7 +42,7 @@
};
//发送get请求
vc.http.apiGet('/account/queryAccount',
vc.http.apiGet('/account/queryOwnerAccount',
param,
function (json, res) {
var _accountManageInfo = JSON.parse(json);
@ -58,8 +58,8 @@
}
);
},
_queryshopAccountMethod: function () {
vc.component._listshopAccounts(DEFAULT_PAGE, DEFAULT_ROWS);
_queryAccountMethod: function () {
vc.component._listAccounts(DEFAULT_PAGE, DEFAULT_ROWS);
},
_moreCondition: function () {

View File

@ -33,7 +33,7 @@
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">到期时间</label>
<label class="col-sm-2 col-form-label">计费起始时间</label>
<div class="col-sm-10">
<label class=" col-form-label">{{payFeeOrderInfo.endTime}}</label>
</div>