whychw
2020-10-10 9ffb60a803d9e064a4f1a148102ff3367b49c95a
U 二次确认框改小 电机页面修改 负载页面修改
11个文件已修改
29 ■■■■ 已修改文件
src/views/chargePower/alone.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/chargePower/main.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/chargePower/mixture.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/chargePower/parallel.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/chargePower/series.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/loadManager/autoload.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/loadManager/burstload.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/loadManager/manualload.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/motor/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/rectifier/group.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/rectifier/main.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/chargePower/alone.vue
@@ -154,7 +154,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>
src/views/chargePower/main.vue
@@ -199,7 +199,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>
src/views/chargePower/mixture.vue
@@ -186,7 +186,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>
src/views/chargePower/parallel.vue
@@ -201,7 +201,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>
src/views/chargePower/series.vue
@@ -190,7 +190,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>
src/views/loadManager/autoload.vue
@@ -126,7 +126,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>
@@ -285,6 +285,7 @@
      // console.log(obj);
      this.updateSetPower.data.set_power = obj.set_power;
      this.updateSetPower.data.dev_id = obj.dev_id;
      this.updateSetPower.data.dev_ip = obj.dev_ip;
      this.updateSetPower.show = true;
    }
    // 设定时间间隔
src/views/loadManager/burstload.vue
@@ -96,7 +96,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>
src/views/loadManager/manualload.vue
@@ -49,7 +49,7 @@
        <!-- 状态 -->
        <div class="btn_sub_grp">
          <div class="row" v-for="idx of max_button_num" :key="idx">
            <div class="lay_label vertical_middle" v-if="idx <= item.FZ_button_num">KM{{idx}}</div>
            <div class="lay_label vertical_middle" v-if="idx <= item.FZ_button_num">KM{{idx}}&nbsp;({{item['FZ_b' +  idx + '_power']}}KVA)</div>
            <div class="lay_label vertical_middle" v-else></div>
            <div class="lay_content">
              <div class="vertical_middle">
@@ -100,7 +100,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>
@@ -192,7 +192,7 @@
      this.$api.load.getManualStatus().then((res) => {
        let re = JSON.parse(res.data.result);
        let list = [];
        // console.log(re);
        // console.log(re, 999999);
        if (re.code) {
          this.info.forEach((v, idx) => {
            list[idx] = {};
@@ -203,7 +203,7 @@
                let data = re.data[i];
                // 更改 FZ_b 的值 2,0 => false    1 => true
                let reg = /^FZ_b\d+/;
                let reg = /^FZ_b\d+$/;
                Object.keys(data).forEach((val) => {
                  if (reg.test(val)) {
                    if (this.checkFzBIgnore(data.dev_id, val)) {
src/views/motor/index.vue
@@ -541,7 +541,7 @@
        }, {
          name: '转矩',
          value: 10075,
          unit: 'N*M'
          unit: 'N.M'
        }, {
          name: '齿轮箱高速侧轴功率',
          value: 0,
src/views/rectifier/group.vue
@@ -375,7 +375,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>
src/views/rectifier/main.vue
@@ -317,7 +317,7 @@
    <el-dialog
      :title="confirmTxt"
      :visible.sync="confirmVisible"
      width="30%">
      width="300px">
      <!-- <span>{{}}</span> -->
      <span slot="footer" class="dialog-footer">
        <el-button @click="confirmVisible = false">取 消</el-button>