From a68bf12a2975405f57f9a9d51b91c13a93c026f0 Mon Sep 17 00:00:00 2001 From: MrShi <1878285526@qq.com> Date: 星期三, 31 一月 2024 21:01:36 +0800 Subject: [PATCH] Mr.Shi --- company/src/views/enterprise/switchCourt.vue | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/company/src/views/enterprise/switchCourt.vue b/company/src/views/enterprise/switchCourt.vue index 5d645ee..b270fca 100644 --- a/company/src/views/enterprise/switchCourt.vue +++ b/company/src/views/enterprise/switchCourt.vue @@ -48,7 +48,7 @@ <!-- 琛ㄦ牸鍜屽垎椤� --> <template v-slot:table-wrap> <ul class="toolbar" v-permissions="['business:applychange:create']"> - <li><el-button type="primary" @click="$refs.operaApplyChangeWindow.open('鍔犲噺淇濊鎯�')" v-permissions="['business:applychange:create']">鏂板缓</el-button></li> + <li><el-button type="primary" @click="$refs.operaApplyChangeWindow.open('鏂板缓')" v-permissions="['business:applychange:create']">鏂板缓</el-button></li> </ul> <el-table v-loading="isWorking.search" @@ -102,6 +102,8 @@ import TableLayout from '@/layouts/TableLayout' import Pagination from '@/components/common/Pagination' import add_subtractDetails from '@/components/enterprise/add_subtractDetails' + import {all as solutionAll} from "@/api/business/solutions"; + import {pageAll as companyAll} from "@/api/business/company"; export default { name: 'switchCourt', extends: BaseTable, @@ -124,6 +126,22 @@ 'field.main': 'id' }) this.search() + }, + methods:{ + // handlePageChange() { + // this.search() + // }, + loadSelectList() { + solutionAll({dataType:2}).then(res => { + this.solutionList = res + }).catch(err => { + }) + companyAll({}).then(res => { + this.companyList = res + }).catch(err => { + }) } + + } } </script> -- Gitblit v1.9.3