@leevan/jtui 2.0.36 → 2.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/examples/App.vue
CHANGED
|
@@ -560,7 +560,7 @@ $themes: (
|
|
|
560
560
|
@include linear('bdColor4');
|
|
561
561
|
}
|
|
562
562
|
.vxe-header--row{
|
|
563
|
-
background: linear-gradient(
|
|
563
|
+
background: linear-gradient(to right,#efeef0,#d0d3d6);
|
|
564
564
|
font-size: 12px;
|
|
565
565
|
}
|
|
566
566
|
.jt-table-class-only .vxe-header--column{
|
|
@@ -621,7 +621,7 @@ $themes: (
|
|
|
621
621
|
@include linear('bdColor4');
|
|
622
622
|
}
|
|
623
623
|
.vxe-header--row{
|
|
624
|
-
background: linear-gradient(
|
|
624
|
+
background: linear-gradient(to right,#f3fcfe,#d5dfe8);
|
|
625
625
|
font-size: 12px;
|
|
626
626
|
}
|
|
627
627
|
.vxe-header--column{
|
package/examples/scss/cover.scss
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
@include linear('bdColor4');
|
|
18
18
|
}
|
|
19
19
|
.vxe-header--row{
|
|
20
|
-
background: linear-gradient(
|
|
20
|
+
background: linear-gradient(to right,#efeef0,#d0d3d6);
|
|
21
21
|
font-size: 12px;
|
|
22
22
|
}
|
|
23
23
|
.jt-table-class-only .vxe-header--column{
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
@include linear('bdColor4');
|
|
79
79
|
}
|
|
80
80
|
.vxe-header--row{
|
|
81
|
-
background: linear-gradient(
|
|
81
|
+
background: linear-gradient(to right,#f3fcfe,#d5dfe8);
|
|
82
82
|
font-size: 12px;
|
|
83
83
|
}
|
|
84
84
|
.vxe-header--column{
|
|
@@ -132,12 +132,12 @@ import { data1 ,data0} from '../data2';
|
|
|
132
132
|
}
|
|
133
133
|
},
|
|
134
134
|
created(){
|
|
135
|
-
const res =
|
|
135
|
+
const res = data23();
|
|
136
136
|
console.log(res)
|
|
137
137
|
this.tableData[0].retjson = res[0].retjson;
|
|
138
138
|
},
|
|
139
139
|
mounted(){
|
|
140
|
-
const res =
|
|
140
|
+
const res = data23();
|
|
141
141
|
let timeId = setTimeout(()=>{
|
|
142
142
|
this.$refs.tablePtbg.loadData(res[0].DataArray);
|
|
143
143
|
clearTimeout(timeId);
|
package/package.json
CHANGED