Commit 85d4ceac by 黄森林

弹框大小修改

parent 73bacf4d
......@@ -79,10 +79,17 @@
<a-col :md="6" :sm="12">
<a-button @click="search()" type="primary">查询</a-button>
<a-button v-show="!callback" @click="handleSubmit" style="margin-left: 10px">导出</a-button>
<a-button v-show="callback" style="margin-left: 10px">导出中<a-spin style="margin-left: 5px" size="small"/></a-button>
<a-button @click="handleSubmit1" type="primary" style="margin-left: 5px">批量处理</a-button>
<a-button @click="handleSubmit2" type="primary" style="margin-left: 5px">快递</a-button>
<a-button v-show="callback" @click="handleSubmit" style="margin-left: 10px">导出中<a-spin style="margin-left: 5px" size="small"/></a-button>
<a-dropdown>
<a-menu slot="overlay" @click="handleMenuClick">
<a-menu-item key="1"><a-icon type="arrow-up" /> 批量处理</a-menu-item>
<a-menu-item key="2"><a-icon type="arrow-up" /> 快递</a-menu-item>
</a-menu>
<a-button style="margin-left: 8px">导入<a-icon type="down" /> </a-button>
</a-dropdown>
</a-col>
</a-row>
</a-form>
</div>
......@@ -468,6 +475,14 @@
},
methods:{
moment,
handleMenuClick(e){
if (e.key == '1'){
this.handleSubmit1()
}
if (e.key == '2'){
this.handleSubmit2()
}
},
reviewStudentIdCard(res){
this.reviewStudentImg=res.studenCard
/*this.reviewStudentImg =this.baseUrl+'abstract0'+1+'.jpg'*/
......@@ -679,6 +694,9 @@
}
},
handleSubmit() {
if (this.callback==true){
this.$message.warn("正在导出中...", 5);
}
let downqueryParam=this.queryParam
let nowdate = moment().format('YYYY-MM-DD');
this.callback=true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment