zs 2 weeks ago
parent
commit
e1ea376706

+ 1 - 1
index.html

@@ -4,7 +4,7 @@
     <meta charset="UTF-8">
     <link rel="icon" href="/favicon.ico">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>项目名</title>
+    <title>水投网站管理</title>
   </head>
   <body>
     <div id="app" class="app"></div>

BIN
public/favicon.ico


+ 5 - 3
src/router/index.js

@@ -5,6 +5,7 @@ export const Layout = () => import('@/layout/index.vue')
 import { routes as systemRoutes } from './modules/system'
 import { routes as userRoutes } from './modules/user'
 import { routes as questionRoutes } from './modules/question'
+import { routes as resultRoutes } from './modules/result'
 // 静态路由
 export const constantRoutes = [
   {
@@ -29,9 +30,6 @@ export const constantRoutes = [
     name: 'Layout',
     component: Layout,
     children: [
-      ...systemRoutes,
-      ...userRoutes,
-      ...questionRoutes,
       {
         path: '/',
         name: 'home',
@@ -43,6 +41,10 @@ export const constantRoutes = [
         },
         component: () => import('@/views/home/index.vue')
       },
+      ...systemRoutes,
+      ...userRoutes,
+      ...questionRoutes,
+      ...resultRoutes,
       {
         path: '401',
         component: () => import('@/views/error-page/401.vue'),

+ 13 - 0
src/router/modules/result.js

@@ -0,0 +1,13 @@
+export const routes = [
+  {
+    path: '/result',
+    name: 'result',
+    meta: {
+      title: '满意度调查结果',
+      affix: true,
+      keepAlive: true,
+      alwaysShow: false
+    },
+    component: () => import('@/views/result/index.vue')
+  }
+]

+ 11 - 0
src/router/modules/system.js

@@ -52,6 +52,17 @@ export const routes = [
           alwaysShow: false
         },
         component: () => import('@/views/system/dict/index.vue')
+      },
+      {
+        path: '/system/setting',
+        name: 'system_setting',
+        meta: {
+          title: '满意度调查设置',
+          affix: true,
+          keepAlive: true,
+          alwaysShow: false
+        },
+        component: () => import('@/views/system/setting/index.vue')
       }
     ]
   }

+ 5 - 23
src/views/account/index.vue

@@ -3,34 +3,15 @@
     <el-row>
       <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
         <el-col :span="24" class="one">
-          <el-form
-            label-position="top"
-            ref="ruleFormRef"
-            :model="form"
-            :rules="rules"
-            label-width="80px"
-            class="form"
-          >
+          <el-form label-position="top" ref="ruleFormRef" :model="form" :rules="rules" label-width="80px" class="form">
             <el-form-item label="新密码" prop="password">
-              <el-input
-                prefix-icon="el-icon-lock"
-                v-model="form.password"
-                type="password"
-                show-password
-                placeholder="请输入新密码"
-              />
+              <el-input :prefix-icon="Lock" v-model="form.password" type="password" show-password placeholder="请输入新密码" />
             </el-form-item>
             <el-form-item label="确认密码" prop="refpassword">
-              <el-input
-                prefix-icon="el-icon-lock"
-                v-model="form.refpassword"
-                type="password"
-                show-password
-                placeholder="请再次确认输入密码"
-              />
+              <el-input :prefix-icon="Lock" v-model="form.refpassword" type="password" show-password placeholder="请再次确认输入密码" />
             </el-form-item>
             <el-form-item>
-              <el-button type="primary" size="mini" @click="toSubmit">修改密码</el-button>
+              <el-button type="primary" @click="toSubmit">修改密码</el-button>
             </el-form-item>
           </el-form>
         </el-col>
@@ -40,6 +21,7 @@
 </template>
 
 <script setup>
+import { Lock } from '@element-plus/icons-vue'
 import { LoginStore } from '@/store/api/login'
 const store = LoginStore()
 import { UserStore } from '@/store/user'

+ 2 - 12
src/views/home/index.vue

@@ -10,21 +10,11 @@
                   :value="needDealSugNum"
                   :value-style="{
                     color: needDealSugNum > 0 ? '#ff0000' : '#00ff00',
-                    'font-size': '50px',
+                    'font-size': '50px'
                   }"
                 >
                   <template #title>
-                    <div
-                      style="
-                        display: inline-flex;
-                        align-items: center;
-                        font-size: 35px;
-                        font-weight: 700;
-                        line-height:12vh
-                      "
-                    >
-                      未解决的投诉与建议
-                    </div>
+                    <div style="display: inline-flex; align-items: center; font-size: 35px; font-weight: 700; line-height: 12vh">未解决的投诉与建议</div>
                   </template>
                 </el-statistic>
               </el-card>

+ 6 - 39
src/views/question/index.vue

@@ -1,11 +1,6 @@
 <template>
   <div class="main animate__animated animate__backInRight" v-loading="loading">
-    <custom-search-bar
-      :fields="fields.filter((f) => f.isSearch)"
-      v-model="searchForm"
-      @search="search"
-      @reset="toReset"
-    >
+    <custom-search-bar :fields="fields.filter((f) => f.isSearch)" v-model="searchForm" @search="search" @reset="toReset">
       <template #type>
         <el-option value="1" label="投诉反馈"></el-option>
         <el-option value="2" label="意见建议"></el-option>
@@ -16,51 +11,25 @@
         <el-option value="1" label="已处理"></el-option>
       </template>
     </custom-search-bar>
-    <custom-button-bar :fields="buttonFields" @add="toAdd"></custom-button-bar>
-    <custom-table
-      :data="data"
-      :fields="fields"
-      @query="search"
-      :total="total"
-      :opera="opera"
-      @view="toView"
-    >
+    <custom-table :data="data" :fields="fields" @query="search" :total="total" :opera="opera" @view="toView">
       <template #is_use="{ row }">
         <el-tag v-if="row.is_use == '0'" type="success">启用</el-tag>
         <el-tag v-else type="info">禁用</el-tag>
       </template>
     </custom-table>
-    <el-dialog
-      v-model="dialog.show"
-      :title="dialog.title"
-      :destroy-on-close="false"
-      @close="toClose"
-      :top="dialog.top"
-    >
+    <el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose" :top="dialog.top">
       <el-row>
         <el-col :span="24" v-if="dialog.type == '1'">
           <el-row>
             <el-col :span="24">
               <el-descriptions :column="3" :size="size" border>
-                <el-descriptions-item
-                  v-for="i in questionViewConfig()"
-                  :label="i.label"
-                  :span="i.span"
-                  label-width="20px"
-                >
+                <el-descriptions-item v-for="i in questionViewConfig()" :label="i.label" :span="i.span" label-width="20px">
                   <div class="desc_content">{{ i.value }}</div>
                 </el-descriptions-item>
               </el-descriptions>
             </el-col>
             <el-col :span="24" style="margin-top: 20px">
-              <custom-form
-                v-if="form.deal_status === '0'"
-                v-model="form"
-                :fields="replyFields"
-                @save="toSave"
-                submitText="标记处理"
-              >
-              </custom-form>
+              <custom-form v-if="form.deal_status === '0'" v-model="form" :fields="replyFields" @save="toSave" submitText="标记处理"> </custom-form>
             </el-col>
           </el-row>
         </el-col>
@@ -73,7 +42,6 @@
 const $checkRes = inject('$checkRes')
 import dayjs from 'dayjs'
 import { cloneDeep, get } from 'lodash-es'
-const { t } = useI18n()
 // 接口
 import { QuestionStore } from '@/store/api/question'
 const store = QuestionStore()
@@ -101,7 +69,6 @@ const getDealStatus = (data) => {
   return data === '0' ? '未处理' : '已处理'
 }
 const opera = [{ label: '查看', method: 'view' }]
-const buttonFields = [{ label: t('common.add'), method: 'add' }]
 let skip = 0
 let limit = inject('limit')
 const total = ref(20)
@@ -137,7 +104,7 @@ const questionViewConfig = () => {
     { label: '地址', value: get(form, 'value.address'), span: 3 },
     { label: '反馈详情', value: get(form, 'value.description'), span: 3 },
     { label: '处理状态', value: getDealStatus(get(form, 'value.deal_status')) },
-    { label: '处理时间', value: get(form, 'value.deal_time'), span: 3  },
+    { label: '处理时间', value: get(form, 'value.deal_time'), span: 3 },
     { label: '处理反馈', value: get(form, 'value.deal_desc'), span: 3 }
   ]
 }

+ 9 - 0
src/views/result/index.vue

@@ -0,0 +1,9 @@
+<template>
+  <div class="main animate__animated animate__backInRight" v-loading="loading">满意度调查结果</div>
+</template>
+
+<script setup>
+// 加载中
+const loading = ref(false)
+</script>
+<style scoped></style>

+ 1 - 1
src/views/system/menus/index.vue

@@ -40,7 +40,7 @@ onMounted(async () => {
 })
 const searchOther = async () => {
   const result = await dictDataStore.query({ code: 'icon', is_use: '0' })
-  if ($checkRes(result)) iconList.value = result.data
+  if ($checkRes(result)) iconList.value = result.data.data
 }
 // #region 接口函数
 const search = async () => {

+ 2 - 5
src/views/system/menus/parts/menu-table.vue

@@ -23,11 +23,8 @@
       <el-table-column align="center" label="备注" prop="remark" width="100"> </el-table-column>
       <el-table-column align="center" :label="$t('common.opera')">
         <template #default="{ row }">
-          <el-link :underline="false" type="primary" size="mini" @click="toUpdate(row)" style="margin-right: 10px">{{
-            $t('common.update') }}</el-link>
-          <el-link :underline="false" type="primary" size="mini" @click="toAddNext(row)" style="margin-right: 10px">
-            添加下一级
-          </el-link>
+          <el-link :underline="false" type="primary" size="mini" @click="toUpdate(row)" style="margin-right: 10px">{{ $t('common.update') }}</el-link>
+          <el-link :underline="false" type="primary" size="mini" @click="toAddNext(row)" style="margin-right: 10px"> 添加下一级 </el-link>
           <el-link v-if="row.is_default !== '0'" :underline="false" type="danger" size="mini" @click="toDelete(row)">
             {{ $t('common.delete') }}
           </el-link>

+ 9 - 0
src/views/system/setting/index.vue

@@ -0,0 +1,9 @@
+<template>
+  <div class="main animate__animated animate__backInRight" v-loading="loading">满意度调查设置</div>
+</template>
+
+<script setup>
+// 加载中
+const loading = ref(false)
+</script>
+<style scoped></style>