【Vue】Element开发笔记

Element开发笔记

前言

官网 https://element.eleme.cn/#/zh-CN/component/upload

其它项目网站

https://www.cnblogs.com/qq2806933146xiaobai/p/17180878.html

表格

序号列添加

<el-table-column type="index" :index="handleIndexCalc" label="#" align="center" />

handleIndexCalc是计算分页中的ID,否则序号不准确。

// 自动计算分页 Id
handleIndexCalc(index) {return ((this.queryParams.pageIndex - 1) * this.queryParams.pageSize + index + 1)
},

选择列添加

<el-table-column sortable type="selection" align="center" />

注意:同时拥有 序号列、选择列,序号必须在 选择列前面

表格高度统一,防止数据量少时,页脚上升

表格设置height属性,根据浏览器界面大小自动计算高度,留页脚面板高度。

<el-table ref="dataResult"v-loading="loading":data="dataResult.dataSource":height="tableHeight":default-sort="{ prop: queryParams.orderby, order: queryParams.sort }"row-key="id"stripeborderstyle="width: 100%;height=250"@sort-change="handleSortable">

Data:

// 表格高度
tableHeight: window.innerHeight - 280,

项目实例:

      <!-- 表格数据展示 --><el-row><el-table ref="dataResult"v-loading="loading":data="dataResult.dataSource":height="tableHeight":default-sort="{ prop: queryParams.orderby, order: queryParams.sort }"row-key="id"stripeborderstyle="width: 100%;height=250"@sort-change="handleSortable"><el-table-column type="index" :index="handleIndexCalc" label="#" align="center" /><el-table-column sortable type="selection" align="center" /><el-table-column sortable prop="title" :show-overflow-tooltip="true" align="center" label="标题" width="200px" /><el-table-column sortable prop="fileName" :show-overflow-tooltip="true" align="left" label="文档名称" width="200px" /><el-table-column sortable prop="fileType" :show-overflow-tooltip="true" align="left" label="文档格式" width="100px" /><el-table-column sortable prop="securityLevel" align="left" label="密级" width="80px" /><el-table-column prop="keyWords" :show-overflow-tooltip="true" align="left" label="关键字" width="200px" /><el-table-column sortable prop="fileSource" :show-overflow-tooltip="true"  align="left" label="资料来源" width="100px" /><el-table-column sortable prop="createName" align="left" label="创建人" width="100px" /><el-table-column sortable prop="createTime" :show-overflow-tooltip="true" align="left" label="创建时间" width="200px" /><el-table-column sortable prop="downloadCount" :show-overflow-tooltip="true" align="left" label="下载次数" width="100px" /><el-table-column sortable prop="status_dictText" :show-overflow-tooltip="true" align="left" label="审核状态" width="100px" /><el-table-column prop="failReason" align="left" :show-overflow-tooltip="true" label="不通过原因" width="250px" /><el-table-column prop="remarks" align="left" :show-overflow-tooltip="true" label="备注" width="300px" /><el-table-column label="操作" align="center" fixed="right" width="300px"><template slot-scope="scope"><el-button v-permission="['PRIV_DOC_PREVIEW']" type="text" size="mini" @click="handlePreview(scope.row)">预览</el-button><el-button v-permission="['PRIV_DOC_EDIT']" type="text" size="mini" @click="handleEdit(scope.row)">修改</el-button><el-button v-permission="['PRIV_DOC_DOWNLOAD']" type="text" size="mini" @click="handleDownLoad(scope.row)">下载</el-button><el-button v-if="scope.row.status !='3'" v-permission="['PRIV_DOC_APPROVED']" type="text" size="small" @click="handleApproved(scope.row)">审批</el-button><el-button v-if="scope.row.status !='4'" v-permission="['PRIV_DOC_APPROVEDFAILED']" type="text" size="small" @click="handleApprovedFail(scope.row)">驳回</el-button></template></el-table-column></el-table><pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageIndex" :limit.sync="queryParams.pageSize" @pagination="getList" /></el-row>

Select选择器

<template><el-select v-model="value" clearable placeholder="请选择"><el-optionv-for="item in options":key="item.value":label="item.label":value="item.value"></el-option></el-select>
</template><script>export default {data() {return {options: [{value: '选项1',label: '黄金糕'}, {value: '选项2',label: '双皮奶'}, {value: '选项3',label: '蚵仔煎'}, {value: '选项4',label: '龙须面'}, {value: '选项5',label: '北京烤鸭'}],value: ''}}}
</script>
参数说明类型可选值默认值
value / v-model绑定值boolean / string / number
multiple是否多选booleanfalse
disabled是否禁用booleanfalse
value-key作为 value 唯一标识的键名,绑定值为对象类型时必填stringvalue
size输入框尺寸stringmedium/small/mini
clearable是否可以清空选项booleanfalse
collapse-tags多选时是否将选中值按文字的形式展示booleanfalse
multiple-limit多选时用户最多可以选择的项目数,为 0 则不限制number0
nameselect input 的 name 属性string
autocompleteselect input 的 autocomplete 属性stringoff
auto-complete下个主版本弃用stringoff
placeholder占位符string请选择
filterable是否可搜索booleanfalse
allow-create是否允许用户创建新条目,需配合 filterable 使用booleanfalse
filter-method自定义搜索方法function
remote是否为远程搜索booleanfalse
remote-method远程搜索方法function
loading是否正在从远程获取数据booleanfalse
loading-text远程加载时显示的文字string加载中
no-match-text搜索条件无匹配时显示的文字,也可以使用slot="empty"设置string无匹配数据
no-data-text选项为空时显示的文字,也可以使用slot="empty"设置string无数据
popper-classSelect 下拉框的类名string
reserve-keyword多选且可搜索时,是否在选中一个选项后保留当前的搜索关键词booleanfalse
default-first-option在输入框按下回车,选择第一个匹配项。需配合 filterableremote 使用boolean-false
popper-append-to-body是否将弹出框插入至 body 元素。在弹出框的定位出现问题时,可将该属性设置为 falseboolean-true
automatic-dropdown对于不可搜索的 Select,是否在输入框获得焦点后自动弹出选项菜单boolean-false

项目实例

              <el-select v-model="queryParams.queryStatus" placeholder="请选择文档状态" filterable clearable  @change="handleSelectSearchStatus"><el-option v-for="item in statusOptions" :key="item.value" :label="item.label" :value="item.value" /></el-select>
 // 搜索框-文档状态statusOptions: [],// 创建时 created() {getOption('SYSTEM_STATUS').then((response) => {this.statusOptions = response.data}),this.getList()},// 选择文档状态(搜索框)handleSelectSearchStatus(e) {this.queryParams.queryStatus = e},

el-select 使用 multiple多选属性时,数据定义必须符合规范,并且返回的是 字符串数组,一开始需要定义好,否则数据无法显示。

              <el-selectv-model="keyWordsList"multiplefilterableallow-createdefault-first-optionplaceholder="请填写关键字(可多选,可手填按回车键)"><el-optionv-for="item in keyWordsOptions":key="item.wordName":label="item.wordName":value="item.wordName" /></el-select>
    // 控件绑定的keyWordsList: [],/** 编辑按钮操作 */handleEdit(row) {this.reset()this.postForm = { ...row }this.keyWordsList =  row.keyWords.split(',') //数据库取出来是字符串,转数组this.bOpenForm = truethis.title = '编辑文档'},

dialog弹出框

需要注意浅拷贝深拷贝 问题,row是Object对象类型,如果直接赋值,就变成了 浅拷贝,相当于我们的引用传递。

//方法一
this.form = JSON.parse(JSON.stringify(row));
//方法二
this.form = {...row}
/** 新增按钮操作 */
handleCreate() {this.reset()this.open = truethis.title = '添加关键字'
},
/** 修改按钮操作 */
handleUpdate(row) {this.reset()this.form = { ...row }this.open = truethis.title = '修改关键字'
},

每次窗体打开,并不会清除上一次验证规则,需要手动调用clearValidate()方法清除,与C#一样。

  watch: {// 打开弹窗,清空上一次验证规则bOpenForm: {handler(newVal) {if (newVal) {this.$nextTick(() => {this.$refs['postForm'].clearValidate()})}},},},

el-upload上传组件

:action是执行上传动作的后台接口,el-button是触发上传的按钮。

multiple 设置是否可以同时选中多个文件上传

accept 设置限制上传文件的格式

<el-upload :action="uploadActionUrl"accept="image/jpeg,image/gif,image/png":before-upload="onBeforeUpload"multiple:limit="3":on-exceed="handleExceed"><el-button size="small" type="primary">点击上传</el-button><div slot="tip" class="el-upload__tip">请上传图片格式文件</div>
</el-upload>
...onBeforeUpload(file){const isIMAGE = file.type === 'image/jpeg'||'image/gif'||'image/png';const isLt1M = file.size / 1024 / 1024 < 1;if (!isIMAGE) {this.$message.error('上传文件只能是图片格式!');}if (!isLt1M) {this.$message.error('上传文件大小不能超过 1MB!');}return isIMAGE && isLt1M;}

属性

参数说明dd类型可选值默认值
action必选参数,上传的地址string
headers设置上传的请求头部object
multiple是否支持多选文件boolean
data上传时附带的额外参数object
name上传的文件字段名stringfile
with-credentials支持发送 cookie 凭证信息booleanfalse
show-file-list是否显示已上传文件列表booleantrue
drag是否启用拖拽上传booleanfalse
accept接受上传的文件类型(thumbnail-mode 模式下此参数无效)string
on-preview点击文件列表中已上传的文件时的钩子function(file)
on-remove文件列表移除文件时的钩子function(file, fileList)
on-success文件上传成功时的钩子function(response, file, fileList)
on-error文件上传失败时的钩子function(err, file, fileList)
on-progress文件上传时的钩子function(event, file, fileList)
on-change文件状态改变时的钩子,添加文件、上传成功和上传失败时都会被调用function(file, fileList)
before-upload上传文件之前的钩子,参数为上传的文件,若返回 false 或者返回 Promise 且被 reject,则停止上传。function(file)
before-remove删除文件之前的钩子,参数为上传的文件和文件列表,若返回 false 或者返回 Promise 且被 reject,则停止删除。function(file, fileList)
list-type文件列表的类型stringtext/picture/picture-cardtext
auto-upload是否在选取文件后立即进行上传booleantrue
file-list上传的文件列表, 例如: [{name: ‘food.jpg’, url: ‘https://xxx.cdn.com/xxx.jpg’}]array[]
http-request覆盖默认的上传行为,可以自定义上传的实现function
disabled是否禁用booleanfalse
limit最大允许上传个数number
on-exceed文件超出个数限制时的钩子function(files, fileList)-

项目实例

这里使用了,父组件向子组件传参,子组件向父组件传参

            <el-form-item label="上传附件" prop="fileName"><file-upload v-model="postForm.fileName" :uploadlimit="filelimit" :accept="fileAccept" :listType="filelistType" @fileList="getFileList" :actionUrl="fileActionUrl"  :tips="filetips" /></el-form-item>

父组件传参数

      // 上传附件fileActionUrl: CONFIG_URL.PUBLIC_CONFIG.baseURL + '/api/doc/UpLoadFile',fileAccept: '.doc, .docx, .xls, .xlsx, .ppt, .pptx, .pdf',filelimit: 1,filelistType: 'file',filetips: '只能上传办公文档,其它类型建议不要上传',

子组件接收参数,在props中定义

  // 接收父组件传递的值props: {// 动作actionactionUrl: {type: String,required: true,default: '/api/doc/UpLoadFile'},// 接受上传的文件类型accept: {type: String,required: true},// 最大允许上传个数uploadlimit: {type: Number,required: true,default: 1},/** 文件列表的类型* drag是否启用拖拽上传* list-type 可选值 text/picture/picture-card**/listType: {type: String,required: true,default: 'text'},// 上传提示语tips: {type: String,required: false}},

子组件向父组件回传数据

      // $emit() 向外触发父组件中方法,fileList由父组件传递过来this.$emit("fileList", this.ret_fileList)

父组件接收子组件回传的数据,需要在watch监听器中实现,能够感知数据变化。

  watch: {// 监听文件列表变化fileList: {handler() {this.$emit('fileList', this.ret_fileList)}}},

子组件代码

<!-- 文件上传通用组件(支持拖拽上传,打开本地资源管理器) -->
<template><div class="content"><el-upload:action="actionUrl":accept="accept":on-preview="handlePreview":before-remove="beforeRemove":on-remove="handleRemove":on-exceed="handleExceed":on-success="handleSuccess":drag="listType!=='picture'":limit="uploadlimit":headers="header":file-list="fileList":list-type="listType"><el-button v-if="listType==='picture'" size="small" type="primary">点击上传</el-button><i v-if="listType!=='picture'" class="el-icon-upload" /><div v-if="listType!=='picture'" class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div><!-- 附件提示信息 --><div v-if="tips" slot="tip" class="el-upload__tip">{{ tips }}</div></el-upload></div>
</template>
<script>
import { getToken } from '@/utils/auth'
export default {name: 'FileUpload',// 接收父组件传递的值props: {// 动作actionactionUrl: {type: String,required: true,default: '/api/doc/UpLoadFile'},// 接受上传的文件类型accept: {type: String,required: true},// 最大允许上传个数uploadlimit: {type: Number,required: true,default: 1},/** 文件列表的类型* drag是否启用拖拽上传* list-type 可选值 text/picture/picture-card**/listType: {type: String,required: true,default: 'text'},// 上传提示语tips: {type: String,required: false}},data() {return {// 界面绑定的文件列表,参数不可更改,否则底层无法识别// 上传的文件列表,例如: [{name: 'food.jpg', url: 'https://xxx.cdn.com/xxx.jpg'}]fileList: [], // 服务器返回的文件列表ret_fileList: [],header: {}}},/*** watch侦听器* 侦听父组件传递的值,实现动态传递数据*/// watch: {// },created() {this.header = { token: getToken() }},methods: {// 文件列表重置reset() {this.ret_fileList = [ {fileName: undefined,fileType: undefined,fileUrl: undefined,viewUrl: undefined,cover: ''}]},// 文件超出个数限制时的钩子handleExceed() {this.$message.warning(`每次只能上传 ${this.uploadlimit} 个文件`)},// 点击的文件列表元素handlePreview(file) {console.log("你点击了 " + file.name)this.$message.warning("你点击了 " + file.name)},// 删除文件之前的钩子beforeRemove(file) {return this.$confirm(`确定移除 ${ file.name }文件?`)},// 文件列表移除文件时的钩子handleRemove(file, fileList) {console.log(file, fileList);this.fileList = this.fileList.filter((item) => {return item.name !== file.name })},// 文件上传成功时的钩子handleSuccess(response) {if (response.statusCode === 200) {this.$message({message: '上传成功',type: 'success'})this.ret_fileList = response.data}else{this.$message({type: 'error',message: response.msg})this.reset()}// $emit() 向外触发父组件中方法,fileList由父组件传递过来this.$emit("fileList", this.ret_fileList)}}
}</script>

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

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

相关文章

深度强化学习 第 4 章 DQN 与 Q 学习

4.1 DQN 最优动作价值函数的用途 假如我们知道 Q ⋆ Q_⋆ Q⋆​&#xff0c;我们就能用它做控制。 我们希望知道 Q ⋆ Q_⋆ Q⋆​&#xff0c;因为它就像是先知一般&#xff0c;可以预见未来&#xff0c;在 t t t 时刻就预见 t t t 到 n n n时刻之间的累计奖励的期望。假如…

5G来临,迎客莱带你探索运营商大数据的应用

随着5G时代的来临&#xff0c;不仅在算力的基础上得到了加强和保障&#xff0c;同时也丰富了计算的方式和模式&#xff0c;如边缘计算、霾计算等。计算方式和模式的改变&#xff0c;对于运营商来说&#xff0c;意味着更丰富的数据维度&#xff0c;更鲜活的数据和更强大的数据处…

无人机航拍图像拼接与目标识别

一、简介 无人机用来做图像侦察是常见功能&#xff0c;现有技术基本是无人机对某片区域进行飞行&#xff0c;人工实时监控飞行图像&#xff0c;将图像录制成视频供事后回放。此方法对人员业务要求比较高、反应速度足够快、不利于信息收集、录制视频丢失空间信息、对于后期开展区…

Qt判断一个点在多边形内还是外(支持凸边形和凹变形)

这里实现的方法是转载于https://blog.csdn.net/trj14/article/details/43190653和https://blog.csdn.net/WilliamSun0122/article/details/77994526 来实现的&#xff0c;并且按照Qt的规则进行了调整。 以下实现方法有四种&#xff0c;每种方法的具体讲解在转载的博客中有说明&…

Python之爬虫

目录 HTTP请求HTTP响应获得页面响应伪装用户访问打包数据爬取豆瓣top250 HTTP请求 HTTP&#xff1a;HypertextTransferProtcol 超文本传输协议 1、请求行 POST/user/info?new_usertrue HTTP/1.1#资源了路径user/info 查询参数new_usertrue 协议版本HTTP/1.1 2、请求头 Ho…

element ui 下拉框 选择月份和天数

一、背景 目前做的管理系统项目&#xff0c;期望实现功能为&#xff1a;设置出账周期和出账日&#xff0c;考虑使用element ui下拉框实现功能 二、所用技术 vue2element ui 三、实现效果 四、具体代码 <template><popup-frame :title"批量设置出账日" …

Leetcode—2530.执行K次操作后的最大分数【中等】(C语言向上取整数学公式)

2023每日刷题&#xff08;五&#xff09; Leetcode—2530.执行K次操作后的最大分数 向上取整思想 参考了这篇文章 有人肯定会问&#xff0c;这个向上取整为什么是这样来的。接下来我简单讲解一下。 数学式&#xff1a; x y 数学式&#xff1a;\frac{x}{y} 数学式&#xff1a…

配置Linux

首先安装VMware&#xff1a; 安装说明&#xff1a;&#xff08;含许可证的key&#xff09; https://mp.weixin.qq.com/s/XE-BmeKHlhfiRA1bkNHTtg 给大家提供了VMware Workstation Pro16&#xff1a; 链接&#xff1a;https://pan.baidu.com/s/1q8VE3TkPzDnM3u9bkTdA_g 提取码&…

文件的物理结构(连续分配,链接分配,索引分配)

1.文件块&#xff0c;磁盘块 类似于内存分页&#xff0c;磁盘中的存储单元也会被分为一个个“块/磁盘块/物理块”。 很多操作系统中&#xff0c;磁盘块的大小与内存块、页面的大小相同。 内存与磁盘之间的数据交换&#xff08;即读/写操作、磁盘I/O&#xff09;都是以“块”为…

详细解读DALLE 3技术报告:Improving Image Generation with Better Captions

Diffusion models代码解读&#xff1a;入门与实战 前言&#xff1a;OpenAI是推动大模型创新的领头羊&#xff0c;最近发布的DALLE 3凭借着远超市面上其他图片生成模型的表现&#xff0c;再次火出圈。最近OpenAI官方发布了DALLE 3的技术报告《Improving Image Generation with B…

后缀表达式求值

题目要求: 后缀表达式求值&#xff1a;建立一个操作数栈S。然后从左到右读表达式&#xff0c;如果读到操作数就将它压入栈S中&#xff0c;如果读到n元运算符(即需要参数个数为n的运算符)则取出由栈顶向下的n项操作数进行运算&#xff0c;再将运算的结果代替原栈顶的n项压入栈中…

Catalan 数 和 Stirling 数

这个也可以理解为栈&#xff0c;用 ( 表示 入栈 &#xff0c; ) 表示出栈 , 任何情况下表示入栈的 ( 都必须大于等于 ) 的个数 这个思路和入栈出栈的思路是等价的

ms-sql server sql 把逗号分隔的字符串分开

案例&#xff1a; sql 查询-字段里是逗号,分隔开的数组&#xff0c;查询匹配数据 sql 查询-字段里是逗号,分隔开的数组&#xff0c;查询匹配数据_sql server 数组匹配-CSDN博客 SQL SERVER 把逗号隔开的字符串拆分成行 SQL SERVER 把逗号隔开的字符串拆分成行_sqlserver拆分…

【暴力剪枝】CF1708D

https://codeforces.com/contest/1708/problem/D 题意 思路 这样的操作下&#xff0c;数列减的速度是非常快的&#xff0c;也就是说&#xff0c;易出现很多的0&#xff0c;0的操作没啥意义&#xff0c;所以我们要找到第一个 >0 的数对其后的序列进行排序&#xff0c;就能大…

【Edabit 算法 ★☆☆☆☆☆】Power Calculator

【Edabit 算法 ★☆☆☆☆☆】Power Calculator math numbers Instructions Create a function that takes voltage and current and returns the calculated power. Examples circuitPower(230, 10) // 2300 circuitPower(110, 3) // 330 circuitPower(480, 20) // 9600Not…

大数据平台开发经验

如果我是一个有着10年大数据平台开发经验的开发者&#xff0c;面试时可能需要准备以下知识 大数据生态系统&#xff1a;** 熟悉大数据技术栈&#xff0c;如Hadoop、Spark、Flink等&#xff0c;了解它们的原理、用途和优劣势。 分布式系统设计&#xff1a; 深入了解分布式系统的…

java项目运行时信息获取

大体思路如下&#xff0c;想要获取启动时处理器数量、jvm 相关信息&#xff0c;操作系统信息、运行机器信息 运行机器信息 import org.slf4j.Logger; import org.slf4j.LoggerFactory;import java.lang.invoke.MethodHandles;/*** 机器工具类*/ public abstract class ServerU…

051校园短期闲置资源置换平台

大家好✌&#xff01;我是CZ淡陌。一名专注以理论为基础实战为主的技术博主&#xff0c;将再这里为大家分享优质的实战项目&#xff0c;本人在Java毕业设计领域有多年的经验&#xff0c;陆续会更新更多优质的Java实战项目&#xff0c;希望你能有所收获&#xff0c;少走一些弯路…

git第一次推送出现推送被拒绝

前言 git 第一次推送出现以下错误 ! [rejected] master -> master (fetch first) error: failed to push some refs to ‘https://gitee.com/fengshangyunwang/iot-front-end.git’ hint: Updates were rejected because the remote contains work that you do hint: not …

Mac硬盘检测工具

Mac硬盘检测软件是一款用于检测和诊断Mac硬盘健康状态的工具&#xff0c;帮助用户及时发现潜在的硬盘问题&#xff0c;避免数据丢失和系统故障。通过全面的检测和报告功能&#xff0c;用户可以更好地了解自己的硬盘状况&#xff0c;确保数据的安全和可靠。给大家介绍几款好用的…