一,View中引用自定义Dialog组件
需求: 在项目中,有时候可能在不同画面需要完成同一功能,比如示例文件列表查看功能,系统上传文件,需要查看文件列表,以及文件历史记录
话不多说,上图
这个查看文件的Dialog需要在系统中的很多地方调用,开发过程中不可能在每个地方都定义一遍,那么,我们可能使用自定义控件形式,代码如下
<template>
<el-dialog title="查看文件" :visible.sync="innerVisible" class="form-dialog" center @closed="onClosed">
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="文件列表" name="fileList">
<el-table
v-loading="listLoading"
size="small"
:data="list"
style="width: 100%"
element-loading-text="Loading"
border
stripe
fit
highlight-current-row
>
<el-table-column label="序号" align="center">
<template slot-scope="scope">
{{ scope.$index + 1 }}
</template>
</el-table-column>
<el-table-column label="文件名" align="center">
<template slot-scope="scope">
{{ scope.row.name }}
</template>
</el-table-column>
<el-table-column label="文件大小(KB)" align="center">
<template slot-scope="scope">
<span>{{ scope.row.size }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center">
<template slot-scope="scope">
<el-button size="mini" @click="downLoadFile(scope.row)">下载</el-button>
</template>
</el-table-column>
</el-table>
</el-tab-pane>
<el-tab-pane label="历史版本" name="history">
<el-table
v-loading="historyListLoading"
size="small"
:data="historyList"
style="width: 100%"
element-loading-text="Loading"
border
stripe
fit
highlight-current-row
>
<el-table-column label="序号" align="center">
<template slot-scope="scope">
{{ scope.$index + 1 }}
</template>
</el-table-column>
<el-table-column label="时间" align="center">
<template slot-scope="scope">
{{ scope.row.Date | parseTime('{y}-{m}-{d} {h}:{i}') }}
</template>
</el-table-column>
<el-table-column label="备注" align="center">
<template slot-scope="scope">
<span>{{ scope.row.Remark }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center">
<template slot-scope="scope">
<el-button size="mini" @click="downLoadVersionFile(scope.row)">下载</el-button>
</template>
</el-table-column>
</el-table>
</el-tab-pane>
</el-tabs>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="innerVisible = false">确定</el-button>
</div>
</el-dialog>
</template> <script>
import { fileDownload, getFileList, getFileHistoryList, versionFileDownload } from '@/api/common/common'
import { getToken } from '@/utils/auth'
import { parseTime, downloadFile } from '@/utils'
export default {
name: 'FileListDialog',
filters: {
parseTime(time, cFormat) {
return parseTime(time, cFormat)
}
},
components: {
},
props: {
visible: {
type: Boolean,
default: false
},
url: {
type: String,
default: ''
}
},
data() {
return {
token: getToken(),
list: null,
historyList: null,
listLoading: true,
historyListLoading: true,
innerVisible: this.visible,
sURL: '',
activeName: 'fileList'
}
},
watch: {
visible(val, oldVal) {
if (val === oldVal) {
return
}
this.innerVisible = val
},
innerVisible(val, oldVal) {
if (val === oldVal) {
return
}
this.$emit('update:visible', val)
},
sURL(val, oldVal) {
if (val === oldVal) {
return
}
this.activeName = 'fileList'
// 获取数据
this.getList()
}
},
mounted() {},
updated() {
this.sURL = this.url
this.dVisible = this.dialogFormVisible
},
methods: {
handleClick(tab, event) {
switch (tab.name) {
case 'fileList':
this.getList()
break
case 'history':
this.getHistory()
break
}
},
getList() {
this.listLoading = true
var param = {
url: this.sURL,
token: getToken()
}
getFileList(param).then(response => {
this.list = response.data
this.listLoading = false
})
},
getHistory() {
this.historyListLoading = true
var param = {
url: this.sURL,
token: getToken()
}
getFileHistoryList(param).then(response => {
this.historyList = response.data
this.historyListLoading = false
})
},
onClosed() {
this.sId = ''
},
downLoadFile(row) {
var param = {
token: getToken(),
url: row.url
}
fileDownload(param).then(res => {
if (res.code === 20000) {
downloadFile(res.data.name, res.data.dataStr)
}
})
},
downLoadVersionFile(row) {
var param = {
token: getToken(),
url: row.URL,
versionNo: row.VersionNo
}
versionFileDownload(param).then(res => {
if (res.code === 20000) {
downloadFile(res.data.name, res.data.dataStr)
}
})
}
}
}
</script> <style></style>
其中,Dialog控制显隐的关键部分是watch函数部分
visible(val, oldVal) {
if (val === oldVal) {
return
}
this.innerVisible = val
},
innerVisible(val, oldVal) {
if (val === oldVal) {
return
}
this.$emit('update:visible', val)
}
visible和innerVisible分别对应控件的属性以及Data,防止多次修改属性问题。
sURL(val, oldVal) {
if (val === oldVal) {
return
}
this.activeName = 'fileList'
// 获取数据
this.getList()
}
该部分是控制Dialog显示数据用
父画面调用:
<template>
<div class="app-container">
<div class="filter-container">
<el-button v-waves size="small" class="filter-item" type="primary" icon="el-icon-search" @click="handleFilter">搜索</el-button>
</div>
<el-table
v-loading="listLoading"
size="small"
:data="list"
style="width: 100%"
element-loading-text="Loading"
border
stripe
fit
highlight-current-row
>
<el-table-column label="技术协议" align="center">
<template slot-scope="scope">
<el-button size="mini" @click="viewFile(scope.row)">查看</el-button>
</template>
</el-table-column>
</el-table>
<Pagination v-show="total > 0" size="small" :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList" /> <FileListDialog :url="fileURL" :visible.sync="fileListDialogVisible" />
</div>
</template> <script>
import FileListDialog from './dialog/fileListDialog.vue' export default {
components: {
FileListDialog
},
data() {
return {
fileURL: '',
fileListDialogVisible: false
}
},
methods: {
viewFile(row, type) {
if (stringIsNullOrEmpty(row.Path)) return
this.fileListDialogVisible = true
this.fileURL = row.Path // URL地址
}
}
}
</script>
一,View中引用自定义Dialog组件的更多相关文章
- Android中制作自定义dialog对话框的实例
http://www.jb51.net/article/83319.htm 这篇文章主要介绍了Android中制作自定义dialog对话框的实例分享,安卓自带的Dialog显然不够用,因而我们要继 ...
- [asp.net mvc 奇淫巧技] 01 - 封装上下文 - 在View中获取自定义的上下文
我们在asp.net 开发中已经封装了最强大的HttpContext,我们可以在HttpContext中可以获取到几乎任何想获取的东西,也可以在HttpContext写入需要返回客户端的信息.但是这些 ...
- C程序中引用自定义的C函数模块
原文:C程序中引用自定义的C函数模块 我们知道,刚开始接触C语言编程,一般都是在一个.c或者.cpp(以下只说.c)的文件中编写代码,其中一定会有一个入口函数, 也就是main()函数,你可以将程序代 ...
- (vue.js)vue中引用了别的组件 ,如何使this指向Vue对象
Vue中引用了别的组件 ,如何使this指向Vue对象 今天学习Vue组件传值, 通过创建Vue实例, 广播和监听实现传值, 但是传值之后无法直接将得到的值应用到Vue对象, 因为这相当于引用改了别的 ...
- Android XML中引用自定义内部类view的四个why
今天碰到了在XML中应用以内部类形式定义的自定义view,结果遇到了一些坑.虽然通过看了一些前辈写的文章解决了这个问题,但是我看到的几篇都没有完整说清楚why,于是决定做这个总结. 使用自定义内部类v ...
- 在ASP.NET中引用自定义提示框
在html网页中自定义提示框 正文: 在一般的B/S架构中项目,与用户的交互信息是非常重要的.在一般的情况下,设计人员都在把用户信息呈现在html中,用div和span去弹出相关信息.对于一般的情况而 ...
- YII中引用自定义类
如果通过actions方法引用其他自定义类时 <?php class LoginController extends Controller { public function actionInd ...
- 检索COM 类工厂中CLSID 为{00024500-0000-0000-C000-000000000046}组件时失败
检索 COM 类工厂中 CLSID 为{00024500-0000-0000-C000-000000000046} 的组件时失败,原因是出现以下错误: 80070005 当在ASP.NET应用程序中引 ...
- vue中引用vux
官网看不懂,网上搜了下,以备不时之需 这是官网说明文档,看不懂的啊. Vux使用教程: 1,在项目里安装vux cnpm install vux --save 2,在项目里安装vux-loader(这 ...
随机推荐
- 电子书下载:C# Database Basics
下载: http://download.csdn.net/detail/maxwoods/4089269
- redhat7.3 dns服务器配置
1.基本配置 systemctl stop firewalld.service systemctl disable firewalld.service setenforce 0 nmcli conne ...
- Spring源码学习——自定义标签
2019独角兽企业重金招聘Python工程师标准>>> 1.自定义标签步骤 创建一个需要扩展的组件 定义xsd文件描述组件内容 创建一个文件,实现BeanDefinitionPars ...
- 有关for循环的一些东西
有的时候,不知道是因为学的有点浅显,还是脑袋有点懵,简单的循环语句都有点被绕糊涂了. 这种内外循环的,先是外循环一次,内循环全部,接着再外循环第二次,内循环全部,,,,,,,. 所以先是显示 0 4 ...
- Nginx入门资料
最近在学习Nginx,记录一下自己的学习历程. 1. Nginx开发从入门到精通 (淘宝技术团队编写,值得一看) 2. <深入理解Nginx:模块开发与架构解析> 3. Nginx模块开发 ...
- 错误:Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use.
Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use. The ...
- 201771010113 李婷华 《面向对象程序设计(java)》第九周总结
一.理论知识部分 第六章 接口与内部类 1.内部类(innerclass)是定义在一个类内部的类.外层的类成为外部类(outerclass).内部类主要用于事件处理. 2.使用内部类的原因有以下三个: ...
- 【Hadoop离线基础总结】impala简单介绍及安装部署
目录 impala的简单介绍 概述 优点 缺点 impala和Hive的关系 impala如何和CDH一起工作 impala的架构及查询计划 impala/hive/spark 对比 impala的安 ...
- spring-boot+spring-cloud+maven-module 一个 maven多模块的微服务架构模版
spring-boot-cloud-module spring-boot+spring-cloud+maven-module 一个 maven多模块的微服务架构模版. 新手上路的绝佳模版,只有必要的配 ...
- Linux 面试最常问的十个问题
如果你要去面试一个Linux系统运维工程师的职位,下面这十个最常见的问题一定要会,否则你的面试可能就危险了.这些都是比较基本的问题,大家要理解,不能光死记硬背. 1.如何查看系统内核的版本 这里有两种 ...