1 2 3 4 5 ··· 20 下一页
摘要: 参考地址:https://www.cnblogs.com/mahmud/p/17784975.html <div ref="statsSection" class="stats-section"> <div class="numdiv"> <div class="numdivc xq-flex-cb 阅读全文
posted @ 2024-10-27 15:36 小小强学习网 阅读(30) 评论(0) 推荐(0) 编辑
摘要: git:https://gitee.com/brownshrike/captcha-mini npm install captcha-mini <el-form-item prop="vercode"> <el-input v-model="formData.code" autocomplete=" 阅读全文
posted @ 2024-10-27 11:08 小小强学习网 阅读(56) 评论(0) 推荐(0) 编辑
摘要: devServer: { open: true, host: '0.0.0.0', port: 8000, proxy: { '/api': { target: '网址', changeOrigin: true, pathRewrite: { '^/api': '' }, headers: { ho 阅读全文
posted @ 2024-09-28 17:07 小小强学习网 阅读(24) 评论(0) 推荐(0) 编辑
摘要: import React from 'react'; function PhoneCall({ phoneNumber }) { const handleCall = () => { window.location.href = `tel:${phoneNumber}`; }; return ( < 阅读全文
posted @ 2024-09-05 22:44 小小强学习网 阅读(11) 评论(0) 推荐(0) 编辑
摘要: <h4>1. 父元素圆角</h4> <div class="father"> <div class="border-gradient">圆角渐变边框</div> </div> <h4>2. clip-path剪裁</h4> <div class="border-gradient clip-path" 阅读全文
posted @ 2024-08-05 19:29 小小强学习网 阅读(27) 评论(0) 推荐(0) 编辑
摘要: writing-mode 属性定义了文本在水平或垂直方向上如何排布。语法格式如下: writing-mode: horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lrhorizontal-tb:水平方向自上而下的书写 阅读全文
posted @ 2024-08-05 19:27 小小强学习网 阅读(65) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="box"> {{mData.name}} </div> </template> <script setup> import { ref} from 'vue' // 导入 import userMix from "@/common/mixins/user 阅读全文
posted @ 2024-07-20 10:41 小小强学习网 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 方法一:最普遍的做法 使用ES5语法来实现虽然会麻烦些,但兼容性最好,不用考虑浏览器JavaScript版本。也不用引入其他第三方库。 1,直接使用 filter、concat 来计算 var a = [1,2,3,4,5] var b = [2,4,6,8,10] //交集 var c = a.f 阅读全文
posted @ 2024-06-26 16:11 小小强学习网 阅读(21) 评论(0) 推荐(0) 编辑
摘要: mounted() { this.$nextTick(() => { let d={ color:"#FDB358", rbg:"253,179,88", rbg2:"253,227,100", pos:"contc1", barWidth:75,//柱子宽度 schedule:70,//百分比 c 阅读全文
posted @ 2024-05-22 14:45 小小强学习网 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 主页面 Future onSubmit() async { final result = await Get.to(const PageGoodsSelectList()); print(result.name); goodsId.value=result.id; setState((){ good 阅读全文
posted @ 2024-02-29 17:51 小小强学习网 阅读(94) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 20 下一页