|
@@ -16,7 +16,7 @@
|
|
|
<el-button type="primary">导入</el-button>
|
|
|
</el-upload>
|
|
|
</span>
|
|
|
- <el-button type="primary">导出</el-button>
|
|
|
+ <el-button type="primary" @click="daochuqu">导出</el-button>
|
|
|
</div>
|
|
|
|
|
|
<div class="table">
|
|
@@ -292,7 +292,8 @@ import {
|
|
|
deleteDepartment,
|
|
|
adminWebsitSavePayConfig,
|
|
|
adminWebsitDeletePayConfig,
|
|
|
- adminWebsitImport
|
|
|
+ adminWebsitImport,
|
|
|
+ adminWebsitExport
|
|
|
} from '@/api/setting'
|
|
|
import geographicalPosi from '@/components/geographicalPosi/index.vue'
|
|
|
import { adminCompanyPayConfigList } from '@/api/paymentMerchantManagement'
|
|
@@ -383,6 +384,18 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ daochuqu() {
|
|
|
+ adminWebsitExport({}, `网点管理.xlsx`)
|
|
|
+ .then(res => {
|
|
|
+ this.$message({
|
|
|
+ message: '导出成功',
|
|
|
+ type: 'success'
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(err => {
|
|
|
+ this.$message.error('导出失败')
|
|
|
+ })
|
|
|
+ },
|
|
|
adminWebsitImportFun(data) {
|
|
|
const loading = this.$loading({
|
|
|
lock: true,
|