Kxc0822a
2022-04-11 1c3530a001ac2764069044f8ea12a8b8a2ad4bbc
重大
已修改3个文件
32 ■■■■■ 文件已修改
src/views/hiddenDangerRectification/applicationForExtension.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hiddenDangerRectification/index.vue 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hiddenDangerRectification/sendHiddenDangerList.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hiddenDangerRectification/applicationForExtension.vue
@@ -127,6 +127,11 @@
                    });
                    return false;
                }
            },
            close(){
                this.$router.push({
                    path:"/hiddenDangerRectification"
                })
            }
        }
    }
src/views/hiddenDangerRectification/index.vue
@@ -145,7 +145,7 @@
    </el-radio-group>
      </el-col> -->
      <el-col  :span="24" style="text-align:right;">
        <el-button class="btns" type="primary" size="small">申请延期</el-button>
        <el-button class="btns" type="primary" size="small" @click="applicationExtension()">申请延期</el-button>
      </el-col>
    </el-row>
    <el-table :data="tableData" style="width: 100%">
@@ -209,7 +209,11 @@
      <el-table-column label="风险等级" align="center"> </el-table-column>
      <el-table-column label="初始警情" align="center"> </el-table-column>
      <el-table-column label="当前警情" align="center"> </el-table-column>
      <el-table-column label="流程操作" align="center"> </el-table-column>
      <el-table-column label="流程操作" align="center">
        <template slot-scope="scope">
            <el-button @click="handleClick(scope.row)" type="text" size="small">发送流程</el-button>
        </template>
      </el-table-column>
    </el-table>
    <div style="text-align: right">
      <el-pagination
@@ -270,6 +274,20 @@
      currentPage: 1,
    };
  },
  methods:{
      // 发送隐患单跳转
      handleClick(){
          this.$router.push({
              path:"/sendHiddenDangerList"
          })
      },
      // 申请延期页面跳转
      applicationExtension(){
          this.$router.push({
              path:"/applicationForExtension"
          })
      }
  }
};
</script>
<style>
src/views/hiddenDangerRectification/sendHiddenDangerList.vue
@@ -485,6 +485,11 @@
                    });
                    return false;
                }
            },
            close(){
                this.$router.push({
                    path:"/hiddenDangerRectification"
                })
            }
        }
    }