DDR爱好者之家 Design By 杰米
最近项目需要到vue开发单页面,所以就研究一下表单数据的回显,验证及提交如何用vue组件的方式实现。
代码如下:
<template> <div class="index"> <!--header-bar></header-bar--> <div style="margin:20px;"> <div class="item"> <p>住户名称:</p> <p> <input type="text" value="username" v-model="formStatus.username" placeholder="输入名称"> </p> </div> <div class="item"> <p>住户类型:</p> <p> <label v-for="(item, index) in zhuhuType"> <span>{{item.name}}</span> <input type="radio" name = "zhuhutype" :value="item.id" :checked="item.isChecked" @click="changeZh(index)" v-model="formStatus.zhuhuType"> </label> </p> </div> <div class="item"> <p>设备名称:</p> <p> <label v-for="(item, index) in shebeiType"> <span>{{item.name}}</span> <input type="checkbox" :value="item.id" :checked="item.isChecked" @click="changeSb(index)" v-model="formStatus.shebeiType"> </label> </p> </div> <div class="item"> <p>住户大小:</p> <p> <select v-model="formStatus.zhuhudaxiao"> <option value="0">请选择</option> <option v-for="option in zhuhudaxiao" v-model="zhuhudaxiao" :id = "option.id" :value="option.value" >{{option.name}}</option> </select> </p> </div> <div class="item"> <p>住户留言:</p> <p> <textarea value="userword" v-model="formStatus.userword"></textarea> </p> </div> </div> <p style="margin:20px 0;"><button @click="save">点击保存</button></p> </div> </template> <script> import Vue from 'vue' import axios from 'axios'; import ElementUI from 'element-ui' import URL from '../utils/Tools/URL.js' import 'element-ui/lib/theme-chalk/index.css' Vue.use(ElementUI) import headerBar from '../modules/headerBar.vue'; export default { name: 'index', data (){ return { zhuhuType: [], shebeiType: [], zhuhudaxiao: [], //绑定改变后的表单值用于提交 formStatus: { username: "", zhuhuType: 43, shebeiType: [52, 23], zhuhudaxiao: "", userword: "" } } }, components: { headerBar }, methods: { getPage (currentPage){ console.log(currentPage); // this.$http.get("http://192.168.1.200/test.php").then(res=>{ // console.log(res.data); // }); }, handleEdit(index, row) { console.log(index, row); }, handleDelete(index, row) { console.log(index, row); }, save(){ if(this.formStatus.username == ""){ alert("输入名称"); return false; } console.log(typeof(this.formStatus.zhuhuType)); if(typeof(parseInt(this.formStatus.zhuhuType)) != "number"){ alert("输入住户类型"); return false; } if(this.formStatus.shebeiType.length == 0 ){ alert("输入设备名称"); return false; } if(this.formStatus.zhuhudaxiao == 0){ alert("选择住户大小"); return false; } if(this.formStatus.userword == ""){ alert("输入用户留言"); return false; } console.log(this.formStatus); console.log("####用户名称####"); console.log(this.formStatus.username); console.log("####住户类型####"); console.log(this.zhuhuType); console.log("####设备名称####"); console.log(this.shebeiType); console.log("####住户大小####"); console.log(this.userDxselected); console.log("####用户留言####"); console.log(this.userword); }, //住户类型改变数据 changeZh(index){ this.zhuhuType.forEach(function(value, index){ value.isChecked = false; }); this.zhuhuType[index].isChecked = true; }, //设备选择改变数据 changeSb(index){ console.log(index); this.shebeiType[index].isChecked = !this.shebeiType[index].isChecked; } }, created () { console.log("############"); //用户名称 this.formStatus.username = "用户名称返回的内容"; //循环住户类型 this.zhuhuType = [{ name: '小型住户', id: '12', isChecked: false },{ name: '中型住户', id: '43', isChecked: false },{ name: '大型住户', id: '72', isChecked: true },{ name: '超大型住户', name: '设备6', id: '25', isChecked: false }]; //循环设备名称 this.shebeiType = [{ name: '设备1', id: '22', isChecked: true },{ name: '设备2', id: '23', isChecked: false },{ name: '设备3', id: '52', isChecked: true },{ name: '设备6', id: '65', isChecked: false }]; //住户大小 this.zhuhudaxiao = [{ name: "100平米", id: 1, value: 1 },{ name: "80平米", id: 2, value: 2 },{ name: "70平米", id: 3, value: 3 }]; //住户大小 this.formStatus.zhuhudaxiao = 2; //用户名称 this.formStatus.userword = "用户留言返回的内容"; // axios.get("/test.php").then(res=>{ // this.table = this.table.concat(res.data.data); // console.log(res.data); // }); } } </script> <style> select{height:40px;width:100px;} .el-button--mini, .el-button--mini.is-round{} *{margin:0;padding:0;font-family:"微软雅黑";} button{height:40px;width:100px;margin-left:20px;} .item p{padding:10px 0;} .table, .page{ width:900px; height:auto; margin:20px auto; } label{ padding:10px 20px; margin:10px; border:1px solid #eee; } body{padding-top:80px;} .header{ position:fixed; top:0; width:100%; background:#eee; } .header ul{ height:80px; width:1000px; } .header ul li{ float:left; width:200px; font-size:14px; line-height:80px; text-align:Center; } .header ul li a{ display:block; } </style>
DDR爱好者之家 Design By 杰米
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
DDR爱好者之家 Design By 杰米
暂无评论...
稳了!魔兽国服回归的3条重磅消息!官宣时间再确认!
昨天有一位朋友在大神群里分享,自己亚服账号被封号之后居然弹出了国服的封号信息对话框。
这里面让他访问的是一个国服的战网网址,com.cn和后面的zh都非常明白地表明这就是国服战网。
而他在复制这个网址并且进行登录之后,确实是网易的网址,也就是我们熟悉的停服之后国服发布的暴雪游戏产品运营到期开放退款的说明。这是一件比较奇怪的事情,因为以前都没有出现这样的情况,现在突然提示跳转到国服战网的网址,是不是说明了简体中文客户端已经开始进行更新了呢?
更新日志
2024年11月26日
2024年11月26日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]