li.shaoyi 6 miesięcy temu
rodzic
commit
ab3026d707

+ 2 - 2
oem/sjgj/config/appconfig.json

@@ -1,8 +1,8 @@
 {
   "appId": "com.muchinfo.sjgj",
   "appName": "纯金网结算中心",
-  "version": "1.0.10",
-  "versionCode": "100010",
+  "version": "1.0.12",
+  "versionCode": "100012",
   "apiUrl": "http://192.168.31.139:8080/cfg?key=test_139",
   "tradeChannel": "ws",
   "modules": [

+ 61 - 0
src/packages/sjgj/views/market/list/index.less

@@ -0,0 +1,61 @@
+.market {
+    &-header {
+        .app-statusbar {
+            height: 147px;
+            background-image: var(--header-bg);
+            background-repeat: no-repeat;
+            background-position: center top;
+            background-size: 100% auto;
+        }
+    }
+
+    &-title {
+        color: #999;
+        padding: 12px;
+    }
+
+    &-table {
+        width: 100%;
+        text-align: center;
+        background-color: #fff;
+
+        th {
+            color: #999;
+            font-weight: normal;
+            padding: 8px 5px;
+
+            &.title {
+                color: #999;
+                background-color: #f6f6f6;
+                padding: 12px;
+
+                div {
+                    display: flex;
+                    justify-content: space-between;
+                }
+            }
+        }
+
+        tr {
+            &:last-child {
+                td {
+                    border-bottom: 1px solid #eee;
+                }
+            }
+
+            td {
+                border-top: 1px solid #eee;
+                border-right: 1px solid #eee;
+                padding: 6px;
+
+                &:last-child {
+                    border-right: 0;
+                }
+
+                span {
+                    display: block;
+                }
+            }
+        }
+    }
+}

+ 1 - 1
src/packages/sjgj/views/market/list/index.vue

@@ -71,5 +71,5 @@ const topBanners = computed(() => banners.value.map((e) => e.imagepath))
 </script>
 
 <style lang="less">
-@import '../../../../sbyj/views/market/list/index.less';
+@import './index.less';
 </style>