举例:
如果id在type表中存储的是int类型
但是在业务表中存储的是string就会实现反显失败的情况

解决防范

    <el-select v-model="form.courseTypeId" placeholder="请选择课程分类" @change="selectType">
      <el-option v-for="item in classTypeList"
                 :key="item.id"
                 :label="item.name"
                 :value="item.id.toString()">
      </el-option>
    </el-select>