MicroCommunityWeb/public/components/admin/editSystemGoldSetting/editSystemGoldSetting.html
2023-09-04 00:50:33 +08:00

71 lines
4.1 KiB
HTML

<div id="editSystemGoldSettingModel" 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="editSystemGoldSetting"></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="editSystemGoldSetting"></vc:i18n></span></label>
<div class="col-sm-10">
<input v-model="editSystemGoldSettingInfo.goldName" type="text" :placeholder="vc.i18n('必填,请填写名称','editSystemGoldSetting')"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="类型" namespace="editSystemGoldSetting"></vc:i18n></span></label>
<div class="col-sm-10">
<select class="custom-select" v-model="editSystemGoldSettingInfo.goldType">
<option selected disabled value="">{{vc.i18n('必填','editSystemGoldSetting')}},请选择类型</option>
<option value="1001">{{vc.i18n('普通金币','editSystemGoldSetting')}}</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="购买价格" namespace="editSystemGoldSetting"></vc:i18n></span></label>
<div class="col-sm-10">
<input v-model="editSystemGoldSettingInfo.buyPrice" type="text" :placeholder="vc.i18n('必填,请填写购买价格','editSystemGoldSetting')"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="使用价格" namespace="editSystemGoldSetting"></vc:i18n></span></label>
<div class="col-sm-10">
<input v-model="editSystemGoldSettingInfo.usePrice" type="text" :placeholder="vc.i18n('必填,请填写使用价格','editSystemGoldSetting')"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="有效期" namespace="editSystemGoldSetting"></vc:i18n></span></label>
<div class="col-sm-10">
<input v-model="editSystemGoldSettingInfo.validity" type="text" :placeholder="vc.i18n('必填,请填写有效期','editSystemGoldSetting')"
class="form-control">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><span><vc:i18n name="状态" namespace="editSystemGoldSetting"></vc:i18n></span></label>
<div class="col-sm-10">
<select class="custom-select" v-model="editSystemGoldSettingInfo.state">
<option selected disabled value="">{{vc.i18n('必填','editSystemGoldSetting')}},请选择状态</option>
<option value="001">{{vc.i18n('启用','editSystemGoldSetting')}}</option>
<option value="002">{{vc.i18n('停用','editSystemGoldSetting')}}</option>
</select>
</div>
</div>
<div class="ibox-content">
<button class="btn btn-primary float-right" type="button" v-on:click="editSystemGoldSetting()"><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="editSystemGoldSetting"></vc:i18n></span></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>