Browse Source

删除多余合并

zhy 1 month ago
parent
commit
72da89ccb7

+ 1 - 1
.env.development

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 社会科学战线管理系统
+VUE_APP_TITLE = 平信办管理系统
 
 # 开发环境配置
 ENV = 'development'

+ 1 - 1
.env.embed

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 社会科学战线管理系统
+VUE_APP_TITLE = 平信办管理系统
 
 # 生产环境配置
 ENV = 'production'

+ 1 - 1
.env.production

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 社会科学战线管理系统
+VUE_APP_TITLE = 平信办管理系统
 
 # 生产环境配置
 ENV = 'production'

+ 1 - 1
.env.staging

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 社会科学战线管理系统
+VUE_APP_TITLE = 平信办管理系统
 
 NODE_ENV = production
 

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "ruoyi",
   "version": "3.8.3",
-  "description": "社会科学战线管理系统",
+  "description": "平信办管理系统",
   "author": "若依",
   "license": "MIT",
   "scripts": {

+ 0 - 46
src/api/journal/index.js

@@ -1,46 +0,0 @@
-
-import request from '@/utils/request'
-
-// 新增
-export function journalAdd(data, type) {
-  return request({
-    url: `/journal/${type}`,
-    method: 'post',
-    data
-  })
-}
-
-// 删除
-export function journalDel(type, id) {
-  return request({
-      url: `/journal/${type}/${id}`,
-      method: 'delete'
-  })
-}
-
-// 修改
-export function journalUpdate(data, type) {
-  return request({
-    url: `/journal/${type}`,
-    method: 'put',
-    data: data
-  })
-}
-
-// 查询List
-export function journalQuery(query, type, alias) {
-  return request({
-    url: `/journal/${type}${alias ? '/' + alias : ''}/list`,
-    method: 'get',
-    params: query
-  })
-}
-
-// 查询详情
-export function journalFetch(suffix, type) {
-  return request({
-    url: `/journal/${type}/${suffix}`,
-    method: 'get'
-  })
-}
-

+ 4 - 9
src/layout/components/Sidebar/Logo.vue

@@ -1,18 +1,13 @@
 <template>
-  <div class="sidebar-logo-container" :class="{ 'collapse': collapse }"
-    :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBackground : variables.menuLightBackground }">
+  <div class="sidebar-logo-container" :class="{'collapse':collapse}" :style="{ backgroundColor: sideTheme === 'theme-dark' ? variables.menuBackground : variables.menuLightBackground }">
     <transition name="sidebarLogoFade">
       <router-link v-if="collapse" key="collapse" class="sidebar-logo-link" to="/">
         <img v-if="logo" :src="logo" class="sidebar-logo" />
-        <h1 v-else class="sidebar-title"
-          :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{
-          title }} </h1>
+        <h1 v-else class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }} </h1>
       </router-link>
       <router-link v-else key="expand" class="sidebar-logo-link" to="/">
         <img v-if="logo" :src="logo" class="sidebar-logo" />
-        <h1 class="sidebar-title"
-          :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{
-          title }} </h1>
+        <h1 class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }} </h1>
       </router-link>
     </transition>
   </div>
@@ -40,7 +35,7 @@ export default {
   },
   data() {
     return {
-      title: '社会科学战线管理系统',
+      title: '平信办管理系统',
       logo: logoImg
     }
   }

+ 0 - 17
src/views/cms/postconfig/dictionary.js

@@ -1,17 +0,0 @@
-export default {
-    listFileds: [
-      { label: "标题", name: "title", filter: true, placeholder: "输入摘要" },
-      { label: "显示/隐藏", name: "visible", formater: 'dict:cms_show_hide' },
-    ],
-    formFiled: [
-      { label: "标题", name: "title" },
-      { label: "发布时间", name: "publish_time", formater: 'date', dateType: 'datetime' },
-      { label: "显示/隐藏", name: "visible", formater: 'switch', activeValue: '0', inactiveValue: '1' },
-      { label: "附件上传", name: "urls", formater: "fileUpload" },
-      { label: "内容", name: "content", formater: 'editor' },
-    ],
-    operation: [
-      { name: 'edit', label: '修改', icon: 'el-icon-edit' },
-      { name: 'delete', label: '删除', icon: 'el-icon-delete' }
-    ]
-  };

+ 0 - 32
src/views/cms/termconfig/journal.js

@@ -1,32 +0,0 @@
-export default {
-    listFileds: [
-      { label: "名称", name: "name", filter: true, placeholder: "输入名字" },
-      { label: "图标", name: "image", formater: "image" },
-      { label: "别名", name: "alias", filter: true, placeholder: "输入别名" },
-      { label: "类型", name: "type", placeholder: "选择类型", formater: "dict:journal_type" },
-      { label: "排序", name: "number" }
-    ],
-    formFiled: [
-      { label: "图标", name: "image", formater: "selectFile" },
-      { label: "名称", name: "name", placeholder: "输入名字" },
-      { label: "别名", name: "alias", placeholder: "输入别名" },
-      { label: "类型", name: "type", placeholder: "选择类型", formater: 'dict:journal_type' },
-      { label: "排序", name: "number", formater: "number" },
-      { label: "显示/隐藏", name: "visible", formater: 'switch', activeValue: '0', inactiveValue: '1' },
-      { label: "描述", name: "description", placeholder: "输入描述", formater: "textarea" },
-    ],
-    operation: [
-      { name: 'itemadd', label: '新增', icon: 'el-icon-plus' },
-      { name: 'edit', label: '修改', icon: 'el-icon-edit' },
-      { name: 'delete', label: '删除', icon: 'el-icon-delete' }
-    ],
-    options: {
-      'tree-props': {
-        hasChildren: 'hasChildren', children: 'children'
-      },
-      'default-expand-all': false,
-      'row-key': "termId",
-      treeId: 'termId'
-    },
-    pagination: false,
-  };

+ 1 - 1
src/views/login.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="login">
     <el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
-      <h3 class="title">社会科学战线后台管理系统</h3>
+      <h3 class="title">平信办后台管理系统</h3>
       <el-form-item prop="username">
         <el-input v-model="loginForm.username" type="text" auto-complete="off" placeholder="账号">
           <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />

+ 1 - 1
src/views/register.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="register">
     <el-form ref="registerForm" :model="registerForm" :rules="registerRules" class="register-form">
-      <h3 class="title">社会科学战线后台管理系统</h3>
+      <h3 class="title">平信办后台管理系统</h3>
       <el-form-item prop="username">
         <el-input v-model="registerForm.username" type="text" auto-complete="off" placeholder="账号">
           <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />

+ 1 - 1
vue.config.js

@@ -7,7 +7,7 @@ function resolve(dir) {
 
 const CompressionPlugin = require('compression-webpack-plugin')
 
-const name = process.env.VUE_APP_TITLE || '社会科学战线管理系统' // 网页标题
+const name = process.env.VUE_APP_TITLE || '平信办管理系统' // 网页标题
 
 const port = process.env.port || process.env.npm_config_port || 80 // 端口