Просмотр исходного кода

:lipstick: 调整列表页操作按钮样式

zhanghe 6 лет назад
Родитель
Сommit
26027f325d
3 измененных файлов с 16 добавлено и 15 удалено
  1. 4 3
      src/index.less
  2. 6 6
      src/routes/Merchant/MerchantList.js
  3. 6 6
      src/routes/Resource/Video/VideoTableList.js

+ 4 - 3
src/index.less

@@ -72,25 +72,26 @@ body {
 
 // 自定义全局样式
 :global(.editBtn) {
-  margin-right: 10px;
   background: @primary-color !important;
   color: #fff !important;
 }
 :global(.delBtn) {
+  margin-left: 10px;
   background: #f5222d !important;
   color: #fff !important;
 }
 :global(.recBtn) {
+  margin-left: 10px;
   background: #13c2c2 !important;
   color: #fff !important;
 }
 :global(.depositBtn) {
-  margin-right: 10px;
+  margin-left: 10px;
   background: #a0d911 !important;
   color: #fff !important;
 }
 :global(.playBtn) {
-  margin-right: 10px;
+  margin-left: 10px;
   background: #36cfc9 !important;
   color: #fff !important;
 }

+ 6 - 6
src/routes/Merchant/MerchantList.js

@@ -85,6 +85,12 @@ export default class MerchantListPage extends Component {
           <Authorized authority="admin" noMatch={null}>
             <Button
               size="small"
+              className="editBtn"
+              onClick={() => this.handleEditOperation(item)}
+            >编辑
+            </Button>
+            <Button
+              size="small"
               className="depositBtn"
               onClick={() => this.handleDepositOperation(item)}
             >充值
@@ -92,12 +98,6 @@ export default class MerchantListPage extends Component {
           </Authorized>
           <Button
             size="small"
-            className="editBtn"
-            onClick={() => this.handleEditOperation(item)}
-          >编辑
-          </Button>
-          <Button
-            size="small"
             className="delBtn"
             onClick={() => this.handleDeleteOperation(item)}
           >删除

+ 6 - 6
src/routes/Resource/Video/VideoTableList.js

@@ -79,16 +79,16 @@ function VideoTableList({
         <Button
           size="small"
           type="primary"
-          className="playBtn"
-          onClick={() => onModalCreate(item)}
-        >播放
+          className="editBtn"
+          onClick={() => onUpdateClick(item)}
+        >编辑
         </Button>
         <Button
           size="small"
           type="primary"
-          className="editBtn"
-          onClick={() => onUpdateClick(item)}
-        >编辑
+          className="playBtn"
+          onClick={() => onModalCreate(item)}
+        >播放
         </Button>
       </div>
     );