MicroCommunityWeb/public/components/admin/viewSystemGoldSettingInfo/viewSystemGoldSettingInfo.html
2021-05-03 10:22:33 +08:00

71 lines
3.0 KiB
HTML

<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>金币设置信息</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> 选择金币设置</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> 添加金币设置</button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >名称:</label>
<label class="">{{viewSystemGoldSettingInfo.goldName}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >类型:</label>
<label class="">{{viewSystemGoldSettingInfo.goldType}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >购买价格:</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" >使用价格:</label>
<label class="">{{viewSystemGoldSettingInfo.usePrice}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >有效期:</label>
<label class="">{{viewSystemGoldSettingInfo.validity}}</label>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label class="col-form-label" >状态:</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>