dct 5 місяців тому
батько
коміт
c95b268df4

+ 2 - 2
src/pages/checkerManage/subProjectManage.vue

@@ -60,7 +60,7 @@
         </el-table-column>
         <el-table-column
           prop="scenicIds"
-          label="景">
+          label="景">
           <template slot-scope="scope">
             {{ getNameList(scope.row.scenicList) }}
           </template>
@@ -163,7 +163,7 @@
           </el-select>
         </el-form-item>
         <el-form-item
-          label="景"
+          label="景"
           v-if="currentItem.id"
           prop="scenicIds">
           <el-select

+ 9 - 1
src/pages/dashboard/dataTables/CheckStatistics.vue

@@ -96,5 +96,13 @@ export default {
 </script>
 
 <style lang="scss" scoped>
-
+.table-box {
+  .title {
+    color: $blue;
+    font-size: 16px;
+    height: 40px;
+    line-height: 40px;
+    border-bottom: 1px solid #eee;
+  }
+}
 </style>

+ 9 - 1
src/pages/dashboard/dataTables/OrderStatistics.vue

@@ -102,5 +102,13 @@ export default {
 </script>
 
 <style lang="scss" scoped>
-
+.table-box {
+  .title {
+    color: $blue;
+    font-size: 16px;
+    height: 40px;
+    line-height: 40px;
+    border-bottom: 1px solid #eee;
+  }
+}
 </style>

+ 1 - 5
src/pages/dashboard/index.vue

@@ -530,15 +530,11 @@ export default {
 
   .dashboard-panel {
     color: $blue;
-    border: 1px solid #e2e2e2;
-    border-radius: 3px;
 
     .panel-title {
       height: 40px;
-      padding-left: 20px;
       line-height: 40px;
-      background-color: #f4f4f4;
-      border-bottom: 1px solid #e2e2e2;
+      border-bottom: 1px solid #eee;
     }
 
     .panel-content {

+ 1 - 1
src/pages/sellManage/common/TicketList.vue

@@ -435,7 +435,7 @@ export default {
         return
       }
 
-      if (row.leftNums <= 0) {
+      if (row.leftNums === 0) {
         this.$message.error('该场次已售完')
         return
       }

+ 8 - 0
src/styles/element-ui.scss

@@ -133,6 +133,14 @@
     background: lighten($gray, 6%) !important;
   }
 
+  .el-table__row {
+    &.is-center {
+      text-align: center;
+    }
+    &.is-right {
+      text-align: right;
+    }
+  }
 }
 
 .el-button {