Kaynağa Gözat

问题,样式修改

xujuanning 1 ay önce
ebeveyn
işleme
e08c9b5ea9

+ 2 - 2
src/views/IntegratedAlarm/safe/components/safecomponent.vue

@@ -25,7 +25,7 @@
       <el-table-column
         prop="tsName"
         label="时间"
-        width="120"
+        width="150"
         show-overflow-tooltip
         align="center"
       />
@@ -359,7 +359,7 @@ export default {
           let alarmList = [];
           this.alarmList = [];
           res.data.ls.forEach((ele) => {
-            ele.tsName = dayjs(ele.ts).format("MM-DD HH-mm-ss")
+            ele.tsName = dayjs(ele.ts).format("MM-DD HH:mm:ss")
             alarmList.push(ele);
           });
           alarmList.sort((a, b) => {

+ 1 - 1
src/views/economicsOperation/benchmarkingManagement/siteBenchmarking/index.vue

@@ -118,7 +118,7 @@
           </el-table-column>
           <el-table-column
             align="center"
-            width="95"
+            width="120"
             show-overflow-tooltip
             prop="date"
             label="日期"

+ 4 - 1
src/views/economicsOperation/stationAnalyse/angleAnalysis/components/current-scatter-chart.vue

@@ -397,6 +397,7 @@ export default {
 
     changeColor() {
       if (this.$store.state.theme) {
+        console.log(111)
         this.color = [
           "#67c23a",
           "rgb(242.5, 208.5, 157.5)",
@@ -440,6 +441,8 @@ export default {
           },
         ];
       } else {
+        console.log(222)
+
         this.color = [
           "#205081",
           "#e96767", //
@@ -478,7 +481,7 @@ export default {
           // },
           {
             opacity: 1,
-            color: "rgb(33,34,35)",
+            color: "#142446",
           },
         ];
       }

+ 3 - 6
src/views/economicsOperation/windAnalyse/powerCurve/index.vue

@@ -430,10 +430,7 @@ export default {
           .add(-1, "month")
           .startOf("day")
           .format("YYYY-MM")}-01`,
-        `${dayjs().add(-1, "month").startOf("day").format("YYYY-MM")}-${dayjs()
-          .subtract(1, "month")
-          .endOf("month")
-          .format("YYYY-MM-DD")}`,
+        `${dayjs().subtract(1,'month').endOf('month').format("YYYY-MM-DD")}`,
       ],
       interval: 600,
       maxs: 25,
@@ -617,8 +614,8 @@ export default {
       let params = {
         station: this.station,
         wtIds: this.isMultiple ? this.wtIds.join(",") : this.wtIds,
-        st: dayjs(this.st).valueOf(),
-        et: dayjs(this.et).valueOf(),
+        st: dayjs(this.dateTime[0]).valueOf(),
+        et: dayjs(this.dateTime[1]).valueOf(),
         interval: this.interval,
         maxs: this.maxs,
         mins: this.mins,