Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/property/editWechatSmsTemplate/editWechatSmsTemplate.html
2025-12-09 20:22:03 +08:00

51 lines
4.0 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 id="editWechatSmsTemplateModel" 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="editWechatSmsTemplate"></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="editWechatSmsTemplate"></vc:i18n></span></label>
<div class="col-sm-10">
<select class="custom-select" v-model="editWechatSmsTemplateInfo.templateType">
<option selected disabled value="">{{vc.i18n('必填','editWechatSmsTemplate')}},请选择模板类型</option>
<option value="10001">{{vc.i18n('欠费催缴','editWechatSmsTemplate')}}</option>
<option value="10002">{{vc.i18n('停电通知','editWechatSmsTemplate')}}</option>
<option value="10003">{{vc.i18n('停水通知','editWechatSmsTemplate')}}</option>
</select> </div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="模板对象" namespace="editWechatSmsTemplate"></vc:i18n></span></label>
<div class="col-sm-10">
<select class="custom-select" v-model="editWechatSmsTemplateInfo.wechatId">
<option selected disabled value="">{{vc.i18n('必填','editWechatSmsTemplate')}},请选择模板对象</option>
<option v-for="(item,index) in editWechatSmsTemplateInfo.wechats"
:value="item.weChatId">{{item.name}}</option>
</select> </div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="微信模板" namespace="editWechatSmsTemplate"></vc:i18n></span>ID</label>
<div class="col-sm-10">
<input v-model="editWechatSmsTemplateInfo.smsTemplateId" type="text" :placeholder="vc.i18n('必填请填写微信模板ID','editWechatSmsTemplate')" class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="说明" namespace="editWechatSmsTemplate"></vc:i18n></span></label>
<div class="col-sm-10">
<input v-model="editWechatSmsTemplateInfo.remark" type="text" :placeholder="vc.i18n('选填,请填写说明','editWechatSmsTemplate')" class="form-control">
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="editWechatSmsTemplate()"><i class="fa fa-check"></i>&nbsp;保存</button>
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" data-dismiss="modal"><span><vc:i18n name="取消" namespace="editWechatSmsTemplate"></vc:i18n></span></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>