|
@@ -7,9 +7,16 @@
|
|
|
<el-select v-model="value1" multiple placeholder="显示层级">
|
|
|
<el-option v-for="item in types" :key="item.value" :label="item.label" :value="item.value"> </el-option>
|
|
|
</el-select>
|
|
|
- <span style="display: inline-block; width: 220px; margin-left: 10px"
|
|
|
+ <span style="display: inline-block; width: 220px; margin: 0 10px"
|
|
|
><el-input v-model="input" placeholder="模糊搜索"></el-input
|
|
|
></span>
|
|
|
+ <el-button type="primary" @click="handleDownload">下载模板</el-button>
|
|
|
+ <span style="display: inline-block; margin: 0 10px">
|
|
|
+ <el-upload action="_" :show-file-list="false" :http-request="adminWebsitImportFun">
|
|
|
+ <el-button type="primary">导入</el-button>
|
|
|
+ </el-upload>
|
|
|
+ </span>
|
|
|
+ <el-button type="primary">导出</el-button>
|
|
|
</div>
|
|
|
|
|
|
<div class="table">
|
|
@@ -284,10 +291,12 @@ import {
|
|
|
getDepartmentDetail,
|
|
|
deleteDepartment,
|
|
|
adminWebsitSavePayConfig,
|
|
|
- adminWebsitDeletePayConfig
|
|
|
+ adminWebsitDeletePayConfig,
|
|
|
+ adminWebsitImport
|
|
|
} from '@/api/setting'
|
|
|
import geographicalPosi from '@/components/geographicalPosi/index.vue'
|
|
|
import { adminCompanyPayConfigList } from '@/api/paymentMerchantManagement'
|
|
|
+import { commonTemplateDownload } from '@/api/common.js'
|
|
|
export default {
|
|
|
components: { geographicalPosi },
|
|
|
data() {
|
|
@@ -374,13 +383,51 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ adminWebsitImportFun(data) {
|
|
|
+ const loading = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ text: '正在导入',
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(0, 0, 0, 0.7)'
|
|
|
+ })
|
|
|
+ var formdata = new FormData()
|
|
|
+ formdata.append('file', data.file)
|
|
|
+ adminWebsitImport({ formdata })
|
|
|
+ .then(res => {
|
|
|
+ this.getList()
|
|
|
+ loading.close()
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '导入成功!'
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(err => {
|
|
|
+ loading.close()
|
|
|
+ this.$message({
|
|
|
+ type: 'error',
|
|
|
+ message: err.message || '导入失败'
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 下载导入模版
|
|
|
+ handleDownload() {
|
|
|
+ commonTemplateDownload({ name: '网点管理导入模板.xlsx' }, '网点管理导入模板')
|
|
|
+ .then(res => {
|
|
|
+ this.$message({
|
|
|
+ message: '下载成功',
|
|
|
+ type: 'success'
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(err => {
|
|
|
+ this.$message.error('下载失败')
|
|
|
+ })
|
|
|
+ },
|
|
|
// 获取网点列表
|
|
|
getList() {
|
|
|
var list_ = []
|
|
|
var levels = []
|
|
|
function dg(list, level = 1, pname = []) {
|
|
|
for (let { children, name, ...item } of list) {
|
|
|
- console.log(item)
|
|
|
var n_ = ''
|
|
|
for (var i = 1; i < level; i++) n_ += ` -> `
|
|
|
list_.push({ ...item, name: n_ + name, level, pname: [...pname] })
|