上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 19 下一页
摘要: <style> /*每个页面公共css */ @import '@/uni_modules/uni-scss/index.scss'; 漏了 lang="scss" <style lang="scss"> /*每个页面公共css */ @import '@/uni_modules/uni-scss/ 阅读全文
posted @ 2022-10-26 17:14 yoona-lin 阅读(1236) 评论(0) 推荐(0) 编辑
摘要: 刷新后组件还报错 **问题:没重新编译** **解决:重新编译** 记得引入样式文件 app.vue <style lang="scss"> /*每个页面公共css */ @import '@/uni_modules/uni-scss/index.scss'; 阅读全文
posted @ 2022-10-26 16:58 yoona-lin 阅读(285) 评论(0) 推荐(0) 编辑
摘要: src 仅支持相对路径、绝对路径,支持 base64 码; 线上绝对地址且地址得拼凑配全,本地文件相对地址即可; 推荐使用标签; uni-app 相对路径相对于引用页面的路径,H5则是相对于使用页面的路径; uni-app 中图片名称不要使用中文,否则手机端不显示,pc端正常; 阅读全文
posted @ 2022-10-10 17:50 yoona-lin 阅读(1352) 评论(0) 推荐(0) 编辑
摘要: import request from "@/api/Interface.js"; //schema转json function schemaToTableData(modelData) { let dfs = (val, tableData) => { for (let key in val) { 阅读全文
posted @ 2022-10-10 17:25 yoona-lin 阅读(49) 评论(0) 推荐(0) 编辑
摘要: H5 小程序 <!-- 退出填写提示框 --> <view> 自定义提示框 <view v-if="outTipsShow"> </view> </view> // 退出填写提示框 outTipsShow: false, onLoad(options) { // 监听返回事件,只支持微信小程序 // 阅读全文
posted @ 2022-10-10 09:33 yoona-lin 阅读(4366) 评论(0) 推荐(1) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>html</title> <style> * { padding: 0; margin: 0; } body { background-color: pink; 阅读全文
posted @ 2022-08-04 16:14 yoona-lin 阅读(96) 评论(0) 推荐(0) 编辑
摘要: // .eslintrc.js module.exports = { root: true, env: { node: true, }, extends: [ "plugin:vue/essential", "eslint:recommended", "plugin:prettier/recomme 阅读全文
posted @ 2022-08-04 11:07 yoona-lin 阅读(468) 评论(0) 推荐(0) 编辑
摘要: <el-button type="" circle size="mini" icon="el-icon-share" id="copyBtn" @click="shareTaskDetail" ></el-button> import ClipboardJS from "clipboard"; // 阅读全文
posted @ 2022-08-02 17:28 yoona-lin 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 一行代码简单处理时间格式 new Date().toLocaleString() new Date().toLocaleString() '2022/7/20 09:47:14' new Date().toLocaleString().split(" ")[0] '2022/7/20' new Da 阅读全文
posted @ 2022-07-20 10:37 yoona-lin 阅读(975) 评论(0) 推荐(0) 编辑
摘要: export const deepClone = data => { var type = getObjType(data); var obj; if (type 'array') obj = []; else if (type 'object') obj = {}; else return dat 阅读全文
posted @ 2022-07-12 15:27 yoona-lin 阅读(55) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 19 下一页