摘要:本人第一次写这个写的不好还望指出来作为一个由于公司产品的升级然促使我从一个后端人员自学变成前端的开发人员公司做的数据管理系统所以离不开表格了然后表格样式统一啥的就想到封装一个里面的了效果图表格组件的引入与使用监测数据表格
本人第一次写这个 写的不好还望指出来
作为一个由于公司产品的升级然促使我从一个后端人员自学变成前端的开发人员 !
公司做的数据管理系统所以离不开表格了 然后表格样式统一啥的就想到封装一个element-ui 里面的table+Pagination了
效果图
使用插槽slot 使用起来就和原来的table一样了
import comTable from "@/components/common/com-table" import { GetTempletExportList, GetTempletExportInfo } from "../../../api/transfer/index" import ApiConfig from "@/api/ApiConfig" export default { name: "templet", components: { comTable }, data() { return { tableData4: [], exporttableData: [], multipleSelection: [], currentpoint: null, currentitem: null, itemdialogshow: false, pointdialogshow: false, path: new ApiConfig().GetConfig().SysPath, checkeditem: [],//选中数据 } }, computed: { moduletype() { return this.$store.state.moduletype; }, userinfo() { return this.$store.state.user.userInfo; } }, watch: { moduletype() { this.init(); } }, created() { this.init(); }, methods: { init() { GetTempletExportList(this.userinfo.cityid, this.moduletype).then(re => { this.exporttableData = re.data; this.tableData4 = []; re.data.map(item => { this.tableData4.push({ name: item.fldTableDesc, point: { visible: false, value: "" }, item: { visible: true, value: item.ItemList } }) }) }, (error) => { this.$message({ customClass: "el-message_new", message: error, type: "error" }); }) }, handleSelectionChange(val) { console.log(val) this.multipleSelection = val; }, focuspoint(val) { this.currentpoint = val; }, focusitem(val) { this.currentitem = val; this.itemdialogshow = true; }, itemconfirm() { this.itemdialogshow = !this.itemdialogshow; }, itemhandleClose(done) { this.itemdialogshow = false; }, ItemGroupSelectchange(val) { this.checkeditem = val; console.log(this.checkeditem); let groupitemcontent = []; val.map(item => { groupitemcontent.push(item.fldItemName); }) this.currentitem.value = groupitemcontent.join(","); }, submit() { if (this.multipleSelection.length > 0) { let message = ""; let data = []; let name = ""; this.multipleSelection.map((item, index) => { name = item.name; let str = item.name; let info = false; if (item.item.visible && item.item.value == "") { message += `表[${str}]请选择因子`; info = true; } if (item.point.visible && item.point.value == "") { if (info) { message += `、请选择测点/断面!`; } else { message += `表[${str}]请选择测点/断面!`; } info = true; } if (info) { message += "comTable组件
" } data.push({ "AutoID": "1", "STCode": "", "PCode": "", "RCode": "", "RScode": "", "GDCODE": "", "type": this.moduletype, "itemcodeList": item.item.value.split(",").join("^"), "path": `${this.path.TempletExportSetting}${this.moduletype}.json`, "IsNeedNullData": "Y" }) }) if (message == "") { GetTempletExportInfo(data).then(re => { if (re.status == "ok") { var exportdata = eval((re.data)); const { export_json_to_excel } = require("../../../libs/Export2Excel"); if (exportdata[0].merg.length != 0) { var exdata = []; var itemlistUnit = []; var itemlistfldCharCode = []; for (var z = 0; z < exportdata[0].head.length - this.checkeditem.length; z++) { itemlistUnit.push(exportdata[0].head[z]); itemlistfldCharCode.push(exportdata[0].head[z]) } this.checkeditem.map(item => { itemlistUnit.push(item.fldUnit); itemlistfldCharCode.push(item.fldCharCode); }) var exdata = this.formatJson(exportdata[0].head, exportdata[0].data); exdata.unshift(itemlistUnit); exdata.unshift(itemlistfldCharCode); exdata.unshift(exportdata[0].head); console.log(exdata) exportdata[0].merg.push([0, 0, exportdata[0].head.length - 1, 0]) export_json_to_excel([name], exdata, name, exportdata[0].merg); } else { var exdata = this.formatJson(exportdata[0].head, exportdata[0].data); exdata.unshift(exportdata[0].head); exportdata[0].merg.push([0, 0, exportdata[0].head.length - 1, 0]) export_json_to_excel([name], exdata, name, exportdata[0].merg); } } else { this.$message({ message: "导出失败!", type: "error" }); } }) } else { this.$message({ dangerouslyUseHTMLString: true, customClass: "el-message_new", message: message, type: "warning" }); } } else { this.$message({ customClass: "el-message_new", message: "请先选择要导出的列表!", type: "warning" }); } }, formatJson(filterVal, jsonData) { return jsonData.map(v => filterVal.map(j => { return v[j]; }) ); } } }
commonway.js{{title}}
class CommonWay { /** * description:对数组的分页处理 * author:bilimumu * date:2017-10-28 * @param {number} [pageNo=1] 页码 * @param {number} [pageSize=10] 每页显示条数 * @param {any} [obj=[]] 待分页的数组 * @param {Boolean} [iscreateNewdata=true] 是否创建新的数据 * @returns 返回新的数组 * @memberof CommonWay */ pagination(pageNo = 1, pageSize = 10, obj = [], iscreateNewdata = true) { var array = []; if (iscreateNewdata) { array = JSON.parse(JSON.stringify(obj)); } else { array = obj; } var offset = (pageNo - 1) * pageSize; return (offset + pageSize >= array.length) ? array.slice(offset, array.length) : array.slice(offset, offset + pageSize); } } export default CommonWaycom-table.scss
.com-table { height: 100%; width: 100%; &-title { color: #FFF; background: #42A2F5; padding: 0; font-size: 15px; height: 40px; line-height: 40px; text-indent: 8px; } &-content { width: 100%; height: calc(100% - 40px - 55px); } &-content-nottitle { width: 100%; height: calc(100% - 55px); } &-page { height: 55px; width: 100%; background: #EFF3F8; display: flex; align-items: center; justify-content: center; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/96123.html
项目中element的表格,每次都cv很麻烦,可以用表格进行了二次封装,写一个Table组件。 首先,下面是表格样式 <el-table :data="tableData" :header-cell-style="headerStyle" :height="height" :border="bord...
摘要:社区的认可目前已经是相关最多的开源项目了,体现出了社区对其的认可。监听事件手动维护列表这样我们就简单的完成了拖拽排序。 完整项目地址:vue-element-admin 系类文章一:手摸手,带你用vue撸后台 系列一(基础篇)系类文章二:手摸手,带你用vue撸后台 系列二(登录权限篇)系类文章三:手摸手,带你用vue撸后台 系列三(实战篇)系类文章四:手摸手,带你用vue撸后台 系列...
摘要:社区的认可目前已经是相关最多的开源项目了,体现出了社区对其的认可。监听事件手动维护列表这样我们就简单的完成了拖拽排序。 完整项目地址:vue-element-admin 系类文章一:手摸手,带你用vue撸后台 系列一(基础篇)系类文章二:手摸手,带你用vue撸后台 系列二(登录权限篇)系类文章三:手摸手,带你用vue撸后台 系列三(实战篇)系类文章四:手摸手,带你用vue撸后台 系列...
摘要:一封装的组件定义表格高度全屏增加前台分页功能。表格内编辑后,自动选中该行。单元格内数据样式单元格内按钮,可多个。触发组件绑定函数,参数按钮名称,按钮样式,按钮事件标识。单元格是否可点击的判断函数,可进行复杂的函数判断。 vue-bxz-table 一、封装element-ui的table组件: 定义表格高度全屏 增加前台分页功能。 自定义表头,循环输出整体表结构。 表格内编辑(输入框...
摘要:同时增加了单元测试,使用了,增加了可视化配置权限,增加了自定义布局等等,优化了原先的权限方案,支持不刷新页面更新路由等等功能。虽然它的初衷是为了单元测试的,但正好满足了我们的需求。它会重写浏览器的对象,从而才能拦截所有请求,代理到本地。 前言 vue-element-admin 从 2017.04.17提交第一个 commit 以来,维护至今已经有两年多的时间了了,发布了四十多个版本,...
阅读 1532·2023-04-26 01:54
阅读 1563·2021-09-30 09:55
阅读 2589·2021-09-22 16:05
阅读 1722·2021-07-25 21:37
阅读 2587·2019-08-29 18:45
阅读 1862·2019-08-29 16:44
阅读 1852·2019-08-29 12:34
阅读 1316·2019-08-23 14:02