shj
2022-04-12 6f6d02951fbbd1b01887aaed3fd5a22b05ab9bf4
Merge branch 'shf' of https://sinanoaq.cn:8888/r/ztqt into shf
已修改3个文件
31 ■■■■ 文件已修改
src/views/hiddenDangerRectification/index.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hiddenDangerRegistration/hiddenDangerList.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hiddenDangerRegistration/index.vue 20 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hiddenDangerRectification/index.vue
@@ -281,6 +281,12 @@
              path:"/sendHiddenDangerList"
          })
      },
      applicationExtension(){
          this.$router.push({
              path:"/applicationForExtension"
          })
      },
  }
};
</script>
src/views/hiddenDangerRegistration/hiddenDangerList.vue
@@ -485,6 +485,11 @@
                    });
                    return false;
                }
            },
            close(){
                this.$router.push({
                    path:"/hiddenDangerRegistration"
                })
            }
        }
    }
src/views/hiddenDangerRegistration/index.vue
@@ -216,7 +216,7 @@
           <el-button  size="small"
          >删除</el-button
        >
      </el-col>
    </el-row>
    <el-table :data="tableData" style="width: 100%">
@@ -280,7 +280,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
@@ -324,7 +328,9 @@
          label: "北京烤鸭",
        },
      ],
      tableData: [],
      tableData: [{
          date:"2016-05-04",
      }],
      pageSize: 10,
      recordTotal: 0,
      currentPage: 1,
@@ -335,7 +341,13 @@
      this.$router.push({
        path:"/hiddenDangerAdd"
      })
    }
    },
      // 发送隐患单跳转
      handleClick(){
          this.$router.push({
              path:"/hiddenDangerList"
          })
      },
  }
};
</script>