MicroCommunityWeb/public/components/property/addFeeFormula/addFeeFormula.html
2023-01-30 16:35:38 +08:00

72 lines
4.5 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div id="addFeeFormulaModel" class="modal fade" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-body">
<h3 class="m-t-none m-b ">
<span><vc:i18n name="添加公式" namespace="addFeeFormula"></vc:i18n></span>
</h3>
<div class="ibox-content">
<div>
<div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span><vc:i18n name="公式" namespace="addFeeFormula"></vc:i18n></span>
</label>
<div class="col-sm-10">
<textarea :placeholder="vc.i18n('必填,请填写公式','addFeeFormula')" class="form-control" v-model="addFeeFormulaInfo.formulaValue">
</textarea>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span><vc:i18n name="单价" namespace="addFeeFormula"></vc:i18n></span>
</label>
<div class="col-sm-10">
<input :placeholder="vc.i18n('必填,请填写单价','addFeeFormula')" type="text" class="form-control" v-model="addFeeFormulaInfo.price">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span><vc:i18n name="描述" namespace="addFeeFormula"></vc:i18n></span>
</label>
<div class="col-sm-10">
<textarea v-model="addFeeFormulaInfo.formulaDesc" :placeholder="vc.i18n('选填,请填写描述','addFeeFormula')" class="form-control">
</textarea>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<span><vc:i18n name="说明" namespace="addFeeFormula"></vc:i18n></span>
</label>
<div class="col-sm-10">
<div>T 代表总量,如电费总使用量</div>
<div>C 代表房屋对应小区面积</div>
<div>F 代表房屋对应楼栋面积</div>
<div>U 代表房屋对应单元面积</div>
<div>R 代表房屋面积</div>
<div>X 代表房屋收费系数(房屋管理中配置)</div>
<div>L 代表房屋对应楼栋房屋数</div>
<div>D 代表房屋对应单元房屋数</div>
<div>
<span><vc:i18n name="举例" namespace="addFeeFormula"></vc:i18n></span>:公共区域公摊电费 电量/楼栋面积*房屋面积
</div>
<div>
<span><vc:i18n name="公式" namespace="addFeeFormula"></vc:i18n></span>T/F * R
</div>
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="saveFeeFormulaInfo()">
<i class="fa fa-check"></i>&nbsp;保存
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal">
<span><vc:i18n name="取消" namespace="addFeeFormula"></vc:i18n></span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>