123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <template>
- <div class="client-platform-page client-exam-page">
- <!-- 广告 -->
- <div class="client-banner-box">
- <div
- :style="{backgroundImage: `url(${bannerList[0].pic || require(`~/static/images/client/train/train-banner-background.png`)})`}"
- class="client-platform-banner"></div>
- <h3>财务管理</h3>
- <p>加强财务队伍专注性,开创企业财务管理新局面</p>
- <span>财务部</span>
- </div>
- <!-- 文本框 -->
- <div class="client-caiwu-text">
- 财务部主要负责企业的财务管理,主要只能是在本企业一定的整体目标下,
- 关于资本的购置,资本的融通和经营中现金流量,以及利润分配的管理。
- </div>
- <div class="client-container">
- <!-- 岗位职责 -->
- <gangwei-list label="岗位职责" :list="gangwei" :pc-num="3" :h5-num="2" :pc-margin="320" :h5-margin="0"></gangwei-list>
- </div>
- <!-- 部分课程列表 -->
- <div class="platform-course-list">
- <h4>部分课程列表</h4>
- <mtaTable :data="tableData" :config="tableConfig" @shi-kan="shiKan"></mtaTable>
- <div class="btns-group">
- <a class="client-default-Btn">
- <freeTrialBtn myType="kaoshi"/>
- </a>
- <onlineInformationBtn class="client-default-Btn"/>
- </div>
- </div>
- <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
- </div>
- </template>
- <script>
- import mtaTable from "~/components/common/mtaTable";
- import videoDialog from "~/components/common/videoDialog";
- import freeTrialBtn from "~/components/common/freeTrialBtn";
- import onlineInformationBtn from "~/components/common/onlineInformationBtn";
- import gangweiList from "@/components/common/layout/desComp/gangweiList";
- import {BannerImgs, caiwuguanli} from "~/defaultConfig";
- /**
- * @ 产品与服务 -> 课程资源 -> 财务管理
- */
- export default {
- name: "professionalQuality",
- layout: 'templateB',
- head() {
- return {
- title: '在线考试平台_在线考试软件_试卷软件系统',
- meta: [
- {
- name: 'keywords',
- content: '考试平台,试卷系统,试卷软件'
- },
- {
- name: 'description',
- content: '麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
- }
- ],
- }
- },
- async asyncData({$axios}) {
- const arr = [
- $axios.$post(`/home/banner/list`, {'code': BannerImgs.caiwuguanli}),
- ]
- const [res1] = await Promise.all(arr);
- return {
- bannerList: res1.data.data || [],
- }
- },
- components: {
- mtaTable, videoDialog,
- freeTrialBtn, onlineInformationBtn, gangweiList
- },
- data() {
- return {
- tableConfig: [
- {
- label: '课程名称',
- key: 'name'
- },
- {
- label: '使用行业',
- key: 'hangye'
- },
- {
- label: '使用人群',
- key: 'renqun'
- }
- ],
- tableData: [
- {
- name: '人际沟通: 如何更好地表达自己',
- shikanUrl: 'https://1111',
- hangye: '全行业',
- renqun: '职场新人'
- },
- {
- name: '如何向领导汇报行业',
- shikanUrl: '',
- hangye: '全行业',
- renqun: '职场新人'
- },
- {
- name: '职场生活游刃有余',
- shikanUrl: '',
- hangye: '全行业',
- renqun: '职场新人'
- },
- {
- name: '个人形象管理',
- shikanUrl: '',
- hangye: '全行业',
- renqun: '职场新人'
- },
- {
- name: '高效沟通',
- shikanUrl: '',
- hangye: '全行业',
- renqun: '职场新人'
- },
- {
- name: '如何向领导汇报行业',
- shikanUrl: '',
- hangye: '全行业',
- renqun: '职场新人'
- },
- {
- name: '如何向领导汇报行业',
- shikanUrl: '',
- hangye: '全行业',
- renqun: '职场新人'
- },
- {
- name: '如何向领导汇报行业',
- shikanUrl: '',
- hangye: '全行业',
- renqun: '职场新人'
- },
- ],
- curVideo: '',
- visible: false,
- }
- },
- computed: {
- gangwei() {
- return caiwuguanli
- }
- },
- methods: {
- shiKan({url}) {
- this.visible = true;
- this.curVideo = url;
- }
- }
- }
- </script>
- <style scoped>
- </style>
|