huangbin 4 лет назад
Родитель
Сommit
4dc5189423

+ 16 - 13
src/assets/styles/mixin.less

@@ -188,7 +188,7 @@
     .ant-select-item {
         color:@m-grey1;
     }
-     
+
     .ant-select-item-option-active,.ant-select-item-option-selected,.ant-select-item-option-hover {
         background: @m-blue0;
         color: @m-white1;
@@ -228,7 +228,7 @@
                     color: @m-white1;
                 }
             }
-            tr.ant-table-expanded-row:hover { //tr.ant-table-expanded-row, 
+            tr.ant-table-expanded-row:hover { //tr.ant-table-expanded-row,
                 td {
                     background-color: @m-blue3;
                 }
@@ -297,7 +297,7 @@
                     overflow: hidden;
                 }
             }
-            tr.ant-table-expanded-row:hover { //tr.ant-table-expanded-row, 
+            tr.ant-table-expanded-row:hover { //tr.ant-table-expanded-row,
                 td {
                     background-color: @m-blue3;
                 }
@@ -365,7 +365,7 @@
                     overflow: hidden;
                 }
             }
-            tr.ant-table-expanded-row:hover { //tr.ant-table-expanded-row, 
+            tr.ant-table-expanded-row:hover { //tr.ant-table-expanded-row,
                 td {
                     background-color: @m-blue3;
                 }
@@ -659,8 +659,8 @@
         .ant-select-selection-placeholder {
             color: @m-grey10;
         }
-        
-    } 
+
+    }
     .ant-select-arrow {
         right: 8px;
         color: #3A87F7 !important;
@@ -690,8 +690,8 @@
         .ant-select-selection-placeholder {
             color: @m-grey10;
         }
-        
-    } 
+
+    }
     .ant-select-arrow {
         right: 8px;
         color: @m-blue0;
@@ -848,6 +848,9 @@
 .mr10 {
     margin-right: 10px;
 }
+.red {
+    color: @m-red0;
+}
 .grey {
     color: @m-grey2;
 }
@@ -1081,8 +1084,8 @@
         line-height: 30px;
         border: 0;
         color: @m-white1;
-        
-        
+
+
     }
     .ant-calendar-picker-icon {
         color: @m-grey1;
@@ -1148,7 +1151,7 @@
                             color: @m-grey1;
                         }
                     }
-                    
+
                     .ant-calendar-body {
                         border-top-color: @m-grey1;
                         .ant-calendar-column-header-inner {
@@ -1168,7 +1171,7 @@
                         .ant-calendar-last-day-of-month,.ant-calendar-next-month-btn-day {
                             .ant-calendar-date {
                                 color: @m-white1;
-                                
+
                             }
                         }
                         .ant-calendar-disabled-cell {
@@ -1194,7 +1197,7 @@
                     color: @m-white1;
                 }
             }
-            
+
         }
         .ant-calendar-footer {
             border-top-color: @m-grey1;

+ 0 - 1
src/services/go/ermcp/qhj/index.ts

@@ -107,7 +107,6 @@ export function queryContractLog(param: QueryContractLogReq): Promise<QueryContr
  */
 export function queryParentAreaList(): Promise<QhjParentAreaList[]> {
     const userid = getUsrId()
-    debugger
     return commonSearch_go('/Qhj/QueryParentAreaList', { userid }).catch((err) => {
         throw new Error(`查询所属机构列表: ${err}`);
     });

+ 6 - 0
src/views/platinum/platinum_document_query/list/waiting/index.vue

@@ -20,6 +20,9 @@
         <template #userinfotype="{ record }">
           <a>{{ record.userinfotype === 1 ? "个人" : "企业" }}</a>
         </template>
+        <template #paylimitedtime="{ record }">
+          <a>{{ isOverTime(record.paylimitedtime) }}</a>
+        </template>
       </a-table>
     </contextMenu>
     <!-- <ControlModal :selectedRow="selectedRow" /> -->
@@ -32,6 +35,7 @@ import { getUserId } from '@/services/bus/account';
 import { queryTradePayOrder } from '@/services/go/ermcp/qhj';
 import { QhjPayOrder, QueryTradePayOrderReq } from '@/services/go/ermcp/qhj/interface';
 import Filter from './compoments/filter/index.vue';
+import moment from 'moment';
 // import ControlModal from './compoments/controlModal/index.vue';
 
 export default defineComponent({
@@ -61,6 +65,7 @@ export default defineComponent({
             };
             queryTable(queryTradePayOrder, param);
         }
+        const isOverTime = (value: string) => (moment().isAfter(moment(value)) ? '付款超时' : value);
         initData(() => {
             // 获取列表数据
             queryTable(queryTradePayOrder, { userid: getUserId(), payflag: '1,3,5' });
@@ -70,6 +75,7 @@ export default defineComponent({
 
         return {
             search,
+            isOverTime,
             columns,
             expandedRowKeys,
             selectedRow,