MicroCommunityWeb/public/components/dev/addReportCustomComponentRel/addReportCustomComponentRel.html
2021-11-12 13:57:52 +08:00

43 lines
1.9 KiB
HTML
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 class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>关联</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="form-group row">
<label class="col-sm-2 col-form-label">组件</label>
<div class="col-sm-8">
<input v-model="addReportCustomComponentRelInfo.name" disabled type="text"
placeholder="必填请填写组件ID" class="form-control">
</div>
<div class="col-sm-2">
<button class="btn btn-primary float-right" type="button"
v-on:click="chooseReportComponent()">选择组件</button>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">组件序号</label>
<div class="col-sm-10">
<input v-model="addReportCustomComponentRelInfo.seq" type="text"
placeholder="必填,请填写组件序号" class="form-control">
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button"
v-on:click="saveReportCustomComponentRelInfo()"><i
class="fa fa-check"></i>&nbsp;保存</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
v-on:click="_closeAddReportCustomComponentRelInfo()">取消</button>
</div>
</div>
</div>
</div>
<vc:create path="dev/chooseReportCustomComponent"></vc:create>
</div>