mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
修复报表 底部bug问题
Signed-off-by: java110 <928255095@qq.com>
This commit is contained in:
parent
fcdeb2679d
commit
e7990204e1
@ -1,61 +1,78 @@
|
|||||||
<div id="editReportCustomComponentFooterModel" class="modal fade" tabindex="-1" role="dialog"
|
<div id="editReportCustomComponentFooterModel" class="modal fade" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
||||||
aria-labelledby="exampleModalLabel" aria-hidden="true">
|
<div class="modal-dialog modal-lg">
|
||||||
<div class="modal-dialog modal-lg">
|
<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="editReportCustomComponentFooter"></vc:i18n></span></h3>
|
<span><vc:i18n name="修改" namespace="editReportCustomComponentFooter"></vc:i18n></span>
|
||||||
<div class="ibox-content">
|
</h3>
|
||||||
<div>
|
<div class="ibox-content">
|
||||||
<div>
|
<div>
|
||||||
<div class="form-group row">
|
<div>
|
||||||
<label class="col-sm-2 col-form-label"><span><vc:i18n name="名称" namespace="editReportCustomComponentFooter"></vc:i18n></span></label>
|
<div class="form-group row">
|
||||||
<div class="col-sm-10">
|
<label class="col-sm-2 col-form-label">
|
||||||
<input v-model="editReportCustomComponentFooterInfo.name" type="text" :placeholder="vc.i18n('必填,请填写名称','editReportCustomComponentFooter')"
|
<span>
|
||||||
class="form-control">
|
<vc:i18n name="名称" namespace="editReportCustomComponentFooter"></vc:i18n>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<input v-model="editReportCustomComponentFooterInfo.name" type="text" :placeholder="vc.i18n('必填,请填写名称','editReportCustomComponentFooter')" class="form-control">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group row">
|
||||||
|
<label class="col-sm-2 col-form-label">
|
||||||
|
<span>
|
||||||
|
<vc:i18n name="查询方式" namespace="editReportCustomComponentFooter"></vc:i18n>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<select class="custom-select" v-model="editReportCustomComponentFooterInfo.queryModel">
|
||||||
|
<option selected disabled value="">
|
||||||
|
{{vc.i18n('必填,请选择查询方式','editReportCustomComponentFooter')}}
|
||||||
|
</option>
|
||||||
|
<option value="1">sql</option>
|
||||||
|
<option value="2">java</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group row" v-if="editReportCustomComponentFooterInfo.queryModel == 1">
|
||||||
|
<label class="col-sm-2 col-form-label">sql</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<textarea v-model="editReportCustomComponentFooterInfo.componentSql" rows="15" :placeholder="vc.i18n('选填,请填写执行sql','editReportCustomComponentFooter')" class="form-control">
|
||||||
|
</textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group row" v-if="editReportCustomComponentFooterInfo.queryModel == 2">
|
||||||
|
<label class="col-sm-2 col-form-label">java</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<textarea v-model="editReportCustomComponentFooterInfo.javaScript" rows="15" :placeholder="vc.i18n('选填,请填写执行java脚本代码','editReportCustomComponentFooter')" class="form-control">
|
||||||
|
</textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group row">
|
||||||
|
<label class="col-sm-2 col-form-label">
|
||||||
|
<span>
|
||||||
|
<vc:i18n name="描述" namespace="editReportCustomComponentFooter"></vc:i18n>
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
<div class="col-sm-10">
|
||||||
|
<textarea v-model="editReportCustomComponentFooterInfo.remark" type="text" :placeholder="vc.i18n('选填,请填写描述','editReportCustomComponentFooter')" class="form-control">
|
||||||
|
</textarea>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="ibox-content">
|
||||||
|
<button class="btn btn-primary float-right" type="button" v-on:click="editReportCustomComponentFooter()">
|
||||||
|
<i class="fa fa-check"></i> 保存
|
||||||
|
</button>
|
||||||
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal">
|
||||||
|
<span>
|
||||||
|
<vc:i18n name="取消" namespace="editReportCustomComponentFooter"></vc:i18n>
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="form-group row">
|
|
||||||
<label class="col-sm-2 col-form-label"><span><vc:i18n name="查询方式" namespace="editReportCustomComponentFooter"></vc:i18n></span></label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<select class="custom-select" v-model="editReportCustomComponentFooterInfo.queryModel">
|
|
||||||
<option selected disabled value="">{{vc.i18n('必填','editReportCustomComponentFooter')}},请选择查询方式</option>
|
|
||||||
<option value="1">sql</option>
|
|
||||||
<option value="2">java</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group row" v-if="editReportCustomComponentFooterInfo.queryModel == 1">
|
|
||||||
<label class="col-sm-2 col-form-label">sql</label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<textarea v-model="editReportCustomComponentFooterInfo.componentSql" rows="15" :placeholder="vc.i18n('选填,请填写执行','editReportCustomComponentFooter')sql"
|
|
||||||
class="form-control"></textarea>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group row" v-if="editReportCustomComponentFooterInfo.queryModel == 2">
|
|
||||||
<label class="col-sm-2 col-form-label">java</label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<textarea v-model="editReportCustomComponentFooterInfo.javaScript" rows="15" :placeholder="vc.i18n('选填,请填写执行','editReportCustomComponentFooter')java脚本代码"
|
|
||||||
class="form-control"></textarea>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group row">
|
|
||||||
<label class="col-sm-2 col-form-label"><span><vc:i18n name="描述" namespace="editReportCustomComponentFooter"></vc:i18n></span></label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<textarea v-model="editReportCustomComponentFooterInfo.remark" type="text" :placeholder="vc.i18n('选填,请填写描述','editReportCustomComponentFooter')"
|
|
||||||
class="form-control"></textarea>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="ibox-content">
|
|
||||||
<button class="btn btn-primary float-right" type="button"
|
|
||||||
v-on:click="editReportCustomComponentFooter()"><i class="fa fa-check"></i> 保存</button>
|
|
||||||
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
|
|
||||||
data-dismiss="modal"><span><vc:i18n name="取消" namespace="editReportCustomComponentFooter"></vc:i18n></span></button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
Loading…
Reference in New Issue
Block a user