pull/68/head
xiaojunnuo 2024-03-08 16:41:15 +08:00
parent ce49dce8c6
commit e1b372c33b
13 changed files with 19 additions and 37 deletions

View File

@ -27,8 +27,6 @@
"@certd/pipeline": "^1.20.2",
"@certd/plugin-cert": "^1.20.2",
"@certd/plugin-util": "^1.20.2",
"@midwayjs/core": "^3.0.0",
"@midwayjs/decorator": "^3.0.0",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",

View File

@ -26,8 +26,6 @@
"@alicloud/cs20151215": "^3.0.3",
"@alicloud/openapi-client": "^0.4.0",
"@alicloud/pop-core": "^1.7.10",
"@midwayjs/core": "^3.0.0",
"@midwayjs/decorator": "^3.0.0",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",

View File

@ -25,8 +25,6 @@
"@alicloud/cs20151215": "^3.0.3",
"@alicloud/openapi-client": "^0.4.0",
"@alicloud/pop-core": "^1.7.10",
"@midwayjs/core": "^3.0.0",
"@midwayjs/decorator": "^3.0.0",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",

View File

@ -30,8 +30,6 @@
"@alicloud/cs20151215": "^3.0.3",
"@alicloud/openapi-client": "^0.4.0",
"@alicloud/pop-core": "^1.7.10",
"@midwayjs/core": "^3.0.0",
"@midwayjs/decorator": "^3.0.0",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",

View File

@ -26,8 +26,6 @@
"@alicloud/cs20151215": "^3.0.3",
"@alicloud/openapi-client": "^0.4.0",
"@alicloud/pop-core": "^1.7.10",
"@midwayjs/core": "^3.0.0",
"@midwayjs/decorator": "^3.0.0",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",

View File

@ -30,12 +30,9 @@
"@fast-crud/fast-extends": "^1.20.1",
"@fast-crud/ui-antdv": "^1.20.1",
"@fast-crud/ui-interface": "^1.20.1",
"@iconify/iconify": "^3.1.1",
"@iconify/json": "^2.2.98",
"@iconify/vue": "^4.1.1",
"@purge-icons/generated": "^0.9.0",
"@soerenmartius/vue3-clipboard": "^0.1.2",
"ant-design-vue": "^3.2.20",
"ant-design-vue": "3.2.20",
"axios": "^1.3.4",
"axios-mock-adapter": "^1.21.2",
"base64-js": "^1.5.1",

View File

@ -1,2 +1,2 @@
// import "@iconify/iconify";
import "@purge-icons/generated";
// import "@purge-icons/generated";

View File

@ -1,5 +1,5 @@
<template>
<a-drawer v-model:visible="notificationDrawerVisible" placement="right" :closable="true" width="600px" class="pi-notification-form" :after-visible-change="notificationDrawerOnAfterVisibleChange">
<a-drawer v-model:visible="notificationDrawerVisible" placement="right" :closable="true" width="600px" class="pi-notification-form" @after-visible-change="notificationDrawerOnAfterVisibleChange">
<template #title>
编辑触发器
<a-button v-if="mode === 'edit'" @click="notificationDelete()">

View File

@ -1,5 +1,5 @@
<template>
<a-drawer v-model:visible="stepDrawerVisible" placement="right" :closable="true" width="600px" :after-visible-change="stepDrawerOnAfterVisibleChange">
<a-drawer v-model:visible="stepDrawerVisible" placement="right" :closable="true" width="600px" @after-visible-change="stepDrawerOnAfterVisibleChange">
<template #title>
编辑任务
<a-button v-if="editMode" @click="stepDelete()">

View File

@ -1,5 +1,5 @@
<template>
<a-drawer v-model:visible="taskDrawerVisible" placement="right" :closable="true" width="600px" class="pi-task-form" :after-visible-change="taskDrawerOnAfterVisibleChange">
<a-drawer v-model:visible="taskDrawerVisible" placement="right" :closable="true" width="600px" class="pi-task-form" @after-visible-change="taskDrawerOnAfterVisibleChange">
<template #title>
编辑任务
<a-button v-if="editMode" @click="taskDelete()">

View File

@ -5,7 +5,7 @@
:closable="true"
width="600px"
class="pi-trigger-form"
:after-visible-change="triggerDrawerOnAfterVisibleChange"
@after-visible-change="triggerDrawerOnAfterVisibleChange"
>
<template #title>
编辑触发器

View File

@ -43,12 +43,7 @@ export default ({ command, mode }) => {
vueJsx(),
vue(),
// 压缩build后的代码
viteCompression(),
PurgeIcons({
// iconSource: "local"
// remoteDataAPI: "https://gitee.com/fast-crud/collections-json/raw/master/json",
// includedCollections: ["ion"]
})
viteCompression()
//主题色替换
//...configThemePlugin(true),
// viteThemePlugin({

View File

@ -31,18 +31,18 @@
"@certd/plugin-tencent": "^1.20.2",
"@certd/plugin-util": "^1.20.2",
"@koa/cors": "^3.4.3",
"@midwayjs/bootstrap": "^3.9.1",
"@midwayjs/cache": "^3.9.0",
"@midwayjs/cli": "^1.3.21",
"@midwayjs/cli-plugin-build": "^2.0.14",
"@midwayjs/core": "^3.9.0",
"@midwayjs/decorator": "^3.9.0",
"@midwayjs/i18n": "^3.9.0",
"@midwayjs/koa": "^3.9.0",
"@midwayjs/logger": "^2.17.0",
"@midwayjs/static-file": "^3.11.6",
"@midwayjs/typeorm": "^3.9.5",
"@midwayjs/validate": "^3.9.0",
"@midwayjs/bootstrap": "^3.15.0",
"@midwayjs/cache": "^3.14.0",
"@midwayjs/cli": "^2.1.1",
"@midwayjs/cli-plugin-build": "^2.1.0",
"@midwayjs/core": "^3.15.0",
"@midwayjs/decorator": "^3.15.0",
"@midwayjs/i18n": "^3.15.0",
"@midwayjs/koa": "^3.15.0",
"@midwayjs/logger": "^3.3.0",
"@midwayjs/static-file": "^3.15.0",
"@midwayjs/typeorm": "^3.15.0",
"@midwayjs/validate": "^3.15.0",
"cache-manager": "^3.6.3",
"dayjs": "^1.11.7",
"glob": "^7.2.3",