YY vor 1 Jahr
Ursprung
Commit
d65f2aaa83

+ 4 - 4
src/components/common/interflow-1.vue

@@ -33,11 +33,8 @@ const toView = (e) => {
     flex-direction: row;
     flex-wrap: wrap;
     border-bottom: 1px dashed #ccc;
-    padding: 9px 0;
+    padding: 11px 0;
     .title {
-      overflow: hidden;
-      text-overflow: ellipsis;
-      white-space: nowrap;
       font-size: 16px;
       font-weight: 700;
       color: #333;
@@ -51,4 +48,7 @@ const toView = (e) => {
     }
   }
 }
+.list :last-child {
+  border-bottom: none;
+}
 </style>

+ 1 - 1
src/views/interflow/index.vue

@@ -81,7 +81,7 @@ const search = async () => {
     if (res.errcode == 0) {
       let columns: any = res.data[0];
       if (columns) {
-        const arr: IQueryResult = await newsMess.query({ skip: 0, limit: 11, column_id: columns._id });
+        const arr: IQueryResult = await newsMess.query({ skip: 0, limit: 10, column_id: columns._id });
         if (arr.errcode == 0) {
           if (val.site == 'kydt') kydtList.value = arr.data;
           if (val.site == 'xsjl') xsjlList.value = arr.data;

+ 1 - 1
src/views/universal/index.vue

@@ -81,7 +81,7 @@ const search = async () => {
     if (res.errcode == 0) {
       let columns: any = res.data[0];
       if (columns) {
-        const arr: IQueryResult = await newsMess.query({ skip: 0, limit: 11, column_id: columns._id });
+        const arr: IQueryResult = await newsMess.query({ skip: 0, limit: 10, column_id: columns._id });
         if (arr.errcode == 0) {
           if (val.site == 'kpcg') kpcgList.value = arr.data;
           if (val.site == 'kpty') kptyList.value = arr.data;