refactor: ♻️ 演示界面统一至`demo`下,精简删除`demo`目录即可
Former-commit-id: cef5e36eb0
This commit is contained in:
parent
449d1359bb
commit
5a42fd790f
|
|
@ -304,7 +304,7 @@ const data = {
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: "dynamic-table",
|
path: "dynamic-table",
|
||||||
component: "table/dynamic-table/index",
|
component: "demo/table/dynamic-table/index",
|
||||||
name: "DynamicTable",
|
name: "DynamicTable",
|
||||||
meta: {
|
meta: {
|
||||||
title: "动态Table",
|
title: "动态Table",
|
||||||
|
|
@ -315,7 +315,7 @@ const data = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "drag-table",
|
path: "drag-table",
|
||||||
component: "table/drag-table",
|
component: "demo/table/drag-table",
|
||||||
name: "DragTable",
|
name: "DragTable",
|
||||||
meta: {
|
meta: {
|
||||||
title: "拖拽Table",
|
title: "拖拽Table",
|
||||||
|
|
@ -326,7 +326,7 @@ const data = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: "complex-table",
|
path: "complex-table",
|
||||||
component: "table/complex-table",
|
component: "demo/table/complex-table",
|
||||||
name: "ComplexTable",
|
name: "ComplexTable",
|
||||||
meta: {
|
meta: {
|
||||||
title: "综合Table",
|
title: "综合Table",
|
||||||
|
|
@ -350,7 +350,7 @@ const data = {
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: "permission",
|
path: "permission",
|
||||||
component: "permission/page",
|
component: "demo/permission/page",
|
||||||
name: "Permission",
|
name: "Permission",
|
||||||
meta: {
|
meta: {
|
||||||
title: "Permission",
|
title: "Permission",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div style="margin-bottom: 15px">Your roles: {{ roles }}</div>
|
<div class="mb-[15px]">Your roles: {{ roles }}</div>
|
||||||
Switch roles:
|
Switch roles:
|
||||||
<el-radio-group v-model="switchRoles">
|
<el-radio-group v-model="switchRoles">
|
||||||
<el-radio-button label="EDITOR" />
|
<el-radio-button label="EDITOR" />
|
||||||
|
|
@ -216,7 +216,7 @@ export function export_json_to_excel({
|
||||||
wch: 10,
|
wch: 10,
|
||||||
};
|
};
|
||||||
} else if (val.toString().charCodeAt(0) > 255) {
|
} else if (val.toString().charCodeAt(0) > 255) {
|
||||||
/*再判断是否为中文*/
|
/*再判断是否为中文*/
|
||||||
return {
|
return {
|
||||||
wch: val.toString().length * 2,
|
wch: val.toString().length * 2,
|
||||||
};
|
};
|
||||||
Loading…
Reference in New Issue