File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ module.exports = {
21
21
"allowFirstLine" : false
22
22
}
23
23
} ] ,
24
+ "vue/singleline-html-element-content-newline" : "off" ,
25
+ "vue/multiline-html-element-content-newline" :"off" ,
24
26
"vue/name-property-casing" : [ "error" , "PascalCase" ] ,
25
27
"vue/no-v-html" : "off" ,
26
28
'accessor-pairs' : 2 ,
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ function handleClick(el, binding) {
6
6
function handle ( e ) {
7
7
const customOpts = Object . assign ( { } , binding . value )
8
8
const opts = Object . assign ( {
9
- ele : el , // 波纹作用元素
10
- type : 'hit' , // hit 点击位置扩散 center中心点扩展
11
- color : 'rgba(0, 0, 0, 0.15)' // 波纹颜色
12
- } ,
13
- customOpts
9
+ ele : el , // 波纹作用元素
10
+ type : 'hit' , // hit 点击位置扩散 center中心点扩展
11
+ color : 'rgba(0, 0, 0, 0.15)' // 波纹颜色
12
+ } ,
13
+ customOpts
14
14
)
15
15
const target = opts . ele
16
16
if ( target ) {
Original file line number Diff line number Diff line change 4
4
<el-button :loading =" downloadLoading" style =" margin-bottom :20px " type =" primary" icon =" document" @click =" handleDownload" >Export</el-button >
5
5
6
6
<el-table
7
- v-loading =" listLoading"
8
7
ref =" multipleTable"
8
+ v-loading =" listLoading"
9
9
:data =" list"
10
10
element-loading-text =" Loading"
11
11
border
36
36
</el-table-column >
37
37
<el-table-column align =" center" label =" Date" width =" 220" >
38
38
<template slot-scope="scope">
39
- <i class =" el-icon-time" />
39
+ <i class =" el-icon-time" />
40
40
<span >{{ scope.row.timestamp | parseTime('{y}-{m}-{d} {h}:{i}') }}</span >
41
41
</template >
42
42
</el-table-column >
You can’t perform that action at this time.
0 commit comments