|
@@ -1,5 +1,7 @@
|
|
<template>
|
|
<template>
|
|
<div class="flex">
|
|
<div class="flex">
|
|
|
|
+ <!-- ====== 字典分类 ====== -->
|
|
|
|
+ <!-- TODO 星语:筛选框很小 -->
|
|
<el-card class="w-1/2 dict" :gutter="12" shadow="always">
|
|
<el-card class="w-1/2 dict" :gutter="12" shadow="always">
|
|
<template #header>
|
|
<template #header>
|
|
<div class="card-header">
|
|
<div class="card-header">
|
|
@@ -12,6 +14,7 @@
|
|
@cell-click="cellClickEvent"
|
|
@cell-click="cellClickEvent"
|
|
class="xtable-scrollbar"
|
|
class="xtable-scrollbar"
|
|
>
|
|
>
|
|
|
|
+ <!-- 操作:新增类型 -->
|
|
<template #toolbar_buttons>
|
|
<template #toolbar_buttons>
|
|
<XButton
|
|
<XButton
|
|
type="primary"
|
|
type="primary"
|
|
@@ -22,12 +25,14 @@
|
|
/>
|
|
/>
|
|
</template>
|
|
</template>
|
|
<template #actionbtns_default="{ row }">
|
|
<template #actionbtns_default="{ row }">
|
|
|
|
+ <!-- 操作:编辑类型 -->
|
|
<XTextButton
|
|
<XTextButton
|
|
preIcon="ep:edit"
|
|
preIcon="ep:edit"
|
|
:title="t('action.edit')"
|
|
:title="t('action.edit')"
|
|
v-hasPermi="['system:dict:update']"
|
|
v-hasPermi="['system:dict:update']"
|
|
@click="handleTypeUpdate(row.id)"
|
|
@click="handleTypeUpdate(row.id)"
|
|
/>
|
|
/>
|
|
|
|
+ <!-- 操作:删除类型 -->
|
|
<XTextButton
|
|
<XTextButton
|
|
preIcon="ep:delete"
|
|
preIcon="ep:delete"
|
|
:title="t('action.del')"
|
|
:title="t('action.del')"
|
|
@@ -36,7 +41,9 @@
|
|
/>
|
|
/>
|
|
</template>
|
|
</template>
|
|
</vxe-grid>
|
|
</vxe-grid>
|
|
|
|
+ <!-- @星语:分页和列表重叠在一起了 -->
|
|
</el-card>
|
|
</el-card>
|
|
|
|
+ <!-- ====== 字典数据 ====== -->
|
|
<el-card class="w-1/2 dict" style="margin-left: 10px" :gutter="12" shadow="hover">
|
|
<el-card class="w-1/2 dict" style="margin-left: 10px" :gutter="12" shadow="hover">
|
|
<template #header>
|
|
<template #header>
|
|
<div class="card-header">
|
|
<div class="card-header">
|
|
@@ -50,6 +57,7 @@
|
|
<div v-if="tableTypeSelect">
|
|
<div v-if="tableTypeSelect">
|
|
<!-- 列表 -->
|
|
<!-- 列表 -->
|
|
<vxe-grid ref="xDataGrid" v-bind="dataGridOptions" class="xtable-scrollbar">
|
|
<vxe-grid ref="xDataGrid" v-bind="dataGridOptions" class="xtable-scrollbar">
|
|
|
|
+ <!-- 操作:新增数据 -->
|
|
<template #toolbar_buttons>
|
|
<template #toolbar_buttons>
|
|
<XButton
|
|
<XButton
|
|
type="primary"
|
|
type="primary"
|
|
@@ -60,12 +68,14 @@
|
|
/>
|
|
/>
|
|
</template>
|
|
</template>
|
|
<template #actionbtns_default="{ row }">
|
|
<template #actionbtns_default="{ row }">
|
|
|
|
+ <!-- 操作:修改数据 -->
|
|
<XTextButton
|
|
<XTextButton
|
|
v-hasPermi="['system:dict:update']"
|
|
v-hasPermi="['system:dict:update']"
|
|
preIcon="ep:edit"
|
|
preIcon="ep:edit"
|
|
:title="t('action.edit')"
|
|
:title="t('action.edit')"
|
|
@click="handleDataUpdate(row.id)"
|
|
@click="handleDataUpdate(row.id)"
|
|
/>
|
|
/>
|
|
|
|
+ <!-- 操作:删除数据 -->
|
|
<XTextButton
|
|
<XTextButton
|
|
v-hasPermi="['system:dict:delete']"
|
|
v-hasPermi="['system:dict:delete']"
|
|
preIcon="ep:delete"
|
|
preIcon="ep:delete"
|