摘要: import { reactive } from "vue"; export interface IPageInfo { pageNum: number; pageSize: number; totalCount: number; } export interface IUsePageReturn 阅读全文
posted @ 2023-06-29 17:31 wangwht 阅读(387) 评论(0) 推荐(0) 编辑
摘要: import $axios from '../axios-mall' import { queryStringify, filterEmpty } from '../utils' /** * ajax get * @param url * @param config * @returns {Axio 阅读全文
posted @ 2023-06-29 17:28 wangwht 阅读(20) 评论(0) 推荐(0) 编辑
摘要: HTML <div id="send-btn"> <button> // 这里是一个svg的占位 Send </button> </div> CSS #send-btn{ display: flex; align-items: center; justify-content: center; hei 阅读全文
posted @ 2020-09-07 14:42 wangwht 阅读(1349) 评论(0) 推荐(0) 编辑
摘要: 第一步在项目根目录创建.env.pre 文件 第二部在package.json 文件增加pre打包命令 vue-cli-service build --mode pre 第三部创建js文件 development 开发环境 production 生产环境 阅读全文
posted @ 2020-09-03 17:33 wangwht 阅读(2804) 评论(0) 推荐(0) 编辑
摘要: //css.grid-container { width: 100%; overflow: hidden; .grid-wrapper { display: flex; flex-wrap: wrap; overflow: hidden; margin: -6px; .grid-item { wid 阅读全文
posted @ 2020-06-24 17:52 wangwht 阅读(307) 评论(0) 推荐(0) 编辑
摘要: js wxml wxss 阅读全文
posted @ 2019-12-05 18:28 wangwht 阅读(905) 评论(0) 推荐(0) 编辑
摘要: 安装 npm install xlsx <script lang="javascript" src="dist/xlsx.full.min.js"></script> github地址https://github.com/SheetJS/sheetjs <template> <div @drop=" 阅读全文
posted @ 2019-12-05 18:21 wangwht 阅读(364) 评论(0) 推荐(0) 编辑
摘要: var esapi = axios.create({ baseURL: '/', timeout: 30000, headers: { post:{ 'Content-Type':'application/x-www-form-urlencoded' } }, withCredentials:tru 阅读全文
posted @ 2018-12-19 16:12 wangwht 阅读(905) 评论(0) 推荐(0) 编辑
摘要: 找到VUE项目中config文件夹下index.js 文件的 proxyTable方法 添加 '/api': { target: 'http://dev.ceshi.com', changeOrigin: true } 就会拦截域名/api 下的请求 '/api': { target: 'http: 阅读全文
posted @ 2018-10-31 16:13 wangwht 阅读(268) 评论(0) 推荐(0) 编辑
摘要: function scrollTo(objid,contentId){ $("#"+contentId).scrollTop($("#"+objid).offset().top - $("#"+contentId).offset().top + $("#"+contentId).scrollTop( 阅读全文
posted @ 2017-07-19 16:47 wangwht 阅读(650) 评论(0) 推荐(0) 编辑