62 lines
3.9 KiB
HTML
62 lines
3.9 KiB
HTML
<div id="editEventTemplateModel" 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 ">
|
|
<vc:i18n name="修改" namespace="editEventTemplate"></vc:i18n>
|
|
</h3>
|
|
<div class="ibox-content">
|
|
<div>
|
|
<div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='模板名称' namespace='editEventTemplate'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editEventTemplateInfo.templateName" type="text"
|
|
:placeholder="vc.i18n('必填,请填写模板名称','editEventTemplate')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='通知方式' namespace='editEventTemplate'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<select class="custom-select" v-model="editEventTemplateInfo.eventWay" disabled>
|
|
<option selected disabled value="">{{vc.i18n('必填,请选择通知方式','editEventTemplate')}}</option>
|
|
<option v-for="(item, index) in eventWayList" :key="index" :value="item.statusCd">
|
|
{{item.name}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row" v-for="(item, index) in editEventTemplateInfo.eventTemplateParamKetList" :key="index">
|
|
<label class="col-sm-2 col-form-label text-right">{{item.specName}}</label>
|
|
<div class="col-sm-10">
|
|
<textarea v-model="item.paramValue" :placeholder="item.remark" class="form-control" rows="3"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='备注' namespace='editEventTemplate'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<textarea v-model="editEventTemplateInfo.remark" :placeholder="vc.i18n('选填,请填写备注','editEventTemplate')" class="form-control" rows="3"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="editEventTemplate()"><i class="fa fa-check"></i>
|
|
<vc:i18n name="保存"></vc:i18n>
|
|
</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal">
|
|
<vc:i18n name="取消"></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|