用vue脚手架写的简易留言板

1.配置安装好脚手架
2.留言板:

<template>
<div class="about">
<input type="text" v-model="value" @keydown.enter="add" />
<button @click="add">提交</button>
<h1>{{value}}</h1>
<h3>未完成({{listno.length}}):</h3>
<button @click="dels1(index)">全部删除</button>
<table>
<tr>
<th>选项</th>
<th>内容</th>
<th>提交时间</th>
<th>间隔时间</th>
<th>操作</th>
</tr>
<tr v-for="(item, index) in listno" :key="index">
<td>
<input type="checkbox" @click.prevent="changeYes($event,item,index)" />
</td>
<td>
<span v-if="item.isShow">{{item.text}}</span>
<input type="text" v-model="item.text" @blur="updateblur1(index)" v-else autofocus />
</td>
<td>{{item.times}}</td>
<td>{{item.time | timeFilters}}</td>
<td>
<button @click="del1(index)">删除</button>
<button @click="update1(index)">修改</button>
</td>
</tr>
</table>
<h3>已完成({{listyes.length}}):</h3>
<button @click="dels2(index)">全部删除</button>
<table>
<tr>
<th>选项</th>
<th>内容</th>
<th>提交时间</th>
<th>间隔时间</th>
<th>操作</th>
</tr>
<tr v-for="(item, index) in listyes" :key="index">
<td>
<input checked type="checkbox" name id @click.prevent="changeno($event,item,index)" />
</td>
<td>
<span v-if="item.isShow">{{item.text}}</span>
<input type="text" v-model="item.text" @blur="updateblur2(index)" v-else autofocus />
</td>
<td>{{item.times}}</td>
<td>{{item.time |timeFilters}}</td>
<td>
<button @click="del2(index)">删除</button>
<button @click="update2(index)">修改</button>
</td>
</tr>
</table>
</div>
</template>

<script>
export default {
filters: {
timeFilters(ms) {
let daystr = "";
let date = new Date();
let now = date.getTime();
let rel = (now - ms) / 1000 / 60;
// console.log(now/1000/60)
// console.log(ms/1000/60)
// console.log(rel)
if (rel<5) {
daystr = "刚刚";
} else if (rel >= 5&&rel<10) {
daystr = "5分钟前";
} else if (rel >= 10&&rel<30) {
daystr = "10分钟前";
} else if (rel >= 30&&rel<40) {
daystr = "30分钟前";
}else if (rel >= 40&&rel<60) {
daystr = "40分钟前";
} else if (rel >= 60&&rel<120) {
daystr = "1小时前";
} else if (rel >= 120&&rel<300) {
daystr = "2小时前";
} else if (rel >= 300&&rel<1440) {
daystr = "5小时前";
} else if (rel >= 1440&&rel<2880) {
daystr = "1天前";
} else if (rel >= 2880&&rel<10080) {
daystr = "2天前";
} else if (rel >= 10080&&rel<43200) {
daystr = "7天前";
} else if (rel >= 43200) {
daystr = "30天前";
}
return daystr;
}
},
data() {
return {
value: "",
listyes: [],
listno: [],

};
},
created() {
let listno = localStorage.listno;
if (listno != undefined) {
this.listno = JSON.parse(listno);
}
let listyes = localStorage.listyes;
if (listyes != undefined) {
this.listyes = JSON.parse(listyes);
}
},
methods: {
// 添加提交
add() {
if (this.value !== "") {
this.listno.push({
isShow: true,
text: this.value,
time: new Date().getTime(),
times: new Date().toLocaleString().replace(/\//g, "-")
});
this.value = "";
localStorage.listno = JSON.stringify(this.listno);
}
},
updateblur1(index) {
this.listno[index].isShow = true;
localStorage.listno = JSON.stringify(this.listno);
},
updateblur2(index) {
this.listyes[index].isShow = true;
localStorage.listyes = JSON.stringify(this.listyes);
},
// 全部删除未完成
dels1(index) {
if (this.listno.length == 0) {
alert("数据为零,删除不了");
}
this.listno.splice(index, this.listno.length);
localStorage.listno = JSON.stringify(this.listno);
},
// 全部删除已完成
dels2(index) {
if (this.listyes.length == 0) {
alert("数据为零,删除不了");
}
this.listyes.splice(index, this.listyes.length);
localStorage.listyes = JSON.stringify(this.listyes);
},
// 删除未完成
del1(index) {
this.listno.splice(index, 1);
localStorage.listno = JSON.stringify(this.listno);
},
// 修改未完成
update1(index) {
// let x = prompt("请修改");
// console.log(x);
// this.listno.splice(index, 1, x);
this.listno[index].isShow = false;
localStorage.listno = JSON.stringify(this.listno);
},
// 删除已完成
del2(index) {
this.listyes.splice(index, 1);
localStorage.listyes = JSON.stringify(this.listyes);
},
// 修改已完成
update2(index) {
// let x = prompt("请修改");
// console.log(x);
// this.listyes.splice(index, 1, x);
this.listyes[index].isShow = false;
localStorage.listyes = JSON.stringify(this.listyes);
},
// 点击复选框显示到已完成
changeYes(e, item, index) {
// console.log(e.target.checked)
var checked = e.target.checked;
if (checked) {
this.listyes.push(item);
this.listno.splice(index, 1);
}
localStorage.listno = JSON.stringify(this.listno);
localStorage.listyes = JSON.stringify(this.listyes);
},
// 点击显示到未完成
changeno(e, item, index) {
// console.log(e.target.checked)
var checked = e.target.checked;
if (!checked) {
this.listno.push(item);
this.listyes.splice(index, 1);
}
localStorage.listyes = JSON.stringify(this.listyes);
localStorage.listno = JSON.stringify(this.listno);
}
}
};
</script>


<style scoped>
table {
margin: 0 auto;
/* width: 600px; */
}
td,th{
width: 300px;
}
h1 {
height: 20px;
}
li {
list-style-type: none;
}
</style>
————————————————
版权声明:本文为CSDN博主「江子辰」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/ZiChen_Jiang/article/details/106503425

posted @ 2020-06-03 10:09  江咏之  阅读(295)  评论(0编辑  收藏  举报