MicroCommunityWeb/public/components/property/doImportCreateFee/doImportCreateFee.html
2022-04-22 00:24:24 +08:00

33 lines
2.0 KiB
HTML

<div id="doImportCreateFeeModel" 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 "><vc:i18n name="自定义创建费用" namespace="doImportCreateFee"></vc:i18n></h3>
<div class="ibox-content">
<div>
<div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><vc:i18n name="选择文件" namespace="doImportCreateFee"></vc:i18n></label>
<div class="col-sm-10">
<div class="custom-file">
<input id="excelTemplate" ref="excelTemplate" type="file" class="custom-file-input form-control" name="excelTemplate" v-on:change="getExcelTemplate($event)" accept=".xls,.xlsx">
<label for="excelTemplate" class="custom-file-label">{{doImportCreateFeeInfo.excelTemplate==''?'必填,请选择数据文件':doImportCreateFeeInfo.excelTemplate.name}}</label>
</div>
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="_doImportCreateFeeData()">
<i class="fa fa-check"></i>&nbsp;导入
</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal">
<i class="fa fa-close"></i>&nbsp;取消
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>