cxmo 1 年之前
父节点
当前提交
adad6a655d
共有 1 个文件被更改,包括 27 次插入3 次删除
  1. 27 3
      src/views/update/Index.vue

+ 27 - 3
src/views/update/Index.vue

@@ -2,11 +2,35 @@
 </script>
 
 <template>
-    <div>
-        update 
+    <div class="update-log-wrap">
+        <div class="left side">
+            <div class="log-title"><strong>更新日志</strong></div>
+           <ul class="log-list">
+                <li>2023年6月</li>
+                <li>2023年5月</li>
+                <li>2023年4月</li>
+                <li>2023年3月</li>
+           </ul>
+        </div>
+        <div class="right side">bbb</div>
     </div>
 </template>
 
 <style scoped lang="scss">
-
+.update-log-wrap{
+    width:100%;
+    height:calc(100vh - 60px);
+    display: flex;
+    *{
+        box-sizing: border-box;
+    }
+    .left{
+        width:300px;
+        border-right: 1px solid #DCDFE6;
+        padding:30px;
+    }
+    .right{
+        flex: 1;
+    }
+}
 </style>