浏览代码

修改文案,更改需求

bill 2 年之前
父节点
当前提交
31f6727660
共有 5 个文件被更改,包括 10 次插入8 次删除
  1. 1 1
      index.html
  2. 1 1
      src/store/sys.ts
  3. 1 0
      src/style.scss
  4. 4 3
      src/views/merge/index.vue
  5. 3 3
      src/views/tagging/edit.vue

+ 1 - 1
index.html

@@ -4,7 +4,7 @@
     <meta charset="UTF-8" />
     <link rel="icon" type="image/svg+xml" href="/favicon.ico" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <title>融合平台</title>
+    <title>多元融合</title>
   </head>
   <body>
     <div id="app"></div>

+ 1 - 1
src/store/sys.ts

@@ -18,7 +18,7 @@ export const isEdit = computed(() => !!(mode.value & Flags.EDIT))
 export const isLogin = computed(() => !!(mode.value & Flags.LOGIN))
 export const isOld = computed(() => !(mode.value & Flags.NOW))
 export const isNow = computed(() => !!(mode.value & Flags.NOW))
-export const title = '融合平台'
+export const title = '多元融合'
 export const appEl = ref<HTMLDivElement | null>(null)
 
 let currentTempIndex = 0

+ 1 - 0
src/style.scss

@@ -33,6 +33,7 @@ h1, h2, h3, h4, h5, h6 {
 }
 a {
   color: var(--color-main-normal);
+  cursor: pointer;
 }
 p {
   margin: 0;

+ 4 - 3
src/views/merge/index.vue

@@ -7,6 +7,7 @@
       <ui-group-option label="等比缩放">
         <template #icon>
           <a class="set-prop" 
+            :class="{disabled: isOld}"
             @click="router.push({ 
               name: RoutesName.proportion, 
               params: { id: custom.currentModel!.id, save: '1' },
@@ -48,6 +49,7 @@
       <ui-group-option>
           <!-- :disabled="currentItem"  -->
         <ui-button 
+          :class="{disabled: isOld}"
           @click="router.push({ 
             name: RoutesName.registration, 
             params: {id: custom.currentModel!.id, save: '1' } 
@@ -62,9 +64,9 @@
 </template>
 
 <script lang="ts" setup>
-import { RoutesName, router, currentMeta } from '@/router'
+import { RoutesName, router } from '@/router'
 import { RightPano } from '@/layout'
-import { autoSaveFuseModels, defaultFuseModelAttrs } from '@/store'
+import { autoSaveFuseModels, defaultFuseModelAttrs, isOld } from '@/store'
 import { togetherCallback } from '@/utils'
 import { getSceneModel, modelRange } from '@/sdk'
 import { useViewStack, useActive } from '@/hook'
@@ -111,7 +113,6 @@ const reset = async () => {
 }
 
 useViewStack(() => togetherCallback([
-  showLeftCtrlPanoStack.push(ref(false)),
   showLeftPanoStack.push(ref(true)),
   modelsChangeStoreStack.push(ref(true)),
   () => currentItem.value = null

+ 3 - 3
src/views/tagging/edit.vue

@@ -84,10 +84,10 @@
             </template>
         </ui-input>
         <div class="edit-hot" >
-          <span @click="submitHandler" class="fun-ctrl">
-            <ui-icon type="edit" />
+          <a @click="submitHandler">
+            <ui-icon type="nav-edit" />
             确定
-          </span>
+          </a>
         </div>
       </div>
   </div>