liushengqiang 2 年之前
父節點
當前提交
27178718a0

+ 6 - 0
src/page-orchestra/detail/index.module.less

@@ -17,6 +17,12 @@
     --header-height: 62px;
     background: var(--container-background);
 
+    .musicName {
+        font-size: 16px;
+        font-weight: bold;
+        text-align: center;
+    }
+
     .headHeight {
         position: relative;
         width: 100%;

+ 1 - 0
src/page-orchestra/detail/index.tsx

@@ -250,6 +250,7 @@ export default defineComponent({
 					style={{ ...fingerConfig.value.container, height: detailData.headerHide ? "100vh" : "" }}
 					class={[styles.container, !state.setting.displayCursor && "hideCursor"]}
 				>
+					{/* <div style={{display: detailData.headerHide ? 'none' : ''}} class={styles.musicName}>{state.examSongName}</div> */}
 					{/* 曲谱渲染 */}
 					{!detailData.isLoading && <MusicScore onRendered={handleRendered} />}
 					{/* 播放 */}

+ 1 - 1
src/page-orchestra/header-top/index.tsx

@@ -318,7 +318,7 @@ export default defineComponent({
 									}}
 								>
 									<img class={styles.iconBtn} src={icons["icon-zhuanpu"]} />
-									<span>转简谱</span>
+									<span>{ state.musicRenderType === 'staff' ? '转简谱' : '转五线谱'}</span>
 								</div>
 							),
 							default: () => <MusicType />,

+ 2 - 1
src/page-orchestra/header-top/title/index.module.less

@@ -1,7 +1,6 @@
 .container {
   width: 170px;
   height: 31px;
-  background: #fff;
   display: flex;
   align-items: center;
   border-radius: 18px;
@@ -10,6 +9,8 @@
   .noticeBar {
     flex: 1;
     padding: 0 6px;
+    font-weight: bold;
+    font-size: 18px;
   }
 }
 

+ 1 - 1
src/page-orchestra/header-top/title/index.tsx

@@ -25,7 +25,7 @@ export default defineComponent({
       <div class={styles.container}>
         <NoticeBar
           text={this.text}
-          color="#000"
+          color="#985131"
           class={styles.noticeBar}
           background="none"
         />