Compare commits

..

No commits in common. "db5e8db835d0d91ce3e4b42c8b439d17a7c0fb3f" and "a438469c6bf75268671ca9742e9417cc31958555" have entirely different histories.

2 changed files with 2 additions and 9 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "code-brick-zj", "name": "code-brick-zj",
"version": "0.0.6", "version": "0.0.5",
"private": false, "private": false,
"description": "组件封装", "description": "组件封装",
"main": "index.js" "main": "index.js"

View File

@ -25,7 +25,7 @@
prop="_pageIndex" prop="_pageIndex"
:width="pageWidth" :width="pageWidth"
align="center" align="center"
:fixed="cancelPageFixed ? false : true" fixed
> >
<template slot="header"> <template slot="header">
<el-popover placement="bottom-start" width="300" trigger="click"> <el-popover placement="bottom-start" width="300" trigger="click">
@ -121,10 +121,6 @@ export default {
type: Boolean, type: Boolean,
default: false default: false
}, },
cancelPageFixed: {
type: Boolean,
default: false
},
tableData: { tableData: {
type: Array, type: Array,
required: true, required: true,
@ -209,9 +205,6 @@ export default {
let _this = this let _this = this
let obj = _this.$refs[name].data[index] let obj = _this.$refs[name].data[index]
_this.$refs[name].setCurrentRow(obj) _this.$refs[name].setCurrentRow(obj)
},
doLayout(name) {
this.$refs[name].doLayout()
} }
} }
} }