From ac235850a9287dae6977c964213176fa7c86b140 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 09 十二月 2021 14:42:20 +0800 Subject: [PATCH] Merge branch 'refactor/separate-vue' of ssh://192.168.0.10:29418/pcalife/PAM into refactor/separate-vue --- PAMapp/assets/ts/models/question-option.model.ts | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/PAMapp/assets/ts/models/question-option.model.ts b/PAMapp/assets/ts/models/question-option.model.ts new file mode 100644 index 0000000..356674d --- /dev/null +++ b/PAMapp/assets/ts/models/question-option.model.ts @@ -0,0 +1,12 @@ +export interface QuestionOption { + title: string; + detail: Detail[]; + type: string; + name: string; +} + +interface Detail { + value: string; + name?: string; + className: string; +} -- Gitblit v1.8.0