|
@@ -0,0 +1,95 @@
|
|
|
+<style lang="scss" scoped>
|
|
|
+.search-box p {
|
|
|
+ display: inline-block;
|
|
|
+ border: 1px solid #f2f2f2;
|
|
|
+ border-radius: 5px;
|
|
|
+ margin-right: 10px;
|
|
|
+ padding: 5px 10px;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+#office-iframe {
|
|
|
+ height: 800px;
|
|
|
+}
|
|
|
+</style>
|
|
|
+<template>
|
|
|
+ <a-row :gutter="10">
|
|
|
+ <a-col :sm="10" style="margin-bottom: 20px;z-index: 10">
|
|
|
+ <a-card class="search-box" style="min-height:500px">
|
|
|
+ 行业
|
|
|
+ <a-cascader
|
|
|
+ style="margin-top: 1rem;width:300px"
|
|
|
+ :options="options"
|
|
|
+ placeholder="Please select"
|
|
|
+ >
|
|
|
+ <a-icon type="smile" slot="suffixIcon" class="test" />
|
|
|
+ </a-cascader>
|
|
|
+ </a-card>
|
|
|
+ </a-col>
|
|
|
+ <a-col :sm="14" style="margin-bottom: 20px;z-index: 10">
|
|
|
+ <a-card class="search-box" style="min-height:800px"> </a-card>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { getAction, postAction } from '@/api/manage'
|
|
|
+import moment from 'moment'
|
|
|
+import $ from 'jquery'
|
|
|
+import qs from 'qs'
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'online-training-list',
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ options: [
|
|
|
+ {
|
|
|
+ value: 'zhejiang',
|
|
|
+ label: 'Zhejiang',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: 'hangzhou',
|
|
|
+ label: 'Hangzhou',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: 'xihu',
|
|
|
+ label: 'West Lake'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: 'jiangsu',
|
|
|
+ label: 'Jiangsu',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: 'nanjing',
|
|
|
+ label: 'Nanjing',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ value: 'zhonghuamen',
|
|
|
+ label: 'Zhong Hua Men'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ components: {},
|
|
|
+ methods: {
|
|
|
+ getHangye() {
|
|
|
+ postAction('/ctop/creativeTitle/getTitleLabel', '').then(res => {
|
|
|
+ console.log(res)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.getHangye()
|
|
|
+ })
|
|
|
+ },
|
|
|
+ created() {}
|
|
|
+}
|
|
|
+</script>
|