lrf 1 month ago
parent
commit
589df89460

+ 3 - 0
.env.development

@@ -4,3 +4,6 @@ NODE_ENV=production
 VITE_REQUEST_BASE='/warter/front/v2/api'
 
 VITE_BASE_URL=""
+
+
+VITE_APP_ADMIN_BASE_API = '/warter/admin/api'

+ 1 - 0
.env.production

@@ -6,3 +6,4 @@ VITE_REQUEST_BASE='/warter/front/v2/api'
 
 VITE_BASE_URL=""
 
+VITE_APP_ADMIN_BASE_API = '/warter/admin/api'

+ 3 - 0
components.d.ts

@@ -9,7 +9,10 @@ declare module 'vue' {
   export interface GlobalComponents {
     DividerIndex: typeof import('./src/components/windows/dividerIndex.vue')['default']
     ElButton: typeof import('element-plus/es')['ElButton']
+    ElCarousel: typeof import('element-plus/es')['ElCarousel']
+    ElCarouselItem: typeof import('element-plus/es')['ElCarouselItem']
     ElCol: typeof import('element-plus/es')['ElCol']
+    ElDialog: typeof import('element-plus/es')['ElDialog']
     ElForm: typeof import('element-plus/es')['ElForm']
     ElFormItem: typeof import('element-plus/es')['ElFormItem']
     ElIcon: typeof import('element-plus/es')['ElIcon']

BIN
public/logo.png


BIN
public/oldlogo.png


BIN
shuitou.zip


+ 7 - 0
src/api/config.ts

@@ -0,0 +1,7 @@
+import { AxiosWrapper } from './axios-wrapper.js'
+const axios = new AxiosWrapper({ baseUrl: import.meta.env.VITE_APP_ADMIN_BASE_API });
+
+export const getConfig = async () => {
+  const result = await axios.$get(`/config`)
+  return result
+} 

BIN
src/assets/SourceHanSansCN-Normal.otf


+ 4 - 4
src/assets/font.css

@@ -1,12 +1,12 @@
 @font-face {
-  font-family: 'PingFangSC-Regular';
-  src: url('./PingFangSC-Regular.woff') format('truetype');
+  font-family: 'shs';
+  src: url('./SourceHanSansCN-Normal.otf') format('truetype');
   font-weight: normal;
   font-style: normal;
 }
 body {
-  font-family: 'PingFangSC-Regular', sans-serif;
+  font-family: 'shs';
 }
 :root {
-  font-family: 'PingFangSC-Regular', sans-serif;
+  font-family: 'shs';
 }

+ 1 - 1
src/views/win/popularwillParts/formIndex.vue

@@ -171,7 +171,7 @@ const toSubmit = async () => {
 const toCreateQuestion = async () => {
   const result = await myzj.questionCreate(form.value)
   if (result.errcode == 0) {
-    ElMessageBox.alert('添加成功', '提示', {
+    ElMessageBox.alert('提交成功', '提示', {
       confirmButtonText: '确定',
       callback: () => {
         resetForm()

+ 34 - 19
src/views/windowsIndex.vue

@@ -31,6 +31,18 @@
       </div>
     </el-col>
   </el-row>
+  <el-dialog
+    v-model="dialog"
+    width="80vw"
+    :close-on-click-modal="false"
+    :close-on-press-escape="false"
+  >
+    <el-carousel height="70vh" motion-blur>
+      <el-carousel-item v-for="item in imgs" :key="item">
+        <el-image style="width: 80vw; height: 70vh" :src="item.uri" fit="scale-down"></el-image>
+      </el-carousel-item>
+    </el-carousel>
+  </el-dialog>
 </template>
 
 <script setup lang="ts">
@@ -52,28 +64,31 @@ import conductingBusiness from './winParts/conductingBusiness.vue'
 import popularWill from './winParts/popularWill.vue'
 /* 底部信息 */
 import footIndex from '../components/windows/footIndex.vue'
-
-
+import { getConfig } from '@/api/config'
+import { get } from 'lodash-es'
 // 获取滚动条y轴坐标
-const { y } = useWindowScroll()
-
-function useWindowScroll() {
-  const y = ref(0);
-
-  const handleScroll = () => {
-    y.value = window.scrollY;
-  };
-
-  onMounted(() => {
-    window.addEventListener('scroll', handleScroll);
-  });
+const y = ref(0)
+const handleScroll = () => {
+  y.value = window.scrollY
+}
+const imgs: any = ref([])
+const dialog = ref(false)
 
-  onUnmounted(() => {
-    window.removeEventListener('scroll', handleScroll);
-  });
+onMounted(async () => {
+  window.addEventListener('scroll', handleScroll)
+  const res = await getConfig()
+  if (res.errcode == '0') {
+    const is_use = get(res, 'data.use_index_img')
+    if (is_use === '1') return
+    const imgList = get(res, 'data.index_img', [])
+    imgs.value = imgList
+    if (imgList.length > 0) dialog.value = true
+  }
+})
 
-  return { y };
-}
+onUnmounted(() => {
+  window.removeEventListener('scroll', handleScroll)
+})
 </script>
 <style scoped lang="scss">
 .main {

+ 5 - 0
vite.config.ts

@@ -54,6 +54,11 @@ export default defineConfig(({ command, mode }) => {
           changeOrigin: true,
           // rewrite: (path) => path.replace(new RegExp(`^/api`), ''),
         },
+        [env.VITE_APP_ADMIN_BASE_API]: {
+          target: 'http://127.0.0.1:9001',
+          ws: false,
+          changeOrigin: true,
+        }
       },
       // 为开发服务器配置 CORS。默认情况下,此选项处于启用状态,并允许任何源。
       // cors:false,