This commit is contained in:
java110 2021-06-16 09:32:02 +08:00
commit af705f034b
4 changed files with 7 additions and 7 deletions

View File

@ -236,7 +236,7 @@
}
//自定义费用
if (vc.component.editFeeConfigInfo.computingFormula == '7007'
||vc.component.editFeeConfigInfo.computingFormula != '4004') {
|| vc.component.editFeeConfigInfo.computingFormula == '4004') {
vc.component.editFeeConfigInfo.squarePrice = "0.00";
vc.component.editFeeConfigInfo.additionalAmount = "0.00";
}

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>