|
@@ -1,13 +1,9 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <el-row style="margin-top: 30px;">
|
|
|
- <span>请选择要导出的数据:</span>
|
|
|
- <el-select v-model="value" placeholder="请选择">
|
|
|
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"></el-option>
|
|
|
- </el-select>
|
|
|
- <el-button @click="handleClickDownload" type="primary" :loading="loading" style="margin-left: 15px;">导出Excel</el-button>
|
|
|
- </el-row>
|
|
|
- <div style="text-align:center;font-size:25px;margin-top:20%;">当前页面中的为临时功能,完整版正在设计中……</div>
|
|
|
+ <el-select v-model="value" placeholder="请选择">
|
|
|
+ <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"></el-option>
|
|
|
+ </el-select>
|
|
|
+ <el-button @click="handleClickDownload" type="primary" :loading="loading" style="margin-left: 15px;margin-right: 10px;">导出Excel</el-button>
|
|
|
</div>
|
|
|
</template>
|
|
|
|