1234567891011121314151617181920 |
- import {examCategorys, examTypes} from "../../model/enum";
- Component({
- properties: {
- type: Number,
- item: Object
- },
- data: {
- qs: examCategorys,
- examTypesEnum: examTypes,
- },
- methods: {
- toExam(e) {
- this.triggerEvent("exam", {})
- },
- toShow(e) {
- this.triggerEvent("show", {})
- },
- }
- });
|