mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
60 lines
3.4 KiB
HTML
60 lines
3.4 KiB
HTML
<div id="editAttrValueModel" 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 ">
|
|
<span><vc:i18n name="修改属性值" namespace="editAttrValue"></vc:i18n></span>
|
|
</h3>
|
|
<div class="ibox-content">
|
|
<div>
|
|
<div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<span><vc:i18n name="值" namespace="editAttrValue"></vc:i18n></span>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editAttrValueInfo.value" type="text"
|
|
:placeholder="vc.i18n('必填,请填写值','editAttrValue')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<span><vc:i18n name="值名称" namespace="editAttrValue"></vc:i18n></span>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<input v-model="editAttrValueInfo.valueName" type="text"
|
|
:placeholder="vc.i18n('必填,请填写值名称','editAttrValue')" class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label">
|
|
<span><vc:i18n name="显示" namespace="editAttrValue"></vc:i18n></span>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<select class="custom-select" v-model="editAttrValueInfo.valueShow">
|
|
<option selected disabled value="">
|
|
{{vc.i18n('必填','editAttrValue')}},请选择显示
|
|
</option>
|
|
<option value="Y">{{vc.i18n('是','editAttrValue')}}</option>
|
|
<option value="N">{{vc.i18n('否','editAttrValue')}}</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<button class="btn btn-primary float-right" type="button" v-on:click="editAttrValue()">
|
|
<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-close"></i> 取消
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|