优化变更非因公时的bug

This commit is contained in:
wuxw 2024-04-09 11:30:34 +08:00
parent e1bcfacfd0
commit cee42a0bb1

View File

@ -4,44 +4,49 @@
<div class="modal-content"> <div class="modal-content">
<div class="modal-body"> <div class="modal-body">
<h3 class="m-t-none m-b "> <h3 class="m-t-none m-b ">
<span><vc:i18n name="费用变更" namespace="editFee"></vc:i18n></span> <span>
<vc:i18n name="费用变更" namespace="editFee"></vc:i18n>
</span>
</h3> </h3>
<div class="ibox-content"> <div class="ibox-content">
<div>
<div>
<div class="form-group row"> <div class="form-group row">
<label class="col-sm-2 col-form-label"> <label class="col-sm-2 col-form-label">
<span><vc:i18n name="建账时间" namespace="editFee"></vc:i18n></span> <span>
<vc:i18n name="建账时间" namespace="editFee"></vc:i18n>
</span>
</label> </label>
<div class="col-sm-10"> <div class="col-sm-10">
<input v-model="editFeeInfo.startTime" type="text" <input v-model="editFeeInfo.startTime" type="text"
:placeholder="vc.i18n('必填,请填写建账时间','editFee')" :placeholder="vc.i18n('必填,请填写建账时间','editFee')" class="form-control editFeeStartTime">
class="form-control editFeeStartTime">
</div> </div>
</div> </div>
<div class="form-group row"> <div class="form-group row">
<label class="col-sm-2 col-form-label"> <label class="col-sm-2 col-form-label">
<span><vc:i18n name="应收开始时间" namespace="editFee"></vc:i18n></span> <span>
<vc:i18n name="应收开始时间" namespace="editFee"></vc:i18n>
</span>
</label> </label>
<div class="col-sm-10"> <div class="col-sm-10">
<input v-model="editFeeInfo.endTime" type="text" <input v-model="editFeeInfo.endTime" type="text"
:placeholder="vc.i18n('必填,请填写应收开始时间','editFee')" :placeholder="vc.i18n('必填,请填写应收开始时间','editFee')" class="form-control editFeeEndTime">
class="form-control editFeeEndTime">
</div> </div>
</div> </div>
<div class="form-group row" v-show="editFeeInfo.feeFlag != '1003006'"> <div class="form-group row" >
<label class="col-sm-2 col-form-label"> <label class="col-sm-2 col-form-label">
<span><vc:i18n name="应收结束时间" namespace="editFee"></vc:i18n></span> <span>
<vc:i18n name="应收结束时间" namespace="editFee"></vc:i18n>
</span>
</label> </label>
<div class="col-sm-10"> <div class="col-sm-10">
<input v-model="editFeeInfo.maxEndTime" type="text" <input v-model="editFeeInfo.maxEndTime" type="text"
:placeholder="vc.i18n('必填,请填写应收结束时间','editFee')" :placeholder="vc.i18n('必填,请填写应收结束时间','editFee')" class="form-control editFeeMaxEndTime">
class="form-control editFeeMaxEndTime">
</div> </div>
</div> </div>
<div class="form-group row" v-show="editFeeInfo.computingFormula == '1102'"> <div class="form-group row" v-show="editFeeInfo.computingFormula == '1102'">
<label class="col-sm-2 col-form-label"> <label class="col-sm-2 col-form-label">
<span><vc:i18n name="递增周期" namespace="editFee"></vc:i18n></span> <span>
<vc:i18n name="递增周期" namespace="editFee"></vc:i18n>
</span>
</label> </label>
<div class="col-sm-10"> <div class="col-sm-10">
<input v-model="editFeeInfo.rateCycle" type="text" <input v-model="editFeeInfo.rateCycle" type="text"
@ -50,16 +55,20 @@
</div> </div>
<div class="form-group row" v-show="editFeeInfo.computingFormula == '1102'"> <div class="form-group row" v-show="editFeeInfo.computingFormula == '1102'">
<label class="col-sm-2 col-form-label"> <label class="col-sm-2 col-form-label">
<span><vc:i18n name="计费递增率" namespace="editFee"></vc:i18n></span> <span>
<vc:i18n name="计费递增率" namespace="editFee"></vc:i18n>
</span>
</label> </label>
<div class="col-sm-10"> <div class="col-sm-10">
<input v-model="editFeeInfo.rate" type="text" <input v-model="editFeeInfo.rate" type="text" :placeholder="vc.i18n('必填,请填写递增率','editFee')"
:placeholder="vc.i18n('必填,请填写递增率','editFee')" class="form-control"> class="form-control">
</div> </div>
</div> </div>
<div class="form-group row" v-show="editFeeInfo.computingFormula == '1102'"> <div class="form-group row" v-show="editFeeInfo.computingFormula == '1102'">
<label class="col-sm-2 col-form-label"> <label class="col-sm-2 col-form-label">
<span><vc:i18n name="递增开始时间" namespace="editFee"></vc:i18n></span> <span>
<vc:i18n name="递增开始时间" namespace="editFee"></vc:i18n>
</span>
</label> </label>
<div class="col-sm-10"> <div class="col-sm-10">
<input v-model="editFeeInfo.rateStartTime" type="text" <input v-model="editFeeInfo.rateStartTime" type="text"
@ -77,8 +86,7 @@
</button> </button>
</div> </div>
</div> </div>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>