咏竹莉
where there is a will,there is a way
上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: function formatNumber(n) { n = n.toString() return n[1] ? n : '0' + n } /** * 时间戳转化为年 月 日 时 分 秒 * number: 传入时间戳 * format:返回格式,支持自定义,但参数必须与formateArr里保 阅读全文
posted @ 2022-01-13 14:57 咏竹莉 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 1. 首先下载echarts微信版 地址: https://github.com/ecomfe/echarts-for-weixin/tree/master/ec-canvas 下载后文件夹,放到项目根目录结构如图: 2、在使用的.xml中写入: <view class="onOffChart"> 阅读全文
posted @ 2022-01-13 14:53 咏竹莉 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1. Content-Type: application/json let data = {"code":"1234","name":"yyyy"}; axios.post(`${this.$url}/test/testRequest`,data) .then(res=>{ console.log( 阅读全文
posted @ 2021-12-23 16:25 咏竹莉 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 1. 输入框禁止输入中文 <el-input v-model.trim="modalForm.password" placeholder="******" @input="modalForm.password = modalForm.password.replace(/[\u4E00-\u9FA5] 阅读全文
posted @ 2021-12-17 17:34 咏竹莉 阅读(727) 评论(0) 推荐(0) 编辑
摘要: <el-table-column label="序号" type="index" width="50" align="center"> <template slot-scope="scope"> <span>{undefined{(page.currentPage - 1) * page.pageS 阅读全文
posted @ 2021-12-10 14:28 咏竹莉 阅读(739) 评论(0) 推荐(0) 编辑
摘要: 原理: 当弹框关闭后将分页销毁,弹框开启后再重新渲染,就回到了初始状态 解决: <page v-if="pageData.total > 0 && isShowModal" :total="pageData.total" :current-page="pageData.page" :page-siz 阅读全文
posted @ 2021-12-09 17:50 咏竹莉 阅读(98) 评论(0) 推荐(0) 编辑
摘要: // conditionArr: 查询条件var conditionArr=[{ name:'广州', type:'area' },{ name:'一本', type:'batch' }]; // 查询数组 var dataArr=[{ name:'广州大学1', area:'广州', batch: 阅读全文
posted @ 2021-12-07 16:24 咏竹莉 阅读(902) 评论(0) 推荐(0) 编辑
摘要: const all_permissions = [ { permission_id: 1, permission_name: "Getting User List", permission_method: "GET", permission_url: /^\/panel\/user$/ }, { p 阅读全文
posted @ 2021-12-07 16:16 咏竹莉 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 错误写法: n < size ? return false : return true 错误原因: 冒号前后是表达式,而不能是语句 ? : 运算符只支持表达式,而不支持语句 return true; return false; 都是语句 正确写法: return (n < size) ? false 阅读全文
posted @ 2021-12-07 10:19 咏竹莉 阅读(111) 评论(0) 推荐(0) 编辑
摘要: <el-table-column prop="is_online" label="状态"> <template slot-scope="scope"> <span :class="scope.row.is_online == '0' ? 'off-line' : scope.row.is_onlin 阅读全文
posted @ 2021-12-03 16:18 咏竹莉 阅读(287) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页