Ver código fonte

Merge branch 'master' of http://47.101.159.18:3000/Muchinfo/MTP2.0_WEB

Zhou.xiaoning 4 anos atrás
pai
commit
1a7170d99d

+ 2 - 2
src/views/market/spot_trade/components/buy-sell-market/components/buy/index.vue

@@ -1,5 +1,5 @@
 <template>
-  <!-- 买大厅 -->
+  <!--  现货贸易 - 大厅 - 卖报价牌 -->
   <a-table :columns="handleColumn(columns)"
            :class="['buyHallTable', isBottom ? '' : 'buyHallTableHigh', tableList.length ? '' : 'noDataTable']"
            :scroll="{ x: '100%', y: isBottom ? 'calc(100vh- 470px)' : 'calc(100vh - 180px)' }"
@@ -20,7 +20,7 @@
                @click="openComponent" />
     </template>
     <template #username="{text, record }">
-      <span>{{record.userid}}{{text}}</span>
+      <span>{{record.userid + " "}}{{text}}</span>
     </template>
   </a-table>
   <component :is="componentId"

+ 2 - 2
src/views/market/spot_trade/components/buy-sell-market/components/sell/index.vue

@@ -1,5 +1,5 @@
 <template>
-  <!-- 卖大厅 -->
+  <!-- 现货贸易 - 买卖大厅 - 买报价牌 -->
   <a-table :columns="handleColumn(columns)"
            :class="['sellHallTable', isBottom ? '' : 'sellHallTableHigh', tableList.length ? '' : 'noDataTable']"
            :scroll="{ x: '100%', y: isBottom ? 'calc(100vh- 470px)' : 'calc(100vh - 180px)' }"
@@ -18,7 +18,7 @@
                @click="openComponent" />
     </template>
     <template #username="{text, record }">
-      <span>{{record.userid}}{{text}}</span>
+      <span>{{record.userid + " " }}{{text}}</span>
     </template>
   </a-table>
   <component :is="componentId"