mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
添加描述
This commit is contained in:
parent
96a7aa0939
commit
1de5b338ae
@ -5,7 +5,7 @@
|
|||||||
<cl-dialog v-model="visible" title="自定义列">
|
<cl-dialog v-model="visible" title="自定义列">
|
||||||
<div class="cl-column-custom__dialog">
|
<div class="cl-column-custom__dialog">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<draggable v-model="list">
|
<draggable item-key="prop" v-model="list">
|
||||||
<template #item="{ element: item }">
|
<template #item="{ element: item }">
|
||||||
<el-checkbox border v-model="item.checked">{{
|
<el-checkbox border v-model="item.checked">{{
|
||||||
item.label
|
item.label
|
||||||
@ -34,6 +34,10 @@ import { isBoolean, orderBy } from "lodash-es";
|
|||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "cl-column-custom",
|
name: "cl-column-custom",
|
||||||
|
|
||||||
|
components: {
|
||||||
|
Draggable
|
||||||
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
name: String,
|
name: String,
|
||||||
columns: {
|
columns: {
|
||||||
@ -43,10 +47,6 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
components: {
|
|
||||||
Draggable
|
|
||||||
},
|
|
||||||
|
|
||||||
setup(props) {
|
setup(props) {
|
||||||
// 是否可见
|
// 是否可见
|
||||||
const visible = ref(false);
|
const visible = ref(false);
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
import { Merge, ModuleConfig } from "/@/cool";
|
import { Merge, ModuleConfig } from "/@/cool";
|
||||||
|
|
||||||
|
// npm
|
||||||
import Crud from "@cool-vue/crud";
|
import Crud from "@cool-vue/crud";
|
||||||
import "@cool-vue/crud/dist/index.css";
|
import "@cool-vue/crud/dist/index.css";
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
<!-- 筛选 -->
|
<!-- 筛选 -->
|
||||||
<cl-filter label="状态筛选">
|
<cl-filter label="状态筛选">
|
||||||
|
<!-- 配置props,选择后会自动过滤列表 -->
|
||||||
<cl-select :options="options.status" prop="status" />
|
<cl-select :options="options.status" prop="status" />
|
||||||
</cl-filter>
|
</cl-filter>
|
||||||
|
|
||||||
@ -85,14 +86,18 @@
|
|||||||
<script lang="tsx" name="demo-crud" setup>
|
<script lang="tsx" name="demo-crud" setup>
|
||||||
import { useCrud, useUpsert, useTable, useAdvSearch, setFocus } from "@cool-vue/crud";
|
import { useCrud, useUpsert, useTable, useAdvSearch, setFocus } from "@cool-vue/crud";
|
||||||
import { useDict } from "/$/dict";
|
import { useDict } from "/$/dict";
|
||||||
import FormBtn from "../components/form-btn.vue";
|
|
||||||
import { reactive } from "vue";
|
import { reactive } from "vue";
|
||||||
import { ElMessage, ElMessageBox } from "element-plus";
|
import { ElMessage, ElMessageBox } from "element-plus";
|
||||||
|
import { useCool } from "/@/cool";
|
||||||
|
import FormBtn from "../components/form-btn.vue";
|
||||||
|
|
||||||
|
// 基础
|
||||||
|
const { service } = useCool();
|
||||||
|
|
||||||
// 字典
|
// 字典
|
||||||
const { dict } = useDict();
|
const { dict } = useDict();
|
||||||
|
|
||||||
// 选项
|
// 选项,统一命名options,存放所有的下拉等其他选项列表数据
|
||||||
const options = reactive({
|
const options = reactive({
|
||||||
status: [
|
status: [
|
||||||
{
|
{
|
||||||
@ -110,13 +115,22 @@ const options = reactive({
|
|||||||
// crud
|
// crud
|
||||||
const Crud = useCrud(
|
const Crud = useCrud(
|
||||||
{
|
{
|
||||||
|
// 绑定的服务,如:service.demo.goods、service.base.sys.user
|
||||||
service: "test"
|
service: "test"
|
||||||
},
|
},
|
||||||
(app) => {
|
(app) => {
|
||||||
app.refresh();
|
// Crud 加载完,默认刷新一次
|
||||||
|
app.refresh({
|
||||||
|
// status: 1 // 带额外参数的请求
|
||||||
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// 刷新列表,统一调用这个方法去刷新
|
||||||
|
function refresh(params?: any) {
|
||||||
|
Crud.value?.refresh(params);
|
||||||
|
}
|
||||||
|
|
||||||
// 新增、编辑
|
// 新增、编辑
|
||||||
const Upsert = useUpsert({
|
const Upsert = useUpsert({
|
||||||
items: [
|
items: [
|
||||||
@ -153,13 +167,13 @@ const Upsert = useUpsert({
|
|||||||
name: "el-input"
|
name: "el-input"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 判断mode
|
// 动态配置,新增显示、编辑隐藏
|
||||||
() => {
|
() => {
|
||||||
return {
|
return {
|
||||||
label: "密码",
|
label: "密码",
|
||||||
group: "base",
|
group: "base",
|
||||||
prop: "password",
|
prop: "password",
|
||||||
hidden: Upsert.value?.mode == "update",
|
hidden: Upsert.value?.mode == "update", // 通过 mode 参数判断
|
||||||
component: {
|
component: {
|
||||||
name: "el-input",
|
name: "el-input",
|
||||||
props: {
|
props: {
|
||||||
@ -168,18 +182,34 @@ const Upsert = useUpsert({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
// 动态值
|
{
|
||||||
() => {
|
prop: "user",
|
||||||
return {
|
group: "base",
|
||||||
|
component: {
|
||||||
|
name: "cl-form-card",
|
||||||
|
props: {
|
||||||
|
label: "用户信息(多层级展示)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
label: "姓名",
|
label: "姓名",
|
||||||
prop: "name",
|
prop: "name",
|
||||||
required: true,
|
required: true,
|
||||||
group: "base",
|
|
||||||
component: {
|
component: {
|
||||||
name: "el-input"
|
name: "el-input"
|
||||||
}
|
}
|
||||||
};
|
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: "年龄",
|
||||||
|
prop: "age",
|
||||||
|
component: {
|
||||||
|
name: "el-input-number"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
label: "省市区",
|
label: "省市区",
|
||||||
prop: "pca",
|
prop: "pca",
|
||||||
@ -188,14 +218,7 @@ const Upsert = useUpsert({
|
|||||||
name: "cl-distpicker"
|
name: "cl-distpicker"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: "年龄",
|
|
||||||
group: "base",
|
|
||||||
prop: "age",
|
|
||||||
component: {
|
|
||||||
name: "el-input-number"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "职业",
|
label: "职业",
|
||||||
prop: "occupation",
|
prop: "occupation",
|
||||||
@ -225,14 +248,20 @@ const Upsert = useUpsert({
|
|||||||
// 插件
|
// 插件
|
||||||
plugins: [
|
plugins: [
|
||||||
// 自动聚焦
|
// 自动聚焦
|
||||||
setFocus("name")
|
setFocus("account")
|
||||||
],
|
],
|
||||||
|
|
||||||
// 详情钩子
|
// 详情钩子
|
||||||
onInfo(data, { next, done }) {
|
onInfo(data, { next, done }) {
|
||||||
// 继续请求 info 接口
|
// 继续请求 info 接口,可以带其他自定义参数
|
||||||
// next({
|
// next({
|
||||||
// id: data.id
|
// id: data.id,
|
||||||
|
// status: 1
|
||||||
|
// });
|
||||||
|
|
||||||
|
// 使用其他接口
|
||||||
|
// service.demo.goods.info({ id: data.id }).then((res) => {
|
||||||
|
// done(res);
|
||||||
// });
|
// });
|
||||||
|
|
||||||
// 直接取列表的数据返回
|
// 直接取列表的数据返回
|
||||||
@ -244,9 +273,28 @@ const Upsert = useUpsert({
|
|||||||
console.log("onSubmit", data);
|
console.log("onSubmit", data);
|
||||||
// 继续请求 update/add 接口
|
// 继续请求 update/add 接口
|
||||||
next(data);
|
next(data);
|
||||||
|
|
||||||
|
// 自定义接口
|
||||||
|
// service.demo.goods
|
||||||
|
// .update(data)
|
||||||
|
// .then(() => {
|
||||||
|
// ElMessage.success("保存成功");
|
||||||
|
|
||||||
|
// // 操作完,刷新列表
|
||||||
|
// refresh();
|
||||||
|
|
||||||
|
// // 关闭窗口
|
||||||
|
// close();
|
||||||
|
// })
|
||||||
|
// .catch((err) => {
|
||||||
|
// ElMessage.error(err.message);
|
||||||
|
|
||||||
|
// // 关闭加载状态
|
||||||
|
// done();
|
||||||
|
// });
|
||||||
},
|
},
|
||||||
|
|
||||||
// 打开后
|
// 打开后,数据加载完,onInfo 之后
|
||||||
onOpened(data) {
|
onOpened(data) {
|
||||||
if (Upsert.value?.mode != "info") {
|
if (Upsert.value?.mode != "info") {
|
||||||
ElMessage.success("编辑中");
|
ElMessage.success("编辑中");
|
||||||
@ -281,12 +329,11 @@ const Table = useTable({
|
|||||||
type: "selection",
|
type: "selection",
|
||||||
width: 60
|
width: 60
|
||||||
},
|
},
|
||||||
() => {
|
// 展开列
|
||||||
return {
|
{
|
||||||
label: "#",
|
label: "#",
|
||||||
type: "expand",
|
type: "expand",
|
||||||
prop: "detail"
|
prop: "detail"
|
||||||
};
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "姓名",
|
label: "姓名",
|
||||||
@ -307,22 +354,28 @@ const Table = useTable({
|
|||||||
label: "创建时间",
|
label: "创建时间",
|
||||||
orderNum: 1,
|
orderNum: 1,
|
||||||
prop: "createTime",
|
prop: "createTime",
|
||||||
sortable: "desc"
|
sortable: "desc" // 默认倒序
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "op",
|
type: "op",
|
||||||
width: 350,
|
width: 350,
|
||||||
buttons: [
|
// 静态配置按钮
|
||||||
|
// buttons: ["info", "edit", "delete"],
|
||||||
|
// 动态配置按钮
|
||||||
|
buttons({ scope }) {
|
||||||
|
return [
|
||||||
"info",
|
"info",
|
||||||
"edit",
|
"edit",
|
||||||
"delete",
|
"delete",
|
||||||
{
|
{
|
||||||
label: "自定义按钮",
|
label: "自定义按钮",
|
||||||
|
hidden: !scope.row.status,
|
||||||
onClick({ scope }) {
|
onClick({ scope }) {
|
||||||
ElMessage.success(scope.row.name + "正常");
|
ElMessage.success(scope.row.name + "正常");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user