123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- new Vue({
- el: "#app",
- data: {
- questions: [{
- qstCode: "question_1",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 1,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }, {
- qstCode: "question_2",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 2,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }, {
- qstCode: "question_3",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 3,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }, {
- qstCode: "question_4",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 4,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }, {
- qstCode: "question_5",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 5,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }, {
- qstCode: "question_6",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 6,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }, {
- qstCode: "question_7",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 7,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }, {
- qstCode: "question_8",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 8,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }, {
- qstCode: "question_9",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 9,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }, {
- qstCode: "question_10",
- qstTitle: "您对就诊过程中我院的总体满意程度?",
- type: 0,
- sort: 10,
- options: [{
- id: 0,
- sort: 1,
- code: "0001",
- content: "满意"
- }, {
- id: 1,
- sort: 2,
- code: "0002",
- content: "基本满意"
- }, {
- id: 2,
- sort: 3,
- code: "0003",
- content: "不满意"
- }, ]
- }],
- },
- mounted: function() {
- },
- methods: {
- }
- });
|