美文网首页
Vue.js实战 调查问卷 WebApp

Vue.js实战 调查问卷 WebApp

作者: 曼妥苏格斯 | 来源:发表于2018-10-14 22:30 被阅读0次

项目:调查问卷WebApp
描述:制作一个简单的调查问卷HTML 5小应用,每页有一道题目,题目可以是单选题、多选题、填写题等。

目录结构

index.html:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>WebApp</title>
</head>
<body>
<div id="app">
    <questionnaire :questions="questions" @submit="handleSubmit"></questionnaire>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
<script src="questionnaire.js"></script>
<script src="questions.js"></script>
<script src="mybutton.js"></script>
<script>
    var app = new Vue({
        el: "#app",
        data: {
            questions: [
                {
                    type: "radio",
                    title: "你的性别",
                    choices: ["男", "女"],
                    picked: ""
                },
                {
                    type: "multi",
                    title: "你的爱好",
                    choices: ['篮球', '足球', '羽毛球'],
                    picked: []
                },
                {
                    type: "typetext",
                    title: "自我介绍",
                    text: ""
                }
            ]
        },
        methods: {
            handleSubmit: function (e) {
                var text = "";
                text += "你是" + e[0].picked + "的\n";
                text += "你喜欢" + e[1].picked.join("和") + "\n";
                text += "你说'" + e[2].text + "'\n";
                alert(text);
            }
        }
    });
</script>
</body>
</html>

questionnaire.js:

Vue.component('questionnaire', {
    template: '\
    <div>\
        <div>{{ page + 1 }} / {{ count }}</div>\
        <div v-for="(item, index) in questions">\
            <radioselect v-show="page === index" v-if="item.type==\'radio\'" :name="\'q\' + (index + \'\')" :title="item.title" :choices="item.choices" @pick="handlePick(arguments)"></radioselect>\
            <multiselect v-show="page === index" v-else-if="item.type==\'multi\'" :name="\'q\' + (index + \'\')" :title="item.title" :choices="item.choices" @pick="handlePick(arguments)"></multiselect>\
            <typetext v-show="page === index" v-else :name="\'q\' + (index + \'\')" :title="item.title" @pick="handlePick(arguments)"></typetext>\
        </div>\
        <mybutton v-show="page === count -1" :banned="disabledSubmit" @click="handleSubmit">提交</mybutton>\
        <mybutton v-show="page < count -1" :banned="disabledNext" @click="handleNext">下一题</mybutton>\
        <mybutton v-show="page > 0" :banned="false" @click="handlePrev">上一题</mybutton>\
        <mybutton @click="handleReset" :banned="false">重置</mybutton>\
    </div>',
    props: {
        questions: {
            type: Array,
            default: function () {
                return [];
            }
        }
    },
    computed: {
        count: function () {
            return this.questions.length;
        }
    },
    data: function () {
        return {
            page: 0,
            disabledSubmit: true,
            disabledNext: true
        }
    },
    mounted: function () {
    },
    methods: {
        handleSubmit: function () {
            this.$emit('submit', this.questions);
        },
        handleNext: function () {
            if (this.page < this.count - 1) {
                this.page++;
                this.updateDisabledNext();
            }
        },
        handlePrev: function () {
            if (this.page > 0) {
                this.page--;
                this.updateDisabledNext();
            }
        },
        handleReset: function () {
            question = this.questions[this.page];
            switch (question.type) {
                case 'radio':
                    this.$children[this.page].curValue = "";
                    break;
                case 'multi':
                    this.$children[this.page].curValue = [];
                    break;
                case 'typetext':
                    this.$children[this.page].value = "";
                    break;
                default:
            }
        },
        handlePick: function (arguments) {
            question = this.questions[this.page];
            switch (question.type) {
                case 'radio':
                case 'multi':
                    this.questions[this.page].picked = arguments[0];
                    break;
                case 'typetext':
                    this.questions[this.page].text = arguments[0];
                    break;
                default:
            }
            this.updateDisabledNext();
            this.updateDisabledSubmit();
        },
        updateDisabledNext: function () {
            var flag = false;
            var item = this.questions[this.page];
            if (item.type === 'radio') {
                if (item.picked === "")
                    flag = true;
            } else if (item.type === 'multi') {
                if (item.picked.length < 2)
                    flag = true;
            } else {
                if (item.text.length < 10)
                    flag = true;
            }
            this.disabledNext = flag;
        },
        updateDisabledSubmit: function () {
            var flag = false;
            this.questions.forEach(function (item) {
                if (item.type === 'radio') {
                    if (item.picked === "")
                        flag = true;
                } else if (item.type === 'multi') {
                    if (item.picked.length < 2)
                        flag = true;
                } else {
                    if (item.text.length < 10)
                        flag = true;
                }
            });
            this.disabledSubmit = flag;
        }
    }
});

questions.js:

Vue.component('radioselect', {
    name: 'radioselect',
    props: {
        name: {
            type: String,
            default: "question0"
        },
        title: {
            type: String,
            default: "Question"
        },
        choices: {
            type: Array,
            default: function () {
                return ["C1", "C2", "C3"]
            }
        }
    },
    data: function () {
        var _this = this;
        var values = [];
        this.choices.forEach(function (item, index) {
            values.push(_this.name + (index + ''));
        });
        return {
            values: values,
            curValue: ""
        }
    },
    template: '\
        <div>\
            <span>{{ title }}</span>\
            <div v-for="(choice, index) in choices">\
                <input type="radio" v-model="curValue" :value="choices[index]" :id="values[index]">\
                <label :for="values[index]">{{ choice }}</label>\
            </div>\
        </div>\
        ',
    methods: {

    },
    watch: {
        curValue: function (val) {
            this.$emit('pick', val);
        }
    }
});

Vue.component('multiselect', {
    name: 'multiselect',
    props: {
        name: {
            type: String,
            default: "question0"
        },
        title: {
            type: String,
            default: "Question"
        },
        choices: {
            type: Array,
            default: function () {
                return ["C1", "C2", "C3"]
            }
        }
    },
    data: function () {
        var _this = this;
        var values = [];
        this.choices.forEach(function (item, index) {
            values.push(_this.name + (index + ''));
        });
        return {
            values: values,
            curValue: []
        }
    },
    template: '\
        <div>\
            <span>{{ title }}</span>\
            <div v-for="(choice, index) in choices">\
                <input type="checkbox" v-model="curValue" :value="choices[index]" :id="values[index]">\
                <label :for="values[index]">{{ choice }}</label>\
            </div>\
        </div>\
        ',
    methods: {

    },
    watch: {
        curValue: {
            handler: function (val) {
                this.$emit('pick', val);
            },
            deep: true
        }
    }
});

Vue.component('typetext', {
    name: 'typetext',
    props: {
        name: {
            type: String,
            default: "question0"
        },
        title: {
            type: String,
            default: "Question"
        },
        text: {
            type: String,
            default: ""
        }
    },
    data: function () {
        return {
            value: this.text
        }
    },
    template: '\
        <div>\
            <span>{{ title }}</span>\
            <div>\
                <textarea v-model="value">\
                </textarea>\
            </div>\
        </div>\
        ',
    methods: {},
    watch: {
        value: function (val) {
            this.$emit('pick', val);
        }
    }
});

mybutton.js:

Vue.component('mybutton', {
    props: {
        fontcolor: {
            type: String,
            default: "#000"
        },
        banned: {
            type: Boolean,
            default: true
        }
    },
    template: '\
    <div>\
        <button class="mybutton" @click="handleClick" :disabled="banned"><slot></slot></button>\
    </div>',
    methods: {
        getStyle: function () {
            return {
                color: this.fontcolor,
                ":active color": "#fff"
            }
        },
        handleClick: function () {
            this.$emit('click');
        }
    }
});

相关文章

  • Vue.js实战 调查问卷 WebApp

    项目:调查问卷WebApp描述:制作一个简单的调查问卷HTML 5小应用,每页有一道题目,题目可以是单选题、多选题...

  • Vue.js秒杀React,成最受欢迎的开源前端框架!

    近日,Jaxenter做了一项关于前端人员的问卷调查,根据最新的问卷调查结果显示:Vue.js秒杀React,成为...

  • 小项目练习

    项目:调查问卷WebApp描述:制作一个简单的调查文件HTML5 小应用,每页有一道题目,题目可以是单选题、多选题...

  • Vue2.0 完成调查问卷WebApp

    最近一直在看vue.js实战,里面有一个项目实践,需求与效果如下: 我现在把此项目分成index.html,que...

  • 邱岳的产品实战(二)

    邱岳的产品实战阅后分享 本篇的题目是 要不要相信你的调查问卷,作者分享了自己在作为产品经理时设计调查问卷的五点经验...

  • 第九章 分析工具汇总

    9.1调查问卷分析 慧行者公司进行问卷调查,收到问卷450份,实际有效问卷425份。在调查问卷的几个关键问题如下:...

  • 学术派的问卷调查

    问卷调查法也称问卷法,是调查者运用统一设计的问卷向被选取的调查对象了解情况或征询意见的调查方法。问卷调查是以书面提...

  • 读书笔记66-调查问卷

    说起调查问卷,你是再熟悉不过的了。有线下纸质版的调查问卷,有线上电子版的调查问卷,有访问式的口头调查问卷。无论哪种...

  • 用户调研方法小结

    1、问卷调研: 做法:设计好调查方向和调查问卷内容,选择方式(单层、多层问卷;纸质、网页问卷;验前、验后问卷;开放...

  • 问卷调查改怎么做?

    什么是问卷调查 问卷调查是指通过制定详细周密的问卷,要求被调查者据此进行回答以收集资料的方法; 如何设计问卷 问题...

网友评论

      本文标题:Vue.js实战 调查问卷 WebApp

      本文链接:https://www.haomeiwen.com/subject/vpaaaftx.html