yangfeng
2024-04-07 4e5c061d161ff92a264c51529a8264ba17ad226e
新增产品登记-退出增加点击事件
1个文件已修改
6 ■■■■ 已修改文件
src/views/productManage/productRegisterForm/addProductRegisterPage.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productManage/productRegisterForm/addProductRegisterPage.vue
@@ -5,7 +5,7 @@
        <el-button type="primary" size="small">放弃</el-button>
        <el-button type="primary" size="small">保存</el-button>
        <el-divider direction="vertical"></el-divider>
        <el-button type="primary" size="small">退出</el-button>
        <el-button type="primary" size="small" @click="quitClick">退出</el-button>
      </div>
      <div class="t-right">
        <div class="t-right-circle" :class="isDeviceConnectStatus ? 't-r-bg-green ' : 't-r-bg-red '"></div>
@@ -281,6 +281,10 @@
      if (this.isDeviceConnectStatus) {
        this.$refs.addProductDialog.editDialogVisible = true
      }
    },
    // 退出
    quitClick() {
      this.$router.go(-1)
    }
  }
}