| | |
| | | dialogShow: false, |
| | | fileSettings: { |
| | | data: {}, |
| | | uploadUrl: getBaseUrl() + '/pc/fin/sys/tenant/import', // 上传地址 |
| | | uploadUrl: getBaseUrl() + '/pc/base/category/import', // 上传地址 |
| | | accept: '.xls', // 格式 |
| | | type: 'text', // 回显形式 |
| | | loading: false, // 导入效果 |
| | | loading: true, // 导入效果 |
| | | }, |
| | | /* 模板下载 */ |
| | | templateSettings: { |
| | | templateName: '导入模板.xls', // 名称 |
| | | templateUrl: SettingIplatform.apiBaseURL + '/pc/fin/sys/tenant/getImportTemplate', // 下载地址 |
| | | templateUrl: SettingIplatform.apiBaseURL + '/pc/fin/sys/tenant/getImportTemplate?type=classification', // 下载地址 |
| | | }, |
| | | onSuccess: null, |
| | | }, |
| | |
| | | name: '新增', |
| | | click: () => { |
| | | this.showAdd(null); |
| | | }, |
| | | }, |
| | | { |
| | | name: '导入', |
| | | click: () => { |
| | | this.openImport(null); |
| | | }, |
| | | }, |
| | | ], |
| | |
| | | initTreeData() { |
| | | getTree().then((res) => { |
| | | const content = res || []; |
| | | // this.treeDataList.splice(0, this.treeDataList.length) |
| | | this.treeDataList = content; |
| | | // if (content.length > 0) { |
| | | // this.importSetting.fileSettings.data = {pid: content[0].id} |
| | | // } |
| | | }); |
| | | }, |
| | | updState(row) { |
| | |
| | | vm.$modal.msgSuccess(text + '成功'); |
| | | vm.search(); |
| | | } |
| | | }); |
| | | }) |
| | | }); |
| | | }, |
| | | del(row) { |
| | | this.$modal |
| | | .confirm('是否确认删除名称为"' + row.categoryName + '"的机构吗?') |
| | | var that = this |
| | | this.$modal.confirm('是否确认删除名称为"' + row.categoryName + '"的机构吗?') |
| | | .then(function () { |
| | | finsystenant.del({ id: row.id }).then((res) => {}); |
| | | }) |
| | | .then((res) => { |
| | | this.$message.success('删除成功!'); |
| | | this.search(); |
| | | }) |
| | | .catch(() => {}); |
| | | finsystenant.del({ id: row.id }).then((res) => { |
| | | that.$message.success('删除成功!'); |
| | | that.refreshData(); |
| | | }) |
| | | }); |
| | | }, |
| | | showAdd() { |
| | | // if (!this.editSetting.orgId) { |
| | | // this.$message.warning('请先选择左侧机构') |
| | | // } else { |
| | | if (this.p && this.p) { |
| | | this.editSetting.pid = this.p.id; |
| | | } |
| | |
| | | this.editSetting.info = null; |
| | | this.editSetting.title = '新增'; |
| | | this.editSetting.show = true; |
| | | // } |
| | | }, |
| | | showAudit(row) { |
| | | this.editSetting.id = row.id; |
| | |
| | | this.filterFrom = Object.assign(this.filterFrom, params); |
| | | this.search(1); |
| | | }, |
| | | |
| | | openImport(){ |
| | | this.importOrg(); |
| | | }, |
| | | }, |
| | | }; |
| | | </script> |