Browse Source

JLHWEB:
1、修复核价币种没显示问题

MY 3 ngày trước cách đây
mục cha
commit
68b245fb4d
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      JLHWEB/src/views/quote/mattressQuote/hooks/index.tsx

+ 3 - 0
JLHWEB/src/views/quote/mattressQuote/hooks/index.tsx

@@ -3485,6 +3485,9 @@ export const useHooks = (t?: any) => {
     {
       field: "moneyrate",
       title: "币种",
+      render: (scope: any) => {
+        return <>{scope.row.moneyrate > 1 ? "美元" : "人民币"}</>;
+      },
       basicinfo: {
         el: "select",
         editable: ALLOW_EDIT_STATE,