code: change some file names

This commit is contained in:
ShawnPhang 2023-09-11 23:42:06 +08:00
parent b221cbb522
commit 1f3bb8be8a
7 changed files with 14 additions and 14 deletions

View File

@ -11,7 +11,7 @@
<script lang="ts"> <script lang="ts">
import { defineComponent } from 'vue' import { defineComponent } from 'vue'
import { mapGetters, mapActions } from 'vuex' import { mapGetters, mapActions } from 'vuex'
import { widgetMenu, pageMenu, menuList } from './rc-menu-data' import { widgetMenu, pageMenu, menuList } from './rcMenuData'
import { getTarget } from '@/common/methods/target' import { getTarget } from '@/common/methods/target'
export default defineComponent({ export default defineComponent({

View File

@ -3,7 +3,7 @@
* @Date: 2023-09-07 22:56:09 * @Date: 2023-09-07 22:56:09
* @Description: * @Description:
* @LastEditors: ShawnPhang <https://m.palxp.cn> * @LastEditors: ShawnPhang <https://m.palxp.cn>
* @LastEditTime: 2023-09-07 23:32:50 * @LastEditTime: 2023-09-11 23:29:43
*/ */
// const prefix = import.meta.env // const prefix = import.meta.env
const prefix = process.env const prefix = process.env
@ -15,7 +15,7 @@ export default {
BASE_URL: isDev ? '/' : './', BASE_URL: isDev ? '/' : './',
VERSION: '1.1.0', VERSION: '1.1.0',
APP_NAME: '迅排设计', APP_NAME: '迅排设计',
COPYRIGHT: 'ShawnPhang - Palxp.com', COPYRIGHT: 'ShawnPhang - Palxp.cn',
// API_URL: isDev ? 'http://localhost:9998' : '${API}', // API_URL: isDev ? 'http://localhost:9998' : '${API}',
API_URL: 'https://www.palxp.cn:8887', API_URL: 'https://www.palxp.cn:8887',
SCREEN_URL: isDev ? 'http://localhost:7001' : '${SCREEN_URL}', SCREEN_URL: isDev ? 'http://localhost:7001' : '${SCREEN_URL}',

View File

@ -2,8 +2,8 @@
* @Author: ShawnPhang * @Author: ShawnPhang
* @Date: 2021-08-01 14:12:08 * @Date: 2021-08-01 14:12:08
* @Description: mixin形式放入views/index.vue中 * @Description: mixin形式放入views/index.vue中
* @LastEditors: ShawnPhang * @LastEditors: ShawnPhang <https://m.palxp.cn>
* @LastEditTime: 2022-04-07 16:33:02 * @LastEditTime: 2023-09-11 23:37:26
*/ */
import store from '@/store' import store from '@/store'
const _this: any = {} const _this: any = {}
@ -12,8 +12,8 @@ _this.dHistoryParams = store.getters.dHistoryParams
// _this.dPage = store.getters.dPage // _this.dPage = store.getters.dPage
// _this.handleHistory = store.dispatch.ha // _this.handleHistory = store.dispatch.ha
import keyCodeOptions from './methods/KeyCodeOptions' import keyCodeOptions from './methods/keyCodeOptions'
import dealWithCtrl from './methods/DealWithCtrl' import dealWithCtrl from './methods/dealWithCtrl'
const ignoreNode = ['INPUT', 'TEXTAREA'] const ignoreNode = ['INPUT', 'TEXTAREA']

View File

@ -2,14 +2,14 @@
* @Author: ShawnPhang * @Author: ShawnPhang
* @Date: 2021-08-19 18:43:22 * @Date: 2021-08-19 18:43:22
* @Description: Router Enter * @Description: Router Enter
* @LastEditors: ShawnPhang * @LastEditors: ShawnPhang <https://m.palxp.cn>
* @LastEditTime: 2022-02-11 15:59:31 * @LastEditTime: 2023-09-11 23:32:52
*/ */
import { createRouter, createWebHistory, createWebHashHistory, RouteRecordRaw } from 'vue-router' import { createRouter, createWebHistory, createWebHashHistory, RouteRecordRaw } from 'vue-router'
import config from '@/config' import config from '@/config'
import hook from './hook' import hook from './hook'
import Base from './Base' import Base from './base'
const routes: Array<RouteRecordRaw> = [...Base] const routes: Array<RouteRecordRaw> = [...Base]

View File

@ -40,7 +40,7 @@
import _config from '../config' import _config from '../config'
import { defineComponent, reactive, toRefs } from 'vue' import { defineComponent, reactive, toRefs } from 'vue'
import { mapActions, mapGetters } from 'vuex' import { mapActions, mapGetters } from 'vuex'
import RightClickMenu from '@/components/business/right-click-menu/rc-menu.vue' import RightClickMenu from '@/components/business/right-click-menu/RcMenu.vue'
import Moveable from '@/components/business/moveable/Moveable.vue' import Moveable from '@/components/business/moveable/Moveable.vue'
import designBoard from '@/components/modules/layout/designBoard.vue' import designBoard from '@/components/modules/layout/designBoard.vue'
import zoomControl from '@/components/modules/layout/zoomControl.vue' import zoomControl from '@/components/modules/layout/zoomControl.vue'

View File

@ -3,7 +3,7 @@
* @Date: 2022-01-10 14:57:53 * @Date: 2022-01-10 14:57:53
* @Description: Psd文件解析 * @Description: Psd文件解析
* @LastEditors: ShawnPhang <https://m.palxp.cn> * @LastEditors: ShawnPhang <https://m.palxp.cn>
* @LastEditTime: 2023-09-07 22:55:33 * @LastEditTime: 2023-09-11 23:39:06
--> -->
<template> <template>
<div id="page-design-index" ref="pageDesignIndex"> <div id="page-design-index" ref="pageDesignIndex">
@ -46,7 +46,7 @@ import { defineComponent, reactive, toRefs, getCurrentInstance, ComponentInterna
import { processPSD2Page } from '@/utils/plugins/psd' import { processPSD2Page } from '@/utils/plugins/psd'
import { useRoute } from 'vue-router' import { useRoute } from 'vue-router'
import { mapActions, mapGetters, useStore } from 'vuex' import { mapActions, mapGetters, useStore } from 'vuex'
import RightClickMenu from '@/components/business/right-click-menu/rc-menu.vue' import RightClickMenu from '@/components/business/right-click-menu/RcMenu.vue'
import Moveable from '@/components/business/moveable/Moveable.vue' import Moveable from '@/components/business/moveable/Moveable.vue'
import shortcuts from '@/mixins/shortcuts' import shortcuts from '@/mixins/shortcuts'
import wText from '@/components/modules/widgets/wText/wText.vue' import wText from '@/components/modules/widgets/wText/wText.vue'