| | |
| | | <el-form-item label="上传名单" required> |
| | | <div style="width: 100%;display: flex;align-items: center;"> |
| | | <el-button type="primary" @click="clickRef">点击上传</el-button> |
| | | <el-button type="text">名单模板.EXCEL</el-button> |
| | | <el-button type="text" @click="exportTemplate">名单模板.EXCEL</el-button> |
| | | </div> |
| | | <div style="font-size: 14px; color: black;" v-if="fileName">{{fileName}}</div> |
| | | </el-form-item> |
| | |
| | | this.list = obj.arr |
| | | this.price = obj.price |
| | | }, |
| | | // 导出模板 |
| | | exportTemplate () { |
| | | window.open(process.env.VUE_APP_USERTEMPLATE_URL) |
| | | }, |
| | | clickRef () { |
| | | this.$refs.fileExcel.click() |
| | | }, |