ZaiZai 2 жил өмнө
parent
commit
b1961ebf1f

+ 2 - 4
config/index.js

@@ -18,10 +18,8 @@ export default {
     },
     //正式环境
     baseApi: {
-        //api: 'http://47.110.251.215:8090/', //请求地址
-        //form: 'https://user.hcxxy.com/',    //表单地址
-        api: 'http://192.168.0.109:8090/',  //请求地址
-        form: 'http://192.168.0.109:5173/', //表单地址
+        api: 'http://47.110.251.215:8090/', //请求地址
+        form: 'https://user.hcxxy.com/',    //表单地址
         wss: 'wss://business.hcxxy.com/wss/websocket/', //长连接地址
     },
     //H5测试设置

+ 2 - 2
manifest.json

@@ -2,8 +2,8 @@
     "name" : "泓创数字工程",
     "appid" : "__UNI__A0B807E",
     "description" : "",
-    "versionName" : "2.0.1",
-    "versionCode" : 201,
+    "versionName" : "2.0.2",
+    "versionCode" : 202,
     "transformPx" : false,
     "networkTimeout" : {
         "request" : 300000,

+ 9 - 3
pages/data-fill/index.vue

@@ -10,9 +10,12 @@
             <scroll-view scroll-y class="hc-page-menu">
                 <template v-for="item in menuData">
                     <view class="hc-page-menu-item"
-                          :class="item.primaryKeyId === menuItem.primaryKeyId ? 'cur': ''"
                           @click="menuItemClick(item)"
-                    >{{ item.title }}
+                          :class="item.primaryKeyId === menuItem.primaryKeyId ? 'cur': ''"
+                    >
+                        <text :class="item.colorStatus === 2 ? 'text-blue-5':item.colorStatus === 3 ? 'text-orange-5': item.colorStatus === 4 ? 'text-green-5': ''">
+                            {{ item.title }}【{{ item.submitCounts ?? 0 }}】
+                        </text>
                     </view>
                 </template>
             </scroll-view>
@@ -21,7 +24,10 @@
                     <view class="hc-page-data-item"
                           :class="item.primaryKeyId === pageItem.primaryKeyId ? 'cur': ''"
                           @click="pageItemClick(item, index)"
-                    >{{ item.title }}
+                    >
+                        <text :class="item.colorStatus === 2 ? 'text-blue-5':item.colorStatus === 3 ? 'text-orange-5': item.colorStatus === 4 ? 'text-green-5': ''">
+                            {{ item.title }}【{{ item.submitCounts ?? 0 }}】
+                        </text>
                     </view>
                 </template>
             </scroll-view>

+ 2 - 2
style/data-fill/index.scoped.scss

@@ -18,7 +18,7 @@ page {
         border-right: 1px solid #ececed;
         .hc-page-menu-item {
             padding: 20rpx;
-            font-size: 28rpx;
+            font-size: 26rpx;
             color: #415058;
             &.cur {
                 background-color: #544e80;
@@ -31,7 +31,7 @@ page {
         flex: 1;
         .hc-page-data-item {
             padding: 20rpx 24rpx;
-            font-size: 28rpx;
+            font-size: 26rpx;
             color: #4f4f4f;
             font-weight: bold;
             &.cur {