fdfd
This commit is contained in:
parent
dd22f551ff
commit
944d42da0e
|
@ -153,6 +153,14 @@
|
||||||
@click="search"
|
@click="search"
|
||||||
>查询</el-button
|
>查询</el-button
|
||||||
>
|
>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
v-if="is_excel"
|
||||||
|
@click="exceldown"
|
||||||
|
>导出</el-button
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<el-select
|
<el-select
|
||||||
|
@ -374,6 +382,10 @@ export default {
|
||||||
return [];
|
return [];
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
is_excel:{
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
// 是否禁用
|
// 是否禁用
|
||||||
disabled: {
|
disabled: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
@ -802,6 +814,10 @@ export default {
|
||||||
this.imeipopover = false;
|
this.imeipopover = false;
|
||||||
this.$emit("search",this.value,this.imeisn);
|
this.$emit("search",this.value,this.imeisn);
|
||||||
},
|
},
|
||||||
|
exceldown(){
|
||||||
|
this.imeipopover = false;
|
||||||
|
this.$emit("exceldown",this.value,this.imeisn);
|
||||||
|
},
|
||||||
//重置
|
//重置
|
||||||
resetfrom() {
|
resetfrom() {
|
||||||
this.isinput = false;
|
this.isinput = false;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "erp-element-ui",
|
"name": "erp-element-ui",
|
||||||
"version": "1.0.25",
|
"version": "1.0.26",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in New Issue