| 123456789101112131415161718192021 |
- export default class QuestionInfoItem
- {
- constructor(seatid)
- {
- this.seatId = seatid;
- this.title = '';
- this.answers = new Array();
- this.answers[0] = '';
- this.answers[1] = '';
- this.answers[2] = '';
- this.answers[3] = '';
- this.type = 0;
- this.res_name = null;
- this.res_data = null;
- this.texture = null;//纹理数据
- this.audioClip = null;//声音数据
- this.id = '';
- this.threeLevelId = '';
- }
- }
|