Initial commit (code only without large binaries)

This commit is contained in:
robin
2026-02-15 18:58:44 +08:00
commit 35df75498f
9442 changed files with 1495866 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
{$layout "layout_popup"}
<h3>新购用户套餐</h3>
<form class="ui form" data-tea-action="$" data-tea-success="success">
<csrf-token></csrf-token>
<table class="ui table definition selectable">
<tr>
<td class="title">用户 *</td>
<td>
<user-selector></user-selector>
</td>
</tr>
<tr>
<td>套餐 *</td>
<td>
<select class="ui dropdown auto-width" name="planId">
<option value="0">[选择套餐]</option>
<option v-for="plan in plans" :value="plan.id">{{plan.name}}</option>
</select>
</td>
</tr>
<tr>
<td>周期 *</td>
<td>
<select class="ui dropdown auto-width" name="periodUnit">
<option value="monthly">按月</option>
<option value="yearly">按年</option>
</select>
</td>
</tr>
<tr>
<td>到期日期 *</td>
<td>
<datepicker :v-name="'dayTo'"></datepicker>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>