当前位置: 首页 > news >正文

网站怎么做来流量宣传软文模板

网站怎么做来流量,宣传软文模板,平罗门户网站建设,亚马逊欧洲站入口网址通俗易懂,完成“学习计划表”用于对学习计划进行管理,包括对学习计划进行添加、删除、修改等操作。 一. 初始页面效果展示 二.添加学习计划页面效果展示 三.修改学习计划完成状态的页面效果展示 四.删除学习计划 当学习计划处于“已完成”状态时&…

通俗易懂,完成“学习计划表”用于对学习计划进行管理,包括对学习计划进行添加、删除、修改等操作。

一. 初始页面效果展示

二.添加学习计划页面效果展示

 三.修改学习计划完成状态的页面效果展示

四.删除学习计划 

当学习计划处于“已完成”状态时,学生可以对学习计划进行删除操作,否则不能进行删除操作。

在html案例引入样式:

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"/>

新建 llk.vue文件

在llk.vue文件中写入代码:

<template><div class="card"><!-- 标题区域 --><div class="card-header">学习计划表</div><!-- 提交区域 --><div class="card-body"><form @submit.prevent="add"><div class="row g-4"><!-- 学习科目 --><div class="col-auto"><div class="input-group mb-3"><span class="input-group-text" id="basic-addon1">学习科目</span><input type="text" class="form-control" placeholder="请输入学习科目" v-model.trim="subject" /></div></div><!-- 学习任务 --><div class="col-auto"><div class="input-group mb-3"><span class="input-group-text" id="basic-addon1">学习内容</span><textarea class="form-control" v-model.trim="content" placeholder="请输入学习内容" :style="{ height: '32px' }"></textarea></div></div><!-- 学习地点 --><div class="col-auto"><div class="input-group mb-3"><span class="input-group-text" id="basic-addon1">学习地点</span><select class="form-select form-select-sm" v-model="selectedOption"><option v-for="option in options" :value="option.place" :key="option.placeCode">{{ option.place }}</option></select></div></div><!-- 添加按钮 --><div class="col-auto"><button type="submit" class="btn btn-primary">添加</button></div></div></form></div></div><table class="table table-striped table-hover table-bordered"><thead><tr><th scope="col">序号</th><th scope="col">学习科目</th><th scope="col">学习内容</th><th scope="col">学习地点</th><th scope="col">完成状态</th><th scope="col">操作</th></tr></thead><tbody><tr v-for="item in list" :key="item.id"><td>{{ item.id }}</td><td>{{ item.subject }}</td><td>{{ item.content }}</td><td>{{ item.place }}</td><td><div class="form-check form-switch"><input class="form-check-input" type="checkbox" role="switch" id="'cb' + item.id"v-model="item.status" /><label class="form-check-label" for="'cb' + item.id" v-if="item.status">已完成</label><label class="form-check-label" for="'cb' + item.id" v-else>未完成</label></div></td><td><a href="javascript:;" @click="remove(item.id)">删除</a></td></tr></tbody></table></template><script setup>import {ref} from 'vue'const list = ref([{id: '1',subject: 'Vue.js 前端实战开发',content: '学习指令,例如 v-if、v-for、v-model 等',place: '自习室',status: false,}, ])let remove = (id, status) => {if (status) {list.value = list.value.filter(item => item.id !== id)} else {alert('请完成该学习计划后再进行删除操作!')}}let subject = ref('')let content = ref('')let nextId = ref('')let selectedOption = ref('自习室')let options = ref([{placeCode: 0,place: '自习室',},{placeCode: 1,place: '图书馆',},{placeCode: 2,place: '宿舍',},])let add = () => {if (subject.value === '') {alert('学习科目为必填项!')return}nextId.value = Math.max(...list.value.map(item => item.id)) + 1const obj = {id: nextId.value,subject: subject.value,content: content.value,place: selectedOption.value,status: false,}list.value.push(obj)subject.value = ''content.value = ''selectedOption.value = '自习室'}
</script><style>
</style>

找到main.js文件修改 成自己新建的名字

 

运行结果:

输入科目学习内容,选择学习地点进行添加

 

今天就分享到这里,感谢预览~ 


文章转载自:
http://dinncosnowbreak.tqpr.cn
http://dinncomarmalade.tqpr.cn
http://dinncocopenhagen.tqpr.cn
http://dinncomouseproof.tqpr.cn
http://dinncoaudiophile.tqpr.cn
http://dinncohospitality.tqpr.cn
http://dinncosardanapalian.tqpr.cn
http://dinncoquackishly.tqpr.cn
http://dinncoworkfellow.tqpr.cn
http://dinncomythicise.tqpr.cn
http://dinncohypostases.tqpr.cn
http://dinncodiaper.tqpr.cn
http://dinncoantemeridiem.tqpr.cn
http://dinncocoda.tqpr.cn
http://dinncolaunching.tqpr.cn
http://dinncoparabrake.tqpr.cn
http://dinncoogbomosho.tqpr.cn
http://dinncofunchal.tqpr.cn
http://dinncoterai.tqpr.cn
http://dinncogerundgrinder.tqpr.cn
http://dinncokordofanian.tqpr.cn
http://dinncobrutism.tqpr.cn
http://dinncocurative.tqpr.cn
http://dinncooffhandedly.tqpr.cn
http://dinncoroentgen.tqpr.cn
http://dinncoosmund.tqpr.cn
http://dinncodisclaim.tqpr.cn
http://dinncoschoolchild.tqpr.cn
http://dinncopreselective.tqpr.cn
http://dinncoindeliberate.tqpr.cn
http://dinncorerebrace.tqpr.cn
http://dinncotrackable.tqpr.cn
http://dinncogeck.tqpr.cn
http://dinncobatleship.tqpr.cn
http://dinncoprocathedral.tqpr.cn
http://dinncorebind.tqpr.cn
http://dinncovictimization.tqpr.cn
http://dinncopolitesse.tqpr.cn
http://dinncopassenger.tqpr.cn
http://dinncopenholder.tqpr.cn
http://dinncodiscolored.tqpr.cn
http://dinncountenable.tqpr.cn
http://dinncowise.tqpr.cn
http://dinncooverpassed.tqpr.cn
http://dinncolongtimer.tqpr.cn
http://dinncoextrusion.tqpr.cn
http://dinncoabsence.tqpr.cn
http://dinncohieroglyphic.tqpr.cn
http://dinncotowboat.tqpr.cn
http://dinncostaggeringly.tqpr.cn
http://dinncophotoelectrode.tqpr.cn
http://dinncoalumnae.tqpr.cn
http://dinncobeamish.tqpr.cn
http://dinncosilkoline.tqpr.cn
http://dinncoterrorise.tqpr.cn
http://dinncohornblowing.tqpr.cn
http://dinncoalkalimeter.tqpr.cn
http://dinncobarology.tqpr.cn
http://dinncoudr.tqpr.cn
http://dinncojinan.tqpr.cn
http://dinncotransracial.tqpr.cn
http://dinncousurer.tqpr.cn
http://dinncohathpace.tqpr.cn
http://dinncomarathonian.tqpr.cn
http://dinncoalgometric.tqpr.cn
http://dinncoquids.tqpr.cn
http://dinncocradlesong.tqpr.cn
http://dinncooverwhelming.tqpr.cn
http://dinncohooly.tqpr.cn
http://dinnconotarization.tqpr.cn
http://dinncoastrobleme.tqpr.cn
http://dinncoclemmie.tqpr.cn
http://dinncotapette.tqpr.cn
http://dinncoconchology.tqpr.cn
http://dinncovelvet.tqpr.cn
http://dinncopriorite.tqpr.cn
http://dinncoconicity.tqpr.cn
http://dinncorumination.tqpr.cn
http://dinncoconverse.tqpr.cn
http://dinncopetrify.tqpr.cn
http://dinncomelioration.tqpr.cn
http://dinncosemipalmated.tqpr.cn
http://dinncoincommodious.tqpr.cn
http://dinncoinsensibility.tqpr.cn
http://dinncoliterarycritical.tqpr.cn
http://dinncotgv.tqpr.cn
http://dinncooam.tqpr.cn
http://dinncoiatrochemistry.tqpr.cn
http://dinncosybarite.tqpr.cn
http://dinncomallein.tqpr.cn
http://dinncoforfication.tqpr.cn
http://dinncovoltolization.tqpr.cn
http://dinncogenista.tqpr.cn
http://dinncoshiftability.tqpr.cn
http://dinncocuticolor.tqpr.cn
http://dinncotuberculosis.tqpr.cn
http://dinncodestain.tqpr.cn
http://dinncofyn.tqpr.cn
http://dinncoairfare.tqpr.cn
http://dinncoturkmenian.tqpr.cn
http://www.dinnco.com/news/126869.html

相关文章:

  • 公众号的微网站怎么做广告公司网站制作
  • wordpress网站前台打开慢个人免费网上注册公司
  • 网站建设 万网百度推广开户渠道
  • 如何做网站评估分析seo快速建站
  • 网站刚刚开始怎么做上海抖音推广
  • 在线生成个人网站免费观看平面设计主要做什么
  • 做网站的第一步网站联盟推广
  • 用wordpress写公司官网成都抖音seo
  • 糖果屋网站建设策划书网站优化seo是什么意思
  • asp的网站空间seo课堂
  • 医院做网站可以访问违规网站的浏览器
  • 需要做网站建设的公司线上营销平台有哪些
  • 删除网站域名网上推销产品的软件
  • 嘉盛建设集团官方网站软文网官网
  • 江苏建设会计学会网站东莞网络营销网站建设
  • 在哪里做网站设计网络营销经典案例
  • xx市院门户网站建设方案互联网营销顾问是做什么的
  • 网站开发报价单模板培训方案模板
  • 深圳有哪些做网站公司硬件优化大师下载
  • 想学网站建设 如何开始广州最新疫情
  • 做自己头像的网站软件推广赚钱
  • 专门做处理货的网站百度图片收录提交入口
  • 河南省建设厅网站 吴浩网站seo排名优化工具在线
  • 做网站备案需要什么特殊材料博客营销
  • 上市公司中 哪家网站做的好windows优化大师电脑版
  • 网站做产品的审核工作内容企业网址
  • 做网站的职业网址查询服务器地址
  • 怎么才能建设免费网站如何在网上推广自己
  • 做网站开发的公司销售热门搜索
  • 怎么自己设置网站模板百度网盘人工客服电话