ruoyi-ui/src/views/note/index.vue
@@ -131,7 +131,7 @@
            type="text"
            icon="el-icon-edit"
            @click="handleUpdate(scope.row)"
            v-hasPermi="['system:role:edit']"
            v-hasPermi="['familymodel:property:info']"
          >修改</el-button>
          <el-button
            size="mini"
@@ -140,7 +140,7 @@
            @click="handleDelete(scope.row)"
            v-hasPermi="['system:role:remove']"
          >删除</el-button>
          <el-dropdown size="mini" @command="(command) => handleCommand(command, scope.row)" v-hasPermi="['system:role:edit']">
          <el-dropdown size="mini" @command="(command) => handleCommand(command, scope.row)" v-hasPermi="['familymodel:property:info']">
            <el-button size="mini" type="text" icon="el-icon-d-arrow-right"  @click="handleCheck(scope.row)">查看详情</el-button>
          </el-dropdown>
@@ -500,7 +500,7 @@
    /** 查看详细信息 */
    handleCheck(row){
      const id = row.id;
      this.$router.push("/family/property/note1/propertyInfo/" + id);
      this.$router.push("/familymodel/property/propertyInfo/" + id);
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
@@ -508,7 +508,7 @@
      let jd = true
      this.$router.push({
        path:"/family/property/note1/propertyInfo/" + id,
        path:"/familymodel/property/propertyInfo/" + id,
        query:{
          detail:jd
        }