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,35 @@
{$layout "layout_popup"}
<h3>定制省份/州信息</h3>
<form class="ui form" data-tea-action="$" data-tea-success="success">
<csrf-token></csrf-token>
<input type="hidden" name="provinceId" :value="province.id"/>
<table class="ui table definition selectable">
<tr>
<td class="title">省份/州名称</td>
<td>{{province.name}}</td>
</tr>
<tr>
<td>内置别名</td>
<td>
<div v-if="province.codes.length > 0">
<span v-for="code in province.codes" class="ui label basic">{{code}}</span>
</div>
<span v-else class="disabled"></span>
</td>
</tr>
<tr>
<td>自定义名称</td>
<td>
<input type="text" name="customName" maxlength="100" v-model="province.customName"/>
</td>
</tr>
<tr>
<td>自定义别名</td>
<td>
<values-box name="customCodes" :v-values="province.customCodes"></values-box>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>