mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 22:27:55 +08:00
59 lines
3.3 KiB
HTML
Executable File
59 lines
3.3 KiB
HTML
Executable File
<div id="addFeePrintSpecModel" class="modal fade" tabindex="-1" 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 ">添加</h3>
|
|
<div class="ibox-content">
|
|
<div>
|
|
<div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">规格</label>
|
|
<div class="col-sm-10">
|
|
<select class="custom-select" v-model="addFeePrintSpecInfo.specCd">
|
|
<option selected disabled value="">必填,请选择规格</option>
|
|
<option value="1010">催缴打印说明</option>
|
|
<option value="2020">收据打印说明</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">名称</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="addFeePrintSpecInfo.printName" type="text" placeholder="必填,请填写名称"
|
|
class="form-control">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">图片</label>
|
|
<div class="col-sm-10">
|
|
<vc:create path="frame/uploadImage" callBackListener="addFeePrintSpec"
|
|
callBackFunction="notifyUploadImage" imageCount="1" namespace="addFeePrintSpec">
|
|
</vc:create>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">内容</label>
|
|
<div class="col-sm-10">
|
|
<textarea v-model="addFeePrintSpecInfo.content" placeholder="必填,请填写内容"
|
|
class="form-control" rows="5"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button"
|
|
v-on:click="saveFeePrintSpecInfo()">
|
|
<i class="fa fa-check"></i> 保存
|
|
</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
|
|
data-dismiss="modal">
|
|
<i class="fa fa-times"></i> 取消
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |