123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <template>
- <el-select
- v-model="selected"
- class="size-select"
- placeholder="请选择"
- @change="select"
- :style="styles"
- filterable
- remote
- :remote-method="search"
- clearable
- >
- <el-option
- v-for="item in optionList"
- :key="item.courseCode"
- :label="item.courseName"
- :value="item.courseCode"
- >
- <span>{{ item.courseName }}</span>
- </el-option>
- </el-select>
- </template>
- <script>
- import { searchCourses } from "@/api/examwork-course";
- export default {
- name: "CourseSelect",
- props: {
- value: String,
- examId: String,
- styles: { type: String, default: "width: 100px;" },
- },
- data() {
- return {
- optionList: [],
- selected: "",
- };
- },
- async created() {
- this.search();
- },
- watch: {
- value: {
- immediate: true,
- handler(val) {
- this.selected = val;
- },
- },
- examId() {
- this.search();
- },
- },
- methods: {
- async search(query) {
- const res = await searchCourses({
- examId: this.examId,
- courseName: query,
- pageNumber: 1,
- pageSize: 30,
- });
- this.optionList = res?.data.data.records;
- },
- select() {
- this.$emit("input", this.selected);
- this.$emit("change", this.selected);
- },
- },
- };
- </script>
- <style></style>
|