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

71 lines
3.6 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 class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5><span><vc:i18n name="金币设置信息" namespace="viewSystemGoldSettingInfo"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" v-if="viewSystemGoldSettingInfo.index != 2" class="btn btn-primary btn-sm" style="margin-right:10px;" v-on:click="_openSelectSystemGoldSettingInfoModel()">
<i class="glyphicon glyphicon-search"></i> <span><vc:i18n name="选择金币设置" namespace="viewSystemGoldSettingInfo"></vc:i18n></span></button>
<button type="button" v-if="viewSystemGoldSettingInfo.index != 2" class="btn btn-primary btn-sm" v-on:click="_openAddSystemGoldSettingInfoModel()">
<i class="glyphicon glyphicon-plus"></i> <span><vc:i18n name="添加金币设置" namespace="viewSystemGoldSettingInfo"></vc:i18n></span></button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="名称" namespace="viewSystemGoldSettingInfo"></vc:i18n></span></label>
<label class="">{{viewSystemGoldSettingInfo.goldName}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="类型" namespace="viewSystemGoldSettingInfo"></vc:i18n></span></label>
<label class="">{{viewSystemGoldSettingInfo.goldType}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="购买价格" namespace="viewSystemGoldSettingInfo"></vc:i18n></span></label>
<label class="">{{viewSystemGoldSettingInfo.buyPrice}}</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="使用价格" namespace="viewSystemGoldSettingInfo"></vc:i18n></span></label>
<label class="">{{viewSystemGoldSettingInfo.usePrice}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="有效期" namespace="viewSystemGoldSettingInfo"></vc:i18n></span></label>
<label class="">{{viewSystemGoldSettingInfo.validity}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" ><span><vc:i18n name="状态" namespace="viewSystemGoldSettingInfo"></vc:i18n></span></label>
<label class="">{{viewSystemGoldSettingInfo.state}}</label>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="admin/addSystemGoldSetting"
callBackListener="viewSystemGoldSettingInfo"
callBackFunction="chooseSystemGoldSetting"
></vc:create>
<vc:create path="admin/chooseSystemGoldSetting"
emitChooseSystemGoldSetting="viewSystemGoldSettingInfo"
emitLoadData="viewSystemGoldSettingInfo"
></vc:create>
</div>