Forráskód Böngészése

feat: 新增组件-可选按钮示例

xiaoxian521 1 éve
szülő
commit
70c865b748

+ 1 - 0
locales/en.yaml

@@ -102,6 +102,7 @@ menus:
   hsCascader: Area Cascader
   hsSwiper: Swiper Plugin
   hsVirtualList: Virtual List
+  hsCheckButton: Check Button
   hsPdf: PDF Preview
   hsExcel: Export Excel
   hsInfiniteScroll: Table Infinite Scroll

+ 1 - 0
locales/zh-CN.yaml

@@ -102,6 +102,7 @@ menus:
   hsCascader: 区域级联选择器
   hsSwiper: Swiper插件
   hsVirtualList: 虚拟列表
+  hsCheckButton: 可选按钮
   hsPdf: PDF预览
   hsExcel: 导出Excel
   hsInfiniteScroll: 表格无限滚动

+ 8 - 8
src/router/enums.ts

@@ -4,11 +4,11 @@ const home = 0, // 平台规定只有 home 路由的 rank 才能为 0 ,所以
   able = 1,
   components = 2,
   table = 3,
-  frame = 4,
-  nested = 5,
-  result = 6,
-  error = 7,
-  list = 8,
+  list = 4,
+  result = 5,
+  error = 6,
+  frame = 7,
+  nested = 8,
   permission = 9,
   system = 10,
   tabs = 11,
@@ -26,11 +26,11 @@ export {
   able,
   components,
   table,
-  frame,
-  nested,
+  list,
   result,
   error,
-  list,
+  frame,
+  nested,
   permission,
   system,
   tabs,

+ 11 - 4
src/router/modules/components.ts

@@ -15,8 +15,7 @@ export default {
       name: "DialogPage",
       component: () => import("@/views/components/dialog/index.vue"),
       meta: {
-        title: $t("menus.hsdialog"),
-        extraIcon: "IF-pure-iconfont-new svg"
+        title: $t("menus.hsdialog")
       }
     },
     {
@@ -51,13 +50,21 @@ export default {
         title: $t("menus.hscropping")
       }
     },
+    {
+      path: "/components/checkButton",
+      name: "CheckButton",
+      component: () => import("@/views/components/check-button.vue"),
+      meta: {
+        title: $t("menus.hsCheckButton"),
+        extraIcon: "IF-pure-iconfont-new svg"
+      }
+    },
     {
       path: "/components/segmented",
       name: "Segmented",
       component: () => import("@/views/components/segmented.vue"),
       meta: {
-        title: $t("menus.hssegmented"),
-        extraIcon: "IF-pure-iconfont-new svg"
+        title: $t("menus.hssegmented")
       }
     },
     {

+ 1 - 2
src/router/modules/nested.ts

@@ -52,8 +52,7 @@ export default {
               name: "Menu1-2-2",
               meta: {
                 title: $t("menus.hsmenu1-2-2"),
-                keepAlive: true,
-                extraIcon: "IF-pure-iconfont-new svg"
+                keepAlive: true
               }
             }
           ]

+ 275 - 0
src/views/components/check-button.vue

@@ -0,0 +1,275 @@
+<script setup lang="ts">
+import { ref } from "vue";
+import { message } from "@/utils/message";
+import { getKeyList } from "@pureadmin/utils";
+
+defineOptions({
+  name: "CheckButton"
+});
+
+const spaceSize = ref(20);
+const size = ref("default");
+
+const radio = ref("wait");
+const radioBox = ref("complete");
+const radioCustom = ref("progress");
+
+const checkboxGroup = ref(["apple", "tomato"]);
+const checkboxGroupBox = ref(["cucumber", "onion", "blueberry"]);
+const checkboxGroupCustom = ref(["tomato", "watermelon", "strawberry"]);
+
+/** 单选(可控制间距的按钮样式) */
+const checkTag = ref([
+  {
+    title: "等待中",
+    checked: false
+  },
+  {
+    title: "进行中",
+    checked: true
+  },
+  {
+    title: "已完成",
+    checked: false
+  }
+]);
+const curTagMap = ref({});
+function onChecked(tag, index) {
+  curTagMap.value[index] = Object.assign({
+    ...tag,
+    checked: !tag.checked
+  });
+  checkTag.value.map(item => (item.checked = false));
+  checkTag.value[index].checked = curTagMap.value[index].checked;
+  const { title, checked } = curTagMap.value[index];
+  message(checked ? `已选中${title}` : `取消选中${title}`, {
+    type: "success"
+  });
+}
+
+/** 多选(可控制间距的按钮样式) */
+const checkGroupTag = ref([
+  {
+    title: "苹果",
+    checked: true
+  },
+  {
+    title: "西红柿",
+    checked: true
+  },
+  {
+    title: "香蕉",
+    checked: false
+  }
+]);
+const curTagGroupMap = ref({});
+function onGroupChecked(tag, index) {
+  curTagGroupMap.value[index] = Object.assign({
+    ...tag,
+    checked: !tag.checked
+  });
+  checkGroupTag.value[index].checked = curTagGroupMap.value[index].checked;
+}
+</script>
+
+<template>
+  <el-card shadow="never">
+    <template #header>
+      <div class="card-header">
+        <span class="font-medium">
+          可选按钮
+          <br />
+          <el-radio-group v-model="size" size="small">
+            <el-radio-button label="large">大尺寸</el-radio-button>
+            <el-radio-button label="default">默认尺寸</el-radio-button>
+            <el-radio-button label="small">小尺寸</el-radio-button>
+            <el-radio-button label="disabled">禁用</el-radio-button>
+          </el-radio-group>
+        </span>
+      </div>
+    </template>
+    <p class="mb-2">单选(紧凑风格的按钮样式)</p>
+    <el-radio-group
+      v-model="radio"
+      :size="size as any"
+      :disabled="size === 'disabled'"
+    >
+      <el-radio-button label="wait">等待中</el-radio-button>
+      <el-radio-button label="progress">进行中</el-radio-button>
+      <el-radio-button label="complete">已完成</el-radio-button>
+    </el-radio-group>
+    <el-divider />
+
+    <p class="mb-2">单选(带有边框)</p>
+    <el-radio-group
+      v-model="radioBox"
+      :size="size as any"
+      :disabled="size === 'disabled'"
+    >
+      <el-radio label="wait" border>等待中</el-radio>
+      <el-radio label="progress" border>进行中</el-radio>
+      <el-radio label="complete" border>已完成</el-radio>
+    </el-radio-group>
+    <el-divider />
+
+    <p class="mb-2">单选(自定义内容)</p>
+    <el-radio-group
+      v-model="radioCustom"
+      :size="size as any"
+      :disabled="size === 'disabled'"
+    >
+      <el-radio-button label="wait">
+        <span class="flex">
+          <IconifyIconOnline icon="ri:progress-8-fill" class="mr-1" />
+          等待中
+        </span>
+      </el-radio-button>
+      <el-radio-button label="progress">
+        <span class="flex">
+          <IconifyIconOnline icon="ri:progress-6-line" class="mr-1" />
+          进行中
+        </span>
+      </el-radio-button>
+      <el-radio-button label="complete">
+        <span class="flex">
+          <IconifyIconOnline icon="ri:progress-8-line" class="mr-1" />
+          已完成
+        </span>
+      </el-radio-button>
+    </el-radio-group>
+    <el-divider />
+
+    <p class="mb-2">多选(紧凑风格的按钮样式)</p>
+    <el-checkbox-group
+      v-model="checkboxGroup"
+      :size="size as any"
+      :disabled="size === 'disabled'"
+    >
+      <el-checkbox-button label="apple">苹果</el-checkbox-button>
+      <el-checkbox-button label="tomato">西红柿</el-checkbox-button>
+      <el-checkbox-button label="banana">香蕉</el-checkbox-button>
+    </el-checkbox-group>
+    <el-divider />
+
+    <p class="mb-2">多选(带有边框)</p>
+    <el-checkbox-group
+      v-model="checkboxGroupBox"
+      :size="size as any"
+      :disabled="size === 'disabled'"
+    >
+      <el-checkbox label="cucumber" border>黄瓜</el-checkbox>
+      <el-checkbox label="onion" border>洋葱</el-checkbox>
+      <el-checkbox label="blueberry" border>蓝莓</el-checkbox>
+    </el-checkbox-group>
+    <el-divider />
+
+    <p class="mb-2">多选(来点不一样的体验)</p>
+    <el-checkbox-group
+      v-model="checkboxGroupCustom"
+      class="pure-checkbox"
+      :size="size as any"
+      :disabled="size === 'disabled'"
+    >
+      <el-checkbox-button label="tomato">
+        <span class="flex">
+          <IconifyIconOnline icon="streamline-emojis:tomato" class="mr-1" />
+          番茄
+        </span>
+      </el-checkbox-button>
+      <el-checkbox-button label="watermelon">
+        <span class="flex">
+          <IconifyIconOnline
+            icon="streamline-emojis:watermelon-1"
+            class="mr-1"
+          />
+          西瓜
+        </span>
+      </el-checkbox-button>
+      <el-checkbox-button label="strawberry">
+        <span class="flex">
+          <IconifyIconOnline
+            icon="streamline-emojis:strawberry-1"
+            class="mr-1"
+          />
+          草莓
+        </span>
+      </el-checkbox-button>
+    </el-checkbox-group>
+    <el-divider />
+
+    <p>可控制间距的按钮样式</p>
+    <el-slider
+      v-model="spaceSize"
+      class="mb-2 !w-[300px]"
+      :show-tooltip="false"
+      :disabled="size === 'disabled'"
+    />
+    <p class="mb-2">单选</p>
+    <el-space wrap :size="spaceSize">
+      <el-check-tag
+        v-for="(tag, index) in checkTag"
+        :key="index"
+        class="select-none"
+        :checked="tag.checked"
+        @change="onChecked(tag, index)"
+      >
+        {{ tag.title }}
+      </el-check-tag>
+    </el-space>
+    <p class="mb-2 mt-4">
+      多选
+      {{
+        getKeyList(
+          checkGroupTag.filter(tag => tag.checked),
+          "title"
+        )
+      }}
+    </p>
+    <el-space wrap :size="spaceSize">
+      <el-check-tag
+        v-for="(tag, index) in checkGroupTag"
+        :key="index"
+        class="select-none"
+        :checked="tag.checked"
+        @change="onGroupChecked(tag, index)"
+      >
+        {{ tag.title }}
+      </el-check-tag>
+    </el-space>
+  </el-card>
+</template>
+
+<style lang="scss" scoped>
+:deep(.el-divider--horizontal) {
+  margin: 17px 0;
+}
+
+:deep(.pure-checkbox) {
+  .el-checkbox-button {
+    /* 选中时的自定义样式 */
+    &.is-checked {
+      .el-checkbox-button__inner {
+        color: var(--el-color-primary);
+        background-color: var(--el-color-primary-light-8);
+        border-color: transparent;
+        border-left-color: #fff;
+      }
+    }
+
+    /* 禁用时的自定义样式 */
+    &.is-disabled {
+      .el-checkbox-button__inner {
+        color: var(--el-disabled-text-color);
+        background-color: var(
+          --el-button-disabled-bg-color,
+          var(--el-fill-color-blank)
+        );
+        border-color: var(
+          --el-button-disabled-border-color,
+          var(--el-border-color-light)
+        );
+      }
+    }
+  }
+}
+</style>