Avue-Card用法

1、基本属性

 
<template>
<!-- 基础组件 --><basic-container><!-- <el-button @click='exportHandle'>导出</el-button> --><avue-crud//设置表格属性:option="option"//来存取页面的值v-model="form"//获取后台数据:data="data":table-loading="loading"//分页:page="page"//权限控制  操作按钮动态显示:permission="permissionList"//打开前回调:before-open="beforeOpen"// 关闭前回调:before-close="beforeClose"//获取dom 结构ref="crud"//数据编辑后出发@row-update="rowUpdate"//新增数据确定后执行@row-save="rowSave"// 行删除@row-del="rowDel"//点击搜索后触发该事件@search-change="searchChange"//清空搜索回调方法@search-reset="searchReset"//当选择项发生变化时会触发该事件@selection-change="selectionChange"@current-change="currentChange"//点击每页多少条@size-change="sizeChange"//点击刷新@refresh-change="onLoad(page)"//初始化页面@on-load="onLoad"></avue-crud></basic-container>
</template>

2、自定义列表

<avue-crud :data="data" :option="option" ref="crud"><!-- 左边插槽 --><template slot-scope="scope" slot="menuLeft"><el-button type="danger" @click="$refs.crud.rowAdd()">新增</el-button></template><!-- 右边插槽 --><template slot-scope="scope" slot="menuRight"><el-button type="danger" @click=() => {}">刷新</el-button></template><!-- 自定义行内操作栏插槽 --><template slot-scope="{row,index}" slot="menu"><el-button @click="$refs.crud.rowEdit(row,index)">编辑</el-button><el-button @click="$refs.crud.rowDel(row,index)">删除</el-button></template><!-- 自定义弹窗内按钮插槽 --><template slot-scope="{row,index,type}" slot="menuForm"><el-button v-if="type=='add'" @click="$refs.crud.rowSave()">自定义新增</el-button><el-button v-if="type=='edit'" @click="$refs.crud.rowUpdate()>自定义修改</el-button><el-button @click="$refs.crud.closeDialog()">取消</el-button></template><!-- 自定义表单插槽,slot="propForm" --><template slot-scope="{type,disabled}" slot="nameForm"> // column: [{prop:'name',formslot:true}]<el-tag v-if="type=='add'">新增</el-tag><el-tag v-else-if="type=='edit'">修改</el-tag><el-tag v-else-if="type=='view'">查看</el-tag><el-tag>{{user.name?user.name:'暂时没有内容'}}</el-tag><el-input :disabled="disabled" v-model="user.name"></el-input></template><!-- 自定义表单错误提示插槽,slot="propError" --><template slot-scope="{error}" slot="nameError"> // column: [{prop:'name',labelslot:true}]<p style="color:green">自定义提示{{error}}</p></template><!-- 自定义表单标题,slot="propLabel" --><template slot-scope="scope" slot="nameLabel"> // column: [{prop:'name',errorslot:true}]<span>姓名&nbsp;&nbsp;</span><el-tooltip class="item" effect="dark" content="文字提示" placement="top-start"><i class="el-icon-warning"></i></el-tooltip></template><!-- 向搜索表单插入一个额外的(column中没有的字段)输入框 --><template slot="search"><el-form-item label="状态"><el-input placeholder="状态" v-model="search.value"/></el-form-item></template><!-- 向表单中插入一个额外的输入框 --><template slot="menuForm"><el-form-item label="维修"><el-input placeholder="维修" v-model="search.value"/></el-form-item></template>
</avue-crud>

3、定义初始数据

 option: {//列的对其方式align:'left',//表格宽度width: '100%',//表格高度差(主要用于减去其他部分让表格高度自适应)calcHeight: 'auto',//表格高度height: 'auto',//表格最大高度maxHeight: 'auto',// 弹框文字提示tip: false,// 边框border: true,// 显示序号index: true,// 序号标题indexLabel: "序号",//打印按钮printBtn: true	// 刷新按钮	refreshBtn: true	// 查看按钮viewBtn: true,// 行内编辑按钮editBtn: false,// 行内删除delBtn: false,//首次加载是否显示搜索searchShow: true, editBtnText:'编辑文案',viewBtnText:'查看文案',printBtnText:'打印文案',excelBtnText:'导出文案',updateBtnText:'修改文案',saveBtnText:'保存文案',cancelBtnText:'取消文案',//弹框宽度控制dialogWidth: 600,column: [{label: "请假人",//匹配后端字段prop: "userId",//输入框状态控制 默认为inputtype: "tree",
//type:input/input/select/radio/checkbox/textarea/cascader/date/time/datetime
/daterange/timerange/datetimerange/week/month/year/dates/password/switch/tree/number
maxRows:4,//最大行(当type为textarea,当number时最大值)
minRows:2,//最小行(当type为textarea,当number时最小值)// 搜索栏目自定义内容 同时控制页面显示隐藏search: true,//表单编辑时是否禁止输入editDisabled: true, //表单新增时是否禁止输入addDisabled: true, //隐藏显示当前项display: false,// 表单新增是可见addDisplay: false,// 表单查看是否可见viewDisplay: true,// 编辑按钮是否可见editDisplay: false,// 隐藏列hide: true,//选着多个 当type为tree生效multiple: true,// 传入静态字典dicData: [],// 字典参数   props 匹配后台字段props: {value: "sysId",label: "name",},//字典地址dicUrl: "/api/blade-system/dict/dictionary?code=exam_state",//时间格式format: "yyyy-MM-dd hh:mm:ss",valueFormat: "yyyy-MM-dd hh:mm:ss",//验证rules: [{required: true,message: "请选择请假人",trigger: "blur",},],},data: []

4、方法中使用方法

  methods: {rowSave(row, done, loading) {add(row).then(() => {done();this.onLoad(this.page);this.$message({type: "success",message: "操作成功!"});}, error => {window.console.log(error);loading();});},rowUpdate(row, index, done, loading) {update(row).then(() => {done();this.onLoad(this.page);this.$message({type: "success",message: "操作成功!"});}, error => {window.console.log(error);loading();});},rowDel(row) {this.$confirm("确定将选择数据删除?", {confirmButtonText: "确定",cancelButtonText: "取消",type: "warning"}).then(() => {return remove(row.id);}).then(() => {this.onLoad(this.page);this.$message({type: "success",message: "操作成功!"});});},handleDelete() {if (this.selectionList.length === 0) {this.$message.warning("请选择至少一条数据");return;}this.$confirm("确定将选择数据删除?", {confirmButtonText: "确定",cancelButtonText: "取消",type: "warning"}).then(() => {return remove(this.ids);}).then(() => {this.onLoad(this.page);this.$message({type: "success",message: "操作成功!"});this.$refs.crud.toggleSelection();});},beforeOpen(done, type) {if (["edit", "view"].includes(type)) {getDetail(this.form.id).then(res => {this.form = res.data.data;});}done();},searchReset() {this.query = {};this.onLoad(this.page);},searchChange(params, done) {if (params.dispatchDate) {console.log(params.dispatchDate, '################');let date = new Date(params.dispatchDate)date.setDate(date.getDate())console.log(date.toISOString().split('T')[0]); // 输出结果为 "2023-10-20"let startTimes = date.toISOString().split('T')[0]params.weekdate = startTimesparams.yearOfOperation = startTimes.substring(0, 4)delete params.dispatchDate;}this.query = params;this.page.currentPage = 1;this.onLoad(this.page, params);done();},selectionChange(list) {this.selectionList = list;},selectionClear() {this.selectionList = [];this.$refs.crud.toggleSelection();},currentChange(currentPage) {this.page.currentPage = currentPage;},sizeChange(pageSize) {this.page.pageSize = pageSize;},onLoad(page, params = {}) {this.loading = true;getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {const data = res.data.data;this.page.total = data.total;this.data = data.records;for (let i = 0; i < this.data.length; i++) {const lv = this.data[i]lv.riskAnalysisCompletionRate = lv.riskAnalysisCompletionRate + '%'lv.hazardRectificationRate = lv.hazardRectificationRate + '%'lv.completionRateOfTroubleshootingTasks = lv.completionRateOfTroubleshootingTasks + '%'}this.loading = false;this.selectionClear();});}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/46371.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

蓝桥杯每日N题 (砝码称重)

大家好 我是寸铁 希望这篇题解对你有用&#xff0c;麻烦动动手指点个赞或关注&#xff0c;感谢您的关注 不清楚蓝桥杯考什么的点点下方&#x1f447; 考点秘籍 想背纯享模版的伙伴们点点下方&#x1f447; 蓝桥杯省一你一定不能错过的模板大全(第一期) 蓝桥杯省一你一定不…

Python入门教程 | Python简介和环境搭建

Python 简介 Python是一种高级编程语言&#xff0c;由荷兰人Guido van Rossum于1991年创建。它以其简单易学、可读性强和丰富的生态系统而受到广泛喜爱。它被广泛应用于各个领域&#xff0c;包括Web开发、科学计算、数据分析、人工智能等。 Python的特点 简洁易读&#xff1a…

回归预测 | MATLAB实现TSO-LSSVM金枪鱼群算法优化最小二乘支持向量机多输入单输出回归预测(多指标,多图)

回归预测 | MATLAB实现TSO-LSSVM金枪鱼群算法优化最小二乘支持向量机多输入单输出回归预测&#xff08;多指标&#xff0c;多图&#xff09; 目录 回归预测 | MATLAB实现TSO-LSSVM金枪鱼群算法优化最小二乘支持向量机多输入单输出回归预测&#xff08;多指标&#xff0c;多图&a…

免费开源的vue+express搭建的后台管理系统

此项目已开源 前端git地址&#xff1a;exp后台管理系统前端: exp后台管理系统前端 后端git地址&#xff1a;express后台管理系统: express后台管理系统 安装运行 npm i yarn i 前端: npm run dev | yarn dev 后端: npm run start | yarn start 主要技术栈 前端后端名称版本名…

大数据及软件教学与实验专业实训室建设方案

一 、系统概述 大数据及软件教学与实验大数据及软件教学与实验在现代教育中扮演重要角色&#xff0c;这方面的教学内容涵盖了大数据处理、数据分析、数据可视化和大数据应用等多个方面。以下是大数据及软件教学与实验的一般内容&#xff1a;1. 数据基础知识&#xff1a;教授学生…

redis--事务

redis事务 在Redis中&#xff0c;事务是一组原子性操作的集合&#xff0c;它们被一起执行&#xff0c;要么全部执行成功&#xff0c;要么全部回滚。虽然Redis的事务并不遵循传统数据库的ACID特性&#xff0c;但它仍然提供了一种将多个命令打包成一组执行的机制&#xff0c;适用…

Unity启动项目无反应的解决

文章首发见博客&#xff1a;https://mwhls.top/4803.html。 无图/格式错误/后续更新请见首发页。 更多更新请到mwhls.top查看 欢迎留言提问或批评建议&#xff0c;私信不回。 摘要&#xff1a;通过退还并重新载入许可证以解决Unity项目启动无反应问题。 场景 Unity Hub启动项目…

ZLMediakit-method ANNOUNCE failed: 401 Unauthorized

使用ffmpeg推流&#xff1a; nohup ffmpeg -stream_loop -1 -re -i "/usr/local/mp4/test.mp4" -vcodec h264 -acodec aac -f rtsp -rtsp_transport tcp rtsp://10.55.134.12/live/test &[rootlocalhost ~]# ffmpeg -stream_loop -1 -re -i "/usr/local/mp…

人脸老化预测(Python)

本次项目的文件 main.py主程序如下 导入必要的库和模块&#xff1a; 导入 TensorFlow 库以及自定义的 FaceAging 模块。导入操作系统库和参数解析库。 定义 str2bool 函数&#xff1a; 自定义函数用于将字符串转换为布尔值。 创建命令行参数解析器&#xff1a; 使用 argparse.A…

视觉学习(八)---zed调用yolov5之目标检测遇到的问题及解决

1.前言 zed调用yolov5进行目标检测时遇到的问题&#xff0c;记录下~~ 2.环境信息 开发板&#xff1a;Jetson Xviewer NX 摄像头&#xff1a; zed2系统&#xff1a;Ubuntu18.043.问题及解决 问题1&#xff1a; RuntimeError: cuDNN error: CUDNN_STATUS_MAPPING_ERROR 原因&…

【LINUX相关】生成随机数(srand、/dev/random 和 /dev/urandom )

目录 一、问题背景二、修改方法2.1 修改种子2.2 使用linux中的 /dev/urandom 生成随机数 三、/dev/random 和 /dev/urandom 的原理3.1 参考连接3.2 重难点总结3.2.1 生成随机数的原理3.2.2 随机数生成器的结构3.2.3 二者的区别和选择 四、在代码的使用方法 一、问题背景 在一个…

RabbitMq-2安装与配置

Rabbitmq的安装 1.上传资源 注意&#xff1a;rabbitmq的版本必须与erlang编译器的版本适配 2.安装依赖环境 //打开虚拟机 yum install build-essential openssl openssl-devel unixODBC unixODBC-devel make gcc gcc-c kernel-devel m4 ncurses-devel tk tc xz3.安装erlan…

理解docker命令

基础命令 帮助命令 docker --help&#xff08;帮助命令&#xff09; 用于获取某个命令的帮助信息 #命令帮助 docker 命令 --help 小技巧 换行符 \ 使用命令换符&#xff0c;可以让繁杂命令变得有条理 #命令换行&#xff0c;使用换行符 \ docker ... \... \ 镜像命令 d…

不含数字的webshell绕过

异或操作原理 1.首先我们得了解一下异或操作的原理 在php中&#xff0c;异或操作是两个二进制数相同时&#xff0c;异或(相同)为0&#xff0c;不同为1 举个例子 A的ASCII值是65&#xff0c;对应的二进制值是0100 0001 的ASCII值是96&#xff0c;对应的二进制值是 0110 000…

Android11 中 LED 使用-RK3568

文章目录 前言原理图设备树驱动前言 现在我们来学习点亮LED 原理图 然后对应在核心板原理图上查找 Working_LEDEN_H_GPIO0_B7,如下图所示: 那么我们只要控制 GPIO0_B7 即可控制 led 的亮灭。 设备树 leds: leds {compatible = "gpio-leds";work_led: work {gpi…

6-模板初步使用

官网: 中文版: 介绍-Jinja2中文文档 英文版: Template Designer Documentation — Jinja Documentation (2.11.x) 模板语法 1. 模板渲染 (1) app.py 准备数据 import jsonfrom flask import Flask,render_templateimport settingsapp Flask(__name__) app.config.from_obj…

flutter Android 打包和发布

环境 mac vscode 项目简易打包 打开VScode终端&#xff1a;输入命令flutter build apk即可 可能报错&#xff1a; w: Runtime JAR files in the classpath should have the same version. These files were found in the classpath: 修改android/build.gradle 中版本信息 项…

上海亚商投顾盘:沪指震荡反弹 机器人概念股掀涨停潮

上海亚商投顾前言&#xff1a;无惧大盘涨跌&#xff0c;解密龙虎榜资金&#xff0c;跟踪一线游资和机构资金动向&#xff0c;识别短期热点和强势个股。 市场情绪 三大指数今日震荡反弹&#xff0c;科创50盘中涨超1%。机器人概念股掀涨停潮&#xff0c;通力科技、昊志机电、哈焊…

Java实现将内容写到文件里面

目录 1 实现 1 实现 String appendLog "";File logFile new File(logFileName);// append file contentFileOutputStream fos null;try {fos new FileOutputStream(logFile, true);fos.write(appendLog.getBytes("utf-8"));fos.flush();} catch (Ex…

CentOS ens160 显示disconnected

使用nmcli device查看网卡状态&#xff0c;显示如图&#xff1a; 检查宿主机系统VMware DHCP Sevice和VMware NAT Sevice服务是否正常运行。 右键点击我的电脑管理按钮&#xff0c;打开计算机管理点击服务