05 2021 档案

摘要:/** * @method 数组去重 * @param {Array} ary 需要去重的数组 * @return {Array} tableData 去重后的数组 */ delRepeatData(ary) { let obj = {}; let tableData = []; tableData 阅读全文
posted @ 2021-05-28 14:00 云霄紫潭 阅读(91) 评论(0) 推荐(0)
摘要://G6组件 <template> <div id="container" :style="{ height: '500px', width: '100%' }" /> </template> <script> import G6 from '@antv/g6' export default { d 阅读全文
posted @ 2021-05-28 13:43 云霄紫潭 阅读(489) 评论(0) 推荐(0)
摘要:需要 安装 xlsx HTML <div> <el-upload action="222" accept=".xlsx,.xls" :auto-upload="false" :show-file-list="false" :on-change="hanlde" > <el-button size=" 阅读全文
posted @ 2021-05-18 22:32 云霄紫潭 阅读(273) 评论(0) 推荐(0)
摘要:index import Vue from 'vue' import Vuex from 'vuex' import getters from './getters' import 自定义 from './modules/user' //导入的modules 文件 Vue.use(Vuex) con 阅读全文
posted @ 2021-05-14 09:03 云霄紫潭 阅读(134) 评论(0) 推荐(0)