摘要: 今日收获 学习了有关操作系统的知识; 背单词; 将界面原型进行了更加合理的设计; 明天预计 顺利度过建民老师的测试; 继续学习操作系统的相关知识; 背单词~ 阅读全文
posted @ 2023-10-18 23:15 yesyes1 阅读(2) 评论(0) 推荐(0) 编辑
摘要: vue2.x <el-table-column label="测试" align="center" prop="ce"> <template slot-scope="scope"> <span>{{scope.row.ce}}</span> </template> vue3.x <el-table- 阅读全文
posted @ 2023-10-18 17:37 yesyes1 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 具体代码 <template> <el-form :model="form" :rules="rules" ref="ruleFormSSS" label-width="120px"> <el-form-item label="用户姓名" prop="name"> <el-input v-model 阅读全文
posted @ 2023-10-18 17:28 yesyes1 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 问题描述 使用router进行页面跳转时,就出现了这样的问题: 也就是这里出现了问题: 问题解决 本来是按照网上的教程: const _this=this; 但是,但是,我本来就是用的这种方法呀~ 然后就打算直接在这个界面引用: import router from '@/router' route 阅读全文
posted @ 2023-10-18 17:04 yesyes1 阅读(906) 评论(0) 推荐(0) 编辑
摘要: 1、get和post请求 //get:查询数据 axios.get(url).then(ret=>{ //data属性名称是固定的,用于获取后台响应的数据 console.log(ret.data) }) //get传参 axios.get('abc?id=5').then(ret=>{ //dat 阅读全文
posted @ 2023-10-18 09:20 yesyes1 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 合理怀疑我之前的脑子长歪了,就跟个小丑一样,到处蹦跶,也没解决,现在好像走了大运,就直接出结果了 具体实现 我跟之前的sql语句进行对比,发现在我印象里面我使用的是这种结构: select * from user where id like caoncat('%',#{id},'%'); 但是记忆好 阅读全文
posted @ 2023-10-18 08:53 yesyes1 阅读(154) 评论(0) 推荐(0) 编辑