From 196dbff2ecd765bc77cede3c15d2f14970cd0296 Mon Sep 17 00:00:00 2001 From: lijingyu007 <904564792@qq.com> Date: Thu, 23 May 2024 16:49:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=B9=E8=AE=AD=E4=B8=93=E5=AE=B6=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/testtraining/testtraining.old2vue | 926 ------------------ pages/index/testtraining/testtraining.vue | 101 +- pages/index/testtraining/testtrainingold.vue | 670 ------------- utils/http.js | 2 +- 4 files changed, 16 insertions(+), 1683 deletions(-) delete mode 100644 pages/index/testtraining/testtraining.old2vue delete mode 100644 pages/index/testtraining/testtrainingold.vue diff --git a/pages/index/testtraining/testtraining.old2vue b/pages/index/testtraining/testtraining.old2vue deleted file mode 100644 index b40de78..0000000 --- a/pages/index/testtraining/testtraining.old2vue +++ /dev/null @@ -1,926 +0,0 @@ - - - - - diff --git a/pages/index/testtraining/testtraining.vue b/pages/index/testtraining/testtraining.vue index fbc24c1..c4d559a 100644 --- a/pages/index/testtraining/testtraining.vue +++ b/pages/index/testtraining/testtraining.vue @@ -203,55 +203,30 @@ - + {{it.name}} - {{it.zw}} + {{it.teaching}} - 职称:{{it.zc}} + 职称:{{it.title}} - {{it.content}} + {{it.profile}} - - - @@ -915,63 +890,7 @@ content: '1.安全测试基本理论、安全测试方法、安全测试工具使用介绍。&2.GJB9433-2018标准下可编程逻辑器件软件测试级别、测试过程、测试类型、测试方法讲解,以及在工程项目中的应用。', }, ], - zhuanjiaList: [{ - name: '王晶', - zw: '配置项测试工程师', - zc: '高工', - img: 'http://image.keyitest.cn/static/index/renliwb/newtarnpeople2.png', - content: '自2019年起从事软件测试工作,先后参加多种军用软件测试,目前主要从事配置项、系统测试', - }, { - name: '石颢', - zw: '可编程逻辑器件测试工程师', - zc: '高工', - img: 'http://image.keyitest.cn/static/index/renliwb/newtarnpeople1.png', - content: '从业15年来,始终致力于FPGA软件验证与测试技术研究,尤其在数字化仿真、静态缺陷检查、形式化验证等方面有一定深耕,主持完成了多个重要型号的可编程逻辑器件软件的验证与测试项目,涉及领域包括航天/航空/航海/电子/兵器等,发表相关论文十余篇,撰写专利3项。', - }, - - { - name: '袁居莲', - zw: '单元测试工程师', - zc: '高工', - img: 'http://image.keyitest.cn/static/index/renliwb/newtarnpeople3.png', - content: '自2020年起从事软件测试工作,先后参加单元、系统多种类型的军用软件测试,目前主要从事单元测试工作。', - }, - { - name: '李晰昀', - zw: '安全测试工程师', - zc: '高工', - img: 'http://image.keyitest.cn/static/index/renliwb/newtarnpeople4.png', - content: '自2020年起从事网络安全、网络攻防对抗、渗透测试、云计算及安全和信息系统安全合规性的工作。', - }, - { - name: '顾珊珊', - zw: '白盒测试工程师', - zc: '高工', - img: 'http://image.keyitest.cn/static/index/renliwb/newtarnpeople5.png', - content: '自2020年起从事软件开发工作,先后参加多种测试软件开发,目前主要从事配置项测试、单元测试工具的开发。', - }, - { - name: '王博洋', - zw: '功能测试工程师', - zc: '高工', - img: 'http://image.keyitest.cn/static/index/renliwb/newtarnpeople6.png', - content: '自2018年起从事软件测试工作,对软件(系统)的功能需求逐项进行测试,包括正常/异常场景、功能控制流程、状态转换、模式切换、超负荷/饱和/最坏情况和合法/非法边界等。', - }, - { - name: '陈梦晖', - zw: '接口测试工程师', - zc: '高工', - img: 'http://image.keyitest.cn/static/index/renliwb/newtarnpeople7.png', - content: '从业15年来,负责对软件(系统)的接口需求进行逐项测试,包括信息格式、信息内容、时间特性、丢帧、错帧和误码等', - }, - { - name: '郭鑫', - zw: '静态测试工程师', - zc: '高工', - img: 'http://image.keyitest.cn/static/index/renliwb/newtarnpeople8.png', - content: '自2020年负责利用文档审查、代码审查和静态分析,对文档的一致性进行审查,对软件源码进行控制流、数据流、接口和质量度量等分析。', - }, - ], + zhuanjiaList: [], } }, @@ -1015,6 +934,7 @@ // 获取课程列表 this.getClassList() + this.getTeacherList() }, onReady() { //onReady 为uni-app支持的生命周期之一 @@ -1022,6 +942,15 @@ this.$refs.uFormjj.setRules(this.jjrules) }, methods: { + // 获取专家列表 + getTeacherList() { + this.http.quickGet(`/talent/portal/teachers`, false).then((res) => { + this.zhuanjiaList = res.data + this.zhuanjiaList.forEach(it => { + it.avatar = this.http.baseUrl + it.avatar + }) + }) + }, // 在线报名 gobaomingFn() { uni.pageScrollTo({ diff --git a/pages/index/testtraining/testtrainingold.vue b/pages/index/testtraining/testtrainingold.vue deleted file mode 100644 index 57602a5..0000000 --- a/pages/index/testtraining/testtrainingold.vue +++ /dev/null @@ -1,670 +0,0 @@ - - - - - diff --git a/utils/http.js b/utils/http.js index 73aa915..4d505cb 100644 --- a/utils/http.js +++ b/utils/http.js @@ -1,7 +1,7 @@ import comstemutil from "./comstemutil"; //es6 -const baseUrl = 'http://192.168.0.229:9999'; +const baseUrl = 'http://192.168.0.129:9999'; // const baseUrl = 'http://172.16.36.180:9999'; // const baseUrl = 'https://www.keyitest.cn/test-api'; // const baseUrl = 'https://www.keyitest.cn/prod-api';