ci: 国际化

This commit is contained in:
就眠儀式
2022-03-09 11:22:25 +08:00
parent 9fc2b3922f
commit 29ddc72e4b
6 changed files with 36 additions and 15 deletions

View File

@@ -13,5 +13,3 @@ export function throttle(func: Function) {
export function handle_select(e: Event): void {
e.preventDefault();
}

View File

@@ -190,7 +190,6 @@ onMounted(() => {
@click.stop="rowClick(data)"
@dblclick.stop="rowDoubleClick(data)"
>
<td v-if="checkbox" class="layui-table-col-special">
<div class="layui-table-cell laytable-cell-checkbox">
<LayCheckbox
@@ -223,7 +222,6 @@ onMounted(() => {
</div>
</td>
</template>
</template>
</template>
</tr>
@@ -247,4 +245,4 @@ onMounted(() => {
</div>
</div>
</div>
</template>
</template>

View File

@@ -13,5 +13,5 @@ export function S4() {
* @param null 无参
* */
export function guid() {
return (S4() + S4() + S4() + S4() + S4() + S4() + S4() + S4());
}
return S4() + S4() + S4() + S4() + S4() + S4() + S4() + S4();
}