kefu/static/templates/default/setting_charge.html

40 lines
1.6 KiB
HTML
Raw Permalink 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.

{{template "header" }}
<div id="app" style="width:100%">
<template>
<el-container>
<el-main class="mainMain" >
<el-alert
title="提示"
type="info"
description="1天例如输入账号并充值1天就意味着该账号过期时间增加1天">
</el-alert>
<el-form ref="form" label-width="90px" style="margin-top:20px;width:500px;">
<el-form-item label="账号">
<el-input v-model="settingCharge.username"></el-input>
</el-form-item>
<el-form-item label="支付方式">
<el-select v-model="settingCharge.payment" placeholder="请选择">
<el-option label="支付宝" value="alipay"></el-option>
<el-option label="微信" value="wechat"></el-option>
<el-option label="网银" value="bank"></el-option>
</el-select>
</el-form-item>
<el-form-item label="天数">
<el-input-number v-model="settingCharge.money" :min="1" :max="1000000"></el-input-number>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="userCharge()">提交</el-button>
</el-form-item>
</el-form>
</el-main>
</el-container>
</template>
</div>
</body>
{{template "setting_bottom" .}}