Handy_Cao пре 2 година
родитељ
комит
f48048f9be

+ 1 - 1
src/packages/pc/views/footer/capital/summary/index.vue

@@ -32,6 +32,6 @@ const tableColumns = shallowRef<Model.TableColumn[]>([
     { prop: 'unknown', label: '可用资金' },
     { prop: 'unknown', label: '冻结资金' },
     { prop: 'unknown', label: '占用资金' },
-    { prop: 'unknown', label: '状态' },
+    { prop: 'tradestatus', label: '状态' },
 ])
 </script>

+ 1 - 1
src/packages/pc/views/footer/performance/buy/index.vue

@@ -30,7 +30,7 @@ import AppTable from '@pc/components/base/table/index.vue'
 
 const { loading, dataList } = useRequest(queryPerformancePlan, {
     params: {
-        buyorsell: BuyOrSell.Sell,
+        buyorsell: BuyOrSell.Buy,
         status:'2'
     },
 })