|
@@ -239,3 +239,59 @@ uni-input {
|
|
|
* @/pages/xunJian/plan/components/siteDetails.vue
|
|
|
* @/pages/xunJian/plan/components/content.vue
|
|
|
*/
|
|
|
+
|
|
|
+//自写table表格样式-普通
|
|
|
+.tableType1 {
|
|
|
+ .u-row:nth-child(1) {
|
|
|
+ > .u-col {
|
|
|
+ background-color: #f7f7f7;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .u-row {
|
|
|
+ align-items: initial !important;
|
|
|
+ line-height: 28px;
|
|
|
+ border: 1px #e5e5e5 solid;
|
|
|
+ border-bottom: 0px;
|
|
|
+
|
|
|
+ > .u-col {
|
|
|
+ border-right: 1px #e5e5e5 solid;
|
|
|
+ }
|
|
|
+
|
|
|
+ > .u-col:last-child {
|
|
|
+ border-right: 0px #e5e5e5 solid;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .u-row:last-child {
|
|
|
+ .u-col {
|
|
|
+ border-bottom: 1px #e5e5e5 solid;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+//自写table表格样式-横向
|
|
|
+.tableType2 {
|
|
|
+ .u-row {
|
|
|
+ align-items: initial !important;
|
|
|
+ line-height: 28px;
|
|
|
+ border: 1px #e5e5e5 solid;
|
|
|
+ border-bottom: 0px;
|
|
|
+ background-color: #f7f7f7;
|
|
|
+
|
|
|
+ > .u-col {
|
|
|
+ border-right: 1px #e5e5e5 solid;
|
|
|
+ }
|
|
|
+
|
|
|
+ > .u-col:nth-child(even) {
|
|
|
+ background-color: #ffffff;
|
|
|
+ }
|
|
|
+
|
|
|
+ > .u-col:last-child {
|
|
|
+ border-right: 0px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .u-row:last-child {
|
|
|
+ border-bottom: 1px #e5e5e5 solid;
|
|
|
+ }
|
|
|
+}
|