lex il y a 3 ans
Parent
commit
2a7ba7b68e

+ 8 - 0
src/teacher/piano-room/account-recharge-timer/index.tsx

@@ -61,6 +61,14 @@ export default defineComponent({
       })
       })
     } catch {}
     } catch {}
   },
   },
+  unmounted() {
+    this.background = '#fff'
+    this.color = '#333'
+    postMessage({
+      api: 'backIconChange',
+      content: { iconStyle: 'black' }
+    })
+  },
   methods: {
   methods: {
     async _init() {
     async _init() {
       try {
       try {

+ 4 - 1
src/teacher/piano-room/class-arrangement/index.tsx

@@ -43,7 +43,10 @@ export default defineComponent({
             />
             />
           </div>
           </div>
           <div style={{ display: active.value === 2 ? 'block' : 'none' }}>
           <div style={{ display: active.value === 2 ? 'block' : 'none' }}>
-            <CreateClass onBack={() => active.value = 1} active={active.value} />
+            <CreateClass
+              onBack={() => (active.value = 1)}
+              active={active.value}
+            />
           </div>
           </div>
         </div>
         </div>
       )
       )