소스 검색

订单详情样式调整

hwb0 3 년 전
부모
커밋
a7f5e64cad
3개의 변경된 파일9개의 추가작업 그리고 11개의 파일을 삭제
  1. 2 0
      src/views/order/channel/detail.vue
  2. 2 0
      src/views/order/deliver/detail.vue
  3. 5 11
      src/views/order/userTicket/detail.vue

+ 2 - 0
src/views/order/channel/detail.vue

@@ -284,6 +284,7 @@ export default {
         margin-bottom: 10px;
 
         .title {
+          line-height: 22px;
           width: 100px;
         }
 
@@ -293,6 +294,7 @@ export default {
         }
 
         .txt {
+          line-height: 22px;
           width: 200px;
         }
       }

+ 2 - 0
src/views/order/deliver/detail.vue

@@ -312,9 +312,11 @@ export default {
           display: flex;
         }
         .tit {
+          line-height: 22px;
           width: 100px;
         }
         .txt {
+          line-height: 22px;
           width: 200px;
         }
         .edit-express{

+ 5 - 11
src/views/order/userTicket/detail.vue

@@ -90,9 +90,9 @@
         </tr>
         <tr v-for="(item, index) in info.ticketDetailList" :key="index">
           <td>{{ item.serialNo }}</td>
-           <td>{{ item.status && JSON.parse(item.status).desc }}</td>
-           <td>{{ item.prizeGrade }}</td>
-           <td>{{ item.prizeTitle }}</td>
+          <td>{{ item.status && JSON.parse(item.status).desc }}</td>
+          <td>{{ item.prizeGrade }}</td>
+          <td>{{ item.prizeTitle }}</td>
         </tr>
       </table>
     </div>
@@ -142,15 +142,12 @@ export default {
         margin-bottom: 10px;
 
         .title {
+          line-height: 22px;
           width: 100px;
         }
 
-        .edit-express {
-          color: #409eff;
-          cursor: pointer;
-        }
-
         .txt {
+          line-height: 22px;
           width: 200px;
         }
       }
@@ -176,8 +173,5 @@ export default {
   td {
     text-align: center;
   }
-  .pd {
-    padding: 15px;
-  }
 }
 </style>