| | |
| | | <el-tab-pane label="软件系统" name="eight"> |
| | | <system v-if="activeName === 'eight'" :schoolId="schoolId"></system> |
| | | </el-tab-pane> |
| | | <el-tab-pane label="其他" name="nine"> |
| | | <other v-if="activeName === 'nine'" :schoolId="schoolId"></other> |
| | | </el-tab-pane> |
| | | </el-tabs> |
| | | <div class="right-view-title-icon"> |
| | | <img alt="" title="施工批次" src="@/assets/images/batch-icon.png" @click="batchOpen = true" class="right-view-title-icon-item" /> |
| | |
| | | import exchange from '../exchange' |
| | | import server from '../server' |
| | | import system from '../system' |
| | | import other from '../other' |
| | | |
| | | export default { |
| | | name: "constructionList", |
| | |
| | | ai, |
| | | exchange, |
| | | server, |
| | | system |
| | | system, |
| | | other |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | // 选择高校 |
| | | schoolChange(v) { |
| | | this.schoolId = v; |
| | | this.activeName = 'second'; |
| | | this.activeName = 'first'; |
| | | this.loading = false; |
| | | }, |
| | | handleClick(tab, event) { |