瀏覽代碼

Update index.tsx

lex-xin 3 月之前
父節點
當前提交
1ffd638529
共有 1 個文件被更改,包括 14 次插入2 次删除
  1. 14 2
      src/teacher/statistics/practice-statistics-detail/index.tsx

+ 14 - 2
src/teacher/statistics/practice-statistics-detail/index.tsx

@@ -13,7 +13,7 @@ import TheSticky from '@/components/the-sticky'
 export default defineComponent({
   name: 'PracticeDetail',
   setup() {
-    const searchStatus = ref(false)
+    const searchStatus = ref(true)
     return () => (
       <div class={styles.practiceDetail}>
         <TheSticky position="top">
@@ -131,7 +131,19 @@ export default defineComponent({
           </div>
         </div>
 
-        <Popup v-model:show={searchStatus.value}></Popup>
+        <Popup v-model:show={searchStatus.value} closeable round>
+          <div class={styles.popupSection}>
+            <div class={styles.popupTitle}>筛选</div>
+
+            <div class={styles.popupSection}>
+              <div class={styles.title}>
+                <span>学员练习时长</span>
+              </div>
+
+              <div class={styles.timeCount}></div>
+            </div>
+          </div>
+        </Popup>
       </div>
     )
   }