摘要: <el-form ref="submitForm" :rules="rules" :model="submitForm" label-position="right" label-width="120px" > <!--<el-form-item label="客户经理编号" prop="custM 阅读全文
posted @ 2022-11-09 16:52 Stitchhhhh 阅读(227) 评论(0) 推荐(0)
摘要: const str = "I like you,but you don't know,I'm sad." function strReverse(str) { const strList = str.split(',').reverse() strList.forEach((item, index) 阅读全文
posted @ 2022-09-27 17:11 Stitchhhhh 阅读(22) 评论(0) 推荐(0)
摘要: 配置 1、先下载好NodeJS,然后输入如下命令安装yarn npm install -g yarn 2、查看版本: yarn --version 3、查看 yarn 默认配置 yarn config list 报错 yarn : 无法加载文件 E:\tool\nodejs\yarn.ps1,因为在 阅读全文
posted @ 2022-09-07 15:59 Stitchhhhh 阅读(1332) 评论(0) 推荐(0)
摘要: 可使用以下方式解决: 1、使用v-cloak指令,然后为其设置css样式display:none;即上述代码可修改为: 但有时添加完毕后变量仍会显示(即闪烁问题没解决),这是因为 v-cloak 的display属性被优先级别高的样式覆盖所导致,所以最好再添加一个 !important ,将其优先级 阅读全文
posted @ 2022-08-25 14:48 Stitchhhhh 阅读(120) 评论(0) 推荐(0)
摘要: 安装依赖 npm install xlsx npm i mammoth --save 引入 import XLSX from 'xlsx' import * as mammoth from 'mammoth' <div style="display: flex; justify-content: c 阅读全文
posted @ 2022-08-16 18:03 Stitchhhhh 阅读(2692) 评论(0) 推荐(0)
摘要: <el-upload ref="uploadFile" class="upload-demo" action="#" :http-request="uploadFile" :file-list="filesPathList" list-type="picture" multiple > <el-bu 阅读全文
posted @ 2022-07-26 11:02 Stitchhhhh 阅读(2245) 评论(0) 推荐(0)
摘要: axios({ method: 'post', url: this.path, headers: { // 项目请求头需要的信息,如用户登录信息验证等 authorization: sessionStorage.getItem('authorization') }, data: this.param 阅读全文
posted @ 2022-07-20 15:44 Stitchhhhh 阅读(2345) 评论(0) 推荐(0)
摘要: 效果图:生效日期必须在失效日期之前 <el-form-item label="生效日期" prop="effectiveDate"> <el-date-picker v-model="submitForm.effectiveDate" :disabled="disabled" placeholder 阅读全文
posted @ 2022-07-12 10:53 Stitchhhhh 阅读(252) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <style> @keyframes myfirst { 0% { transform: rotateY(0deg) } 100% { tra 阅读全文
posted @ 2022-06-30 15:25 Stitchhhhh 阅读(57) 评论(0) 推荐(0)
摘要: 效果图: // getClientRecond.js const getClientRecond = { sys: "other", sysVersion: "", browser: "", browserVersion: "", token: "", userId: "", sysBits:"", 阅读全文
posted @ 2022-06-20 10:46 Stitchhhhh 阅读(253) 评论(0) 推荐(0)