mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
72 lines
3.6 KiB
HTML
72 lines
3.6 KiB
HTML
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<vc:i18n name="添加" namespace="addCommunityPublicity"></vc:i18n>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<button type="button" class="btn btn-white btn-sm" v-on:click="_goBack()">
|
|
<i class="fa fa-close"></i>返回
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='公示标题' namespace='addCommunityPublicity'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<input v-model="addCommunityPublicityInfo.title" type="text"
|
|
:placeholder="vc.i18n('必填,请填写公示标题','addCommunityPublicity')" class="form-control">
|
|
</div>
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='公示类型' namespace='addCommunityPublicity'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-4">
|
|
<select class="custom-select" v-model="addCommunityPublicityInfo.pubType">
|
|
<option selected disabled value="">
|
|
{{vc.i18n('必填,请选择公示类型','addCommunityPublicity')}}
|
|
</option>
|
|
<option :value="item.statusCd" v-for="(item,index) in addCommunityPublicityInfo.pubTypes">
|
|
{{item.name}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='头部照片' namespace='addCommunityPublicity'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<vc:create path="frame/uploadImageUrl" callBackListener="addCommunityPublicity"
|
|
callBackFunction="notifyUploadImage" imageCount="1"
|
|
namespace="addCommunityPublicity">
|
|
</vc:create>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-sm-2 col-form-label text-right">
|
|
<vc:i18n name='活动内容' namespace='addCommunityPublicity'></vc:i18n>
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<div class="no-padding">
|
|
<div class="summernote"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12 text-right">
|
|
<button type="button" class="btn btn-primary " style="margin-right:20px;" @click="_goBack()">
|
|
<i class="fa fa-close"></i>
|
|
<vc:i18n name="返回"></vc:i18n>
|
|
</button>
|
|
<button class="btn btn-primary" type="button" v-on:click="saveCommunityPublicityInfo()">
|
|
<i class="fa fa-check"></i> 提交
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |