Commit 6d6a8764 authored by 吴卿华's avatar 吴卿华

Merge remote-tracking branch 'origin/master'

parents 97960ce4 9041ca3a
...@@ -2,11 +2,17 @@ package com.zehong.web.controller.videomonitor; ...@@ -2,11 +2,17 @@ package com.zehong.web.controller.videomonitor;
import cn.hutool.core.util.ObjectUtil; import cn.hutool.core.util.ObjectUtil;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.github.pagehelper.util.StringUtil; import com.github.pagehelper.util.StringUtil;
import com.zehong.common.core.domain.AjaxResult; import com.zehong.common.core.domain.AjaxResult;
import com.zehong.common.core.redis.RedisCache; import com.zehong.common.core.redis.RedisCache;
import com.zehong.common.utils.StringUtils;
import com.zehong.system.domain.TDeviceAlarmInfo; import com.zehong.system.domain.TDeviceAlarmInfo;
import com.zehong.system.domain.TEntranceGuardPersonInfo;
import com.zehong.system.domain.vo.ArtemisPerson;
import com.zehong.system.service.ITDeviceAlarmInfoService; import com.zehong.system.service.ITDeviceAlarmInfoService;
import com.zehong.system.service.ITEntranceGuardPersonInfoService;
import com.zehong.web.uitls.ArtemisUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
...@@ -15,8 +21,11 @@ import org.springframework.web.bind.annotation.RequestBody; ...@@ -15,8 +21,11 @@ import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date; import java.util.Date;
import java.util.HashMap; import java.util.HashMap;
import java.util.List;
import java.util.Map; import java.util.Map;
/** /**
...@@ -33,6 +42,8 @@ public class SubscriptionEventController { ...@@ -33,6 +42,8 @@ public class SubscriptionEventController {
private RedisCache redisCache; private RedisCache redisCache;
@Autowired @Autowired
private ITDeviceAlarmInfoService tDeviceAlarmInfoService; private ITDeviceAlarmInfoService tDeviceAlarmInfoService;
@Autowired
private ITEntranceGuardPersonInfoService tEntranceGuardPersonInfoService;
/** /**
* 烟雾检测订阅事件 * 烟雾检测订阅事件
...@@ -58,16 +69,83 @@ public class SubscriptionEventController { ...@@ -58,16 +69,83 @@ public class SubscriptionEventController {
@PostMapping("/faceVerification") @PostMapping("/faceVerification")
public AjaxResult faceVerification(@RequestBody Map<String,Object> faceVeriy){ public AjaxResult faceVerification(@RequestBody Map<String,Object> faceVeriy){
logger.info("人脸验证信息:"+ JSON.toJSONString(faceVeriy)); try {
logger.info("人脸验证信息:"+ JSON.toJSONString(faceVeriy));
//解析人脸信息
entranceGuardEventDeal(faceVeriy);
} catch (Exception e) {
logger.error("人脸通过信息接收失败:" + e);
}
return AjaxResult.success(); return AjaxResult.success();
} }
@PostMapping("/patrolCardCheck") @PostMapping("/patrolCardCheck")
public AjaxResult patrolCardCheck(@RequestBody Map<String,Object> patrolCard){ public AjaxResult patrolCardCheck(@RequestBody Map<String,Object> patrolCard){
logger.info("巡查卡比对信息信息:"+ JSON.toJSONString(patrolCard)); try {
logger.info("巡查卡比对信息:"+ JSON.toJSONString(patrolCard));
//解析人脸信息
entranceGuardEventDeal(patrolCard);
} catch (Exception e) {
logger.error("巡查卡比对信息接收失败:" + e);
}
return AjaxResult.success(); return AjaxResult.success();
} }
/**
* 门禁事件解析
*/
private void entranceGuardEventDeal(Map<String,Object> entranceGuardEvent) throws Exception {
//解析人脸信息
JSONObject params = (JSONObject) JSON.toJSON(entranceGuardEvent.get("params"));
List<JSONObject> events = (List<JSONObject>) params.get("events");
if(null== events || events.size() == 0){
throw new Exception("订阅信息有误不包含events信息");
}
for(JSONObject event : events){
Date happenTime = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'+'").parse((String)event.get("happenTime"));
if((System.currentTimeMillis() - happenTime.getTime()) /(1000 * 3600) > 1){
throw new Exception("事件超过一小时,数据丢弃");
}
JSONObject data = (JSONObject)JSON.toJSON(event.get("data"));
String personNo = (String)data.get("ExtEventPersonNo");
//获取人员信息
String extEventInOut = String.valueOf(data.get("ExtEventInOut"));
ArtemisPerson artemisPerson = new ArtemisPerson();
artemisPerson.setPageNo(1);
artemisPerson.setPageSize(1000);
if(StringUtils.isNotEmpty(personNo)){
artemisPerson.setPersonIds(personNo);
}else {
String cardNo = (String)data.get("ExtEventCardNo");
if(StringUtils.isNotEmpty(cardNo)){
artemisPerson.setCardNo(cardNo);
}else {
throw new Exception("人员和卡信息不全!");
}
}
String personInfoStr = ArtemisUtils.personList(artemisPerson);
JSONObject personInfo = JSON.parseObject(personInfoStr);
if(!"0".equals(personInfo.get("code"))){
throw new Exception("人员信息接口信息获取错误");
}
JSONObject personData = (JSONObject)personInfo.get("data");
List<JSONObject> list = (List<JSONObject>)personData.get("list");
if(null == list || list.size() == 0){
throw new Exception("未获取到人员信息");
}
String personName = (String)list.get(0).get("personName");
TEntranceGuardPersonInfo tEntranceGuardPersonInfo = new TEntranceGuardPersonInfo();
tEntranceGuardPersonInfo.setPersonName(personName);
tEntranceGuardPersonInfo.setPersonNum((String)list.get(0).get("certificateNo"));
if("0".equals(extEventInOut) || "1".equals(extEventInOut)){
tEntranceGuardPersonInfo.setActionType("0".equals(extEventInOut) ? "1" : "0");
}
tEntranceGuardPersonInfo.setActionTime(happenTime);
tEntranceGuardPersonInfoService.insertTEntranceGuardPersonInfo(tEntranceGuardPersonInfo);
}
}
/** /**
* 设置订阅事件缓存 * 设置订阅事件缓存
* @param deviceCode 设备编号 * @param deviceCode 设备编号
......
package com.zehong.web.uitls;
import com.alibaba.fastjson.JSONObject;
import com.hikvision.artemis.sdk.ArtemisHttpUtil;
import com.hikvision.artemis.sdk.config.ArtemisConfig;
import com.zehong.common.utils.StringUtils;
import com.zehong.system.domain.vo.ArtemisPerson;
import java.util.HashMap;
import java.util.Map;
/**
* 海康平台工具类
*/
public class ArtemisUtils {
/**
* 请根据自己的appKey和appSecret更换static静态块中的三个参数. [1 host]
* 如果你选择的是和现场环境对接,host要修改为现场环境的ip,https端口默认为443,http端口默认为80.例如10.33.25.22:443 或者10.33.25.22:80
* appKey和appSecret请按照或得到的appKey和appSecret更改.
*/
static {
// 代理API网关nginx服务器ip端口
ArtemisConfig.host = "27.128.189.137:1443";
// 秘钥appkey
ArtemisConfig.appKey = "28616162";
// 秘钥appSecret
ArtemisConfig.appSecret = "5ueTWDOJ21jRbpHACAzF";
}
/**
* 能力开放平台的网站路径
*/
private static final String ARTEMIS_PATH = "/artemis";
/**获取人员信息*/
private static final String PERSON_LIST = ARTEMIS_PATH + "/api/resource/v2/person/advance/personList";
public static String personList(ArtemisPerson artemisPerson){
Map<String, String> path = new HashMap<String, String>(2) {
{
//根据现场环境部署确认是http还是https
put("https://", PERSON_LIST);
}
};
JSONObject jsonBody = new JSONObject();
if(StringUtils.isNotEmpty(artemisPerson.getPersonIds())){
jsonBody.put("personIds", artemisPerson.getPersonIds());
}
if(StringUtils.isNotEmpty(artemisPerson.getPersonName())){
jsonBody.put("personName", artemisPerson.getPersonName());
}
if(StringUtils.isNotEmpty(artemisPerson.getOrgIndexCodes())){
jsonBody.put("orgIndexCodes", artemisPerson.getOrgIndexCodes());
}
if(StringUtils.isNotEmpty(artemisPerson.getCertificateNo())){
jsonBody.put("certificateNo", artemisPerson.getCertificateNo());
}
if(StringUtils.isNotEmpty(artemisPerson.getCardNo())){
jsonBody.put("cardNo", artemisPerson.getCardNo());
}
jsonBody.put("pageNo", artemisPerson.getPageNo());
jsonBody.put("pageSize", artemisPerson.getPageSize());
String body = jsonBody.toJSONString();
// post请求application/json类型参数
return ArtemisHttpUtil.doPostStringArtemis(path,body,null,null,"application/json",null);
}
}
package com.zehong.system.domain.vo;
import java.util.List;
public class ArtemisPerson {
/**
* 是否必须 False
* 人员ID集合
* 多个值使用英文逗号分隔,不超过1000个
* 获取人员列表v2 接口获取
*/
private String personIds;
/**
* 是否必须 False
* 人员姓名
* 支持中英文字符,不能包含 ’ / \ : * ? " < >
*/
private String personName;
/**
* 是否必须 False
* 性别
* 1:男
* 2:女
* 0:未知
*/
private String gender;
/**
* 是否必须 False
* 所属组织唯一标识码集合
* 多个值使用英文逗号分隔,不超过1000个
*/
private String orgIndexCodes;
/**
* 是否必须 False
* 证件类型
* 111:身份证
* 414:护照
* 113:户口簿
* 335:驾驶证
* 131:工作证
* 133:学生证
* 990:其他
* 平台上人员信息实名标识选择为身份证件时必填
*/
private String certificateType;
/**
* 是否必须 False
* 证件号码(最大长度64)
*/
private String certificateNo;
/**
* 是否必须 True
* 当前页码需大于0(pageNo>0)
*/
private int pageNo;
/**
* 是否必须 True
* 每页记录展示的数目应大于0,小于等于1000(0<pageSize<=1000)
*/
private int pageSize;
/**
* 是否必须 False
* 是否包含下级组织,true时,搜索orgIndexCodes及其所有子孙组织的人员;
* false时,只搜索orgIndexCodes的人员
*/
private String isSubOrg;
/**
* 是否必须 False
* 卡号, 获取卡片列表接口可以获取
*/
private String cardNo;
/**
* 是否必须 False
* 车牌号
*/
private String plateNo;
/**
* 是否必须 False
* 排序字段,注意:排序字段必须是查询条件,否则返回参数错误
*/
private String orderBy;
/**
* 是否必须 False
* 降序:desc
* 升序:asc
*/
private String orderType;
/**
* 是否必须 False
* 查询表达式
*/
private List<ArtemisPersonExpressions> expressions;
public String getPersonIds() {
return personIds;
}
public void setPersonIds(String personIds) {
this.personIds = personIds;
}
public String getPersonName() {
return personName;
}
public void setPersonName(String personName) {
this.personName = personName;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getOrgIndexCodes() {
return orgIndexCodes;
}
public void setOrgIndexCodes(String orgIndexCodes) {
this.orgIndexCodes = orgIndexCodes;
}
public String getCertificateType() {
return certificateType;
}
public void setCertificateType(String certificateType) {
this.certificateType = certificateType;
}
public String getCertificateNo() {
return certificateNo;
}
public void setCertificateNo(String certificateNo) {
this.certificateNo = certificateNo;
}
public int getPageNo() {
return pageNo;
}
public void setPageNo(int pageNo) {
this.pageNo = pageNo;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public String getIsSubOrg() {
return isSubOrg;
}
public void setIsSubOrg(String isSubOrg) {
this.isSubOrg = isSubOrg;
}
public String getCardNo() {
return cardNo;
}
public void setCardNo(String cardNo) {
this.cardNo = cardNo;
}
public String getPlateNo() {
return plateNo;
}
public void setPlateNo(String plateNo) {
this.plateNo = plateNo;
}
public String getOrderBy() {
return orderBy;
}
public void setOrderBy(String orderBy) {
this.orderBy = orderBy;
}
public String getOrderType() {
return orderType;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
}
public List<ArtemisPersonExpressions> getExpressions() {
return expressions;
}
public void setExpressions(List<ArtemisPersonExpressions> expressions) {
this.expressions = expressions;
}
}
package com.zehong.system.domain.vo;
public class ArtemisPersonExpressions {
/**
* 是否必须 True
* 资源属性名,支持按jobNo、phoneNo、email、updateTim、cerateTime查询,例如:key传updateTime,operator传between可以查询特定时间段更新的数据,考虑到校时和夏令时,建议值查询过去一天的数据变更
*/
private String key;
/**
* 是否必须 True
* 操作运算符,
* 0 :=
* 1 :>=
* 2 :<=
* 3 :in
* 4 :not in
* 5 :between
* 6 :like
* 7 :pre like
* 8 :suffix like
*/
private int operator;
/**
* 是否必须 True
* 资源属性值,=、>=、<=、like、values数组长度只能是1;
* in、not in,values数组长度大于1,最大不超时20;
* in_array用于查询key值有多个value的情况,例如行车监控添加的设备类型为encodeDevice、encodeDeviceMss两个类型,使用encodeDevice或者encodeDeviceMss都可以查询到;between只能用于整形、日期(ISO8601格式)
* ;like只能用于字符串。
*/
private String[] values;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public int getOperator() {
return operator;
}
public void setOperator(int operator) {
this.operator = operator;
}
public String[] getValues() {
return values;
}
public void setValues(String[] values) {
this.values = values;
}
}
...@@ -111,43 +111,42 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -111,43 +111,42 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="statisticsStayInPersons" resultType="java.lang.String"> <select id="statisticsStayInPersons" resultType="java.lang.String">
SELECT SELECT
COUNT(*) COUNT(import.person_num)
FROM FROM
( (
(
SELECT SELECT
* *
FROM FROM
( (
SELECT SELECT
action_time AS importTime, action_time AS importTime,
person_num person_num
FROM FROM
t_entrance_guard_person_info t_entrance_guard_person_info
WHERE WHERE
action_type = '0' action_type = '0'
ORDER BY action_time DESC ORDER BY action_time DESC LIMIT 10000
)a )a
GROUP BY a.person_num GROUP BY a.person_num
)import, )import
LEFT JOIN
(
SELECT
*
FROM
( (
SELECT SELECT
* action_time AS exportTime,
person_num
FROM FROM
( t_entrance_guard_person_info
SELECT WHERE
action_time AS exportTime, action_type = '1'
person_num ORDER BY action_time DESC LIMIT 10000
FROM )b
t_entrance_guard_person_info GROUP BY b.person_num
WHERE )export ON import.person_num = export.person_num
action_type = '1' WHERE (unix_timestamp(import.importTime) - IFNULL(unix_timestamp(export.exportTime),0)) > 0
ORDER BY action_time DESC
)b
GROUP BY b.person_num
)export
)
WHERE import.person_num = export.person_num AND (export.exportTime - import.importTime) > 0
</select> </select>
<select id="lastImportAndExportData" resultMap="TEntranceGuardPersonInfoResult"> <select id="lastImportAndExportData" resultMap="TEntranceGuardPersonInfoResult">
...@@ -158,7 +157,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -158,7 +157,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
* *
FROM FROM
t_entrance_guard_person_info t_entrance_guard_person_info
ORDER BY action_time DESC ORDER BY action_time DESC LIMIT 10000
)present )present
GROUP BY GROUP BY
present.action_type present.action_type
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-22 17:56:05 * @Date: 2022-09-22 17:56:05
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2023-01-10 14:19:22 * @LastEditTime: 2023-01-12 16:43:02
* @FilePath: /danger-manage-web/src/views/lessonsProgram/components/QuestionList.vue * @FilePath: /danger-manage-web/src/views/lessonsProgram/components/QuestionList.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -16,10 +16,29 @@ ...@@ -16,10 +16,29 @@
</div> </div>
<div class="right">{{ courseName }}</div> <div class="right">{{ courseName }}</div>
</div> </div>
<div class="detail flex">
<div class="detail-item">
单选题{{bottomFrom.singleChoiceScore}}分/题,共{{ danxs }}题,计{{ danxs * bottomFrom.singleChoiceScore }}
</div>
<div class="detail-item">
多选题{{bottomFrom.multipleChoiceScore}}分/题,共{{ duoxs }}题,计{{ duoxs * bottomFrom.multipleChoiceScore }}
</div>
<div class="detail-item">
判断提{{bottomFrom.judgmentScore}}/题,共{{ pds }}题,计{{ pds * bottomFrom.judgmentScore }}
</div>
<div class="detail-item">
一共{{danxs+duoxs+pds}}道题,总共计{{
danxs * bottomFrom.singleChoiceScore +
duoxs * bottomFrom.multipleChoiceScore +
pds * bottomFrom.judgmentScore
}}
</div>
</div>
<div class="table flex" v-loading="loading"> <div class="table flex" v-loading="loading">
<div class="th flex"> <div class="th flex">
<div class="left">序号</div> <div class="left">序号</div>
<!-- <div class="type">题目类型</div> --> <div class="type">题目类型</div>
<div class="middle">题目名称</div> <div class="middle">题目名称</div>
<div class="right">操作</div> <div class="right">操作</div>
</div> </div>
...@@ -30,7 +49,7 @@ ...@@ -30,7 +49,7 @@
class="td flex" class="td flex"
> >
<div class="left">{{ index + 1 }}</div> <div class="left">{{ index + 1 }}</div>
<!-- <div class="type">{{item.topicType}}</div> --> <div class="type">{{ topicTypeArr[item.topicType] }}</div>
<div class="middle zzz"> <div class="middle zzz">
{{ item.topicTitle }} {{ item.topicTitle }}
</div> </div>
...@@ -53,6 +72,7 @@ ...@@ -53,6 +72,7 @@
</div> </div>
</div> </div>
</div> </div>
<div class="rightNum flex"> <div class="rightNum flex">
<div class="left">考试设置</div> <div class="left">考试设置</div>
...@@ -61,7 +81,7 @@ ...@@ -61,7 +81,7 @@
<div> <div>
<el-input <el-input
v-model="bottomFrom.singleChoiceScore" v-model="bottomFrom.singleChoiceScore"
style="width: 40px" style="width: 50px"
size="mini" size="mini"
></el-input> ></el-input>
</div> </div>
...@@ -72,7 +92,7 @@ ...@@ -72,7 +92,7 @@
<div> <div>
<el-input <el-input
v-model="bottomFrom.multipleChoiceScore" v-model="bottomFrom.multipleChoiceScore"
style="width: 40px" style="width: 50px"
size="mini" size="mini"
></el-input> ></el-input>
</div> </div>
...@@ -84,7 +104,7 @@ ...@@ -84,7 +104,7 @@
<div> <div>
<el-input <el-input
v-model="bottomFrom.judgmentScore" v-model="bottomFrom.judgmentScore"
style="width: 40px" style="width: 50px"
size="mini" size="mini"
></el-input> ></el-input>
</div> </div>
...@@ -146,6 +166,11 @@ export default { ...@@ -146,6 +166,11 @@ export default {
questionList: [], questionList: [],
loading: false, loading: false,
courseName: "", courseName: "",
topicTypeArr: {
1: "单选题",
2: "多选题",
3: "判断题",
},
}; };
}, },
// watch: { // watch: {
...@@ -157,7 +182,17 @@ export default { ...@@ -157,7 +182,17 @@ export default {
// } // }
// }, // },
// }, // },
computed: {
danxs() {
return this.questionList.filter((item) => item.topicType === 1).length;
},
duoxs() {
return this.questionList.filter((item) => item.topicType === 2).length;
},
pds() {
return this.questionList.filter((item) => item.topicType === 3).length;
},
},
created() { created() {
console.log("this.courseId", this.courseId); console.log("this.courseId", this.courseId);
if (this.courseId) { if (this.courseId) {
...@@ -179,6 +214,7 @@ export default { ...@@ -179,6 +214,7 @@ export default {
this.questionList = res.rows.map((item) => { this.questionList = res.rows.map((item) => {
return { return {
topicType: item.topicType,
topicId: item.topicId, topicId: item.topicId,
topicTitle: item.topicTitle, topicTitle: item.topicTitle,
}; };
...@@ -190,12 +226,12 @@ export default { ...@@ -190,12 +226,12 @@ export default {
getLessonById(courseId) { getLessonById(courseId) {
getLessonById(courseId).then((res) => { getLessonById(courseId).then((res) => {
console.log(res); console.log(res);
this.bottomFrom ={ this.bottomFrom = {
singleChoiceScore: res.data.qualifiedNum, singleChoiceScore: res.data.singleChoiceScore || 0,
multipleChoiceScore: res.data.multipleChoiceScore, multipleChoiceScore: res.data.multipleChoiceScore || 0,
judgmentScore: res.data.judgmentScore, judgmentScore: res.data.judgmentScore || 0,
qualifiedNum: res.data.qualifiedNum, qualifiedNum: res.data.qualifiedNum || 0,
} };
this.courseName = res.data.courseName; this.courseName = res.data.courseName;
}); });
}, },
...@@ -236,10 +272,29 @@ export default { ...@@ -236,10 +272,29 @@ export default {
// }); // });
// return; // return;
// } // }
// const danx = this.questionList.filter(item=>item.topicType===1);
// const duox = this.questionList.filter(item=>item.topicType===2);
// const pd = this.questionList.filter(item=>item.topicType===3);
// 如果有一个没写,就不允许保存
if (
!(
this.bottomFrom.singleChoiceScore > 0 &&
this.bottomFrom.multipleChoiceScore > 0 &&
this.bottomFrom.judgmentScore > 0 &&
this.fobottomFromrm.qualifiedNum > 0
)
) {
this.$message({
message: "请将分数填写完整",
type: "warning",
});
return;
}
changeLesson({ changeLesson({
courseId: this.courseId, courseId: this.courseId,
// qualifiedNum: this.rightNum, // qualifiedNum: this.rightNum,
...this.bottomFrom ...this.bottomFrom,
}).then((res) => { }).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.$message({ this.$message({
...@@ -261,7 +316,7 @@ export default { ...@@ -261,7 +316,7 @@ export default {
padding-bottom: 7px; padding-bottom: 7px;
margin-bottom: 20px; margin-bottom: 20px;
border-bottom: 1px solid #bbbbbb00; border-bottom: 1px solid #bbbbbb00;
position: relative;
.text { .text {
margin-top: 13px; margin-top: 13px;
margin-bottom: 32px; margin-bottom: 32px;
...@@ -288,6 +343,15 @@ export default { ...@@ -288,6 +343,15 @@ export default {
text-align: right; text-align: right;
} }
} }
.detail {
position: absolute;
top: 45px;
.detail-item {
margin-right: 20px;
color:red;
}
}
.table { .table {
flex: 1; flex: 1;
height: 0; height: 0;
...@@ -307,13 +371,13 @@ export default { ...@@ -307,13 +371,13 @@ export default {
width: 15%; width: 15%;
text-align: center; text-align: center;
} }
// .type { .type {
// width: 10%; width: 10%;
// text-align: center; text-align: center;
// } }
.middle { .middle {
width: 60%; width: 50%;
padding-left: 100px; padding-left: 50px;
} }
.right { .right {
width: 25%; width: 25%;
...@@ -339,13 +403,13 @@ export default { ...@@ -339,13 +403,13 @@ export default {
width: 15%; width: 15%;
text-align: center; text-align: center;
} }
// .type { .type {
// width: 10%; width: 10%;
// text-align: center; text-align: center;
// } }
.middle { .middle {
width: 60%; width: 50%;
padding-left: 100px; padding-left: 50px;
} }
.right { .right {
width: 25%; width: 25%;
......
...@@ -113,11 +113,11 @@ ...@@ -113,11 +113,11 @@
</template> </template>
</el-table-column> </el-table-column>
<!--<el-table-column label="视频" align="center" prop="video">--> <!--<el-table-column label="视频" align="center" prop="video">-->
<!--<template v-slot="{ row: { courseName, video } }">--> <!--<template v-slot="{ row: { courseName, video } }">-->
<!--<a @click="downLoadVideo(video, courseName)" class="down-load"--> <!--<a @click="downLoadVideo(video, courseName)" class="down-load"-->
<!--&gt;下载视频</a--> <!--&gt;下载视频</a-->
<!--&gt;--> <!--&gt;-->
<!--</template>--> <!--</template>-->
<!--</el-table-column>--> <!--</el-table-column>-->
<el-table-column <el-table-column
label="发布时间" label="发布时间"
...@@ -343,7 +343,12 @@ export default { ...@@ -343,7 +343,12 @@ export default {
return getLessonById(courseId); return getLessonById(courseId);
}) })
.then((res) => { .then((res) => {
if (res.data.qualifiedNum > 0) { if (
res.data.singleChoiceScore > 0 &&
res.data.multipleChoiceScore > 0 &&
res.data.judgmentScore > 0 &&
res.data.qualifiedNum > 0
) {
return true; return true;
} }
}) })
...@@ -353,7 +358,7 @@ export default { ...@@ -353,7 +358,7 @@ export default {
return issue({ courseId }); return issue({ courseId });
} else { } else {
this.$message({ this.$message({
message: "请先录入答题合格数", message: "请先在题目列表录入题目分数跟合格分数",
type: "warning", type: "warning",
}); });
} }
......
...@@ -182,6 +182,7 @@ export default { ...@@ -182,6 +182,7 @@ export default {
}) })
.then((res) => { .then((res) => {
if (res.code == 200) { if (res.code == 200) {
console.log(res.data)
this.goodJobData = res.data; this.goodJobData = res.data;
this.goodJobShow = true; this.goodJobShow = true;
} }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-21 17:20:49 * @Date: 2022-09-21 17:20:49
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-09-28 11:56:49 * @LastEditTime: 2023-01-12 17:00:34
* @FilePath: /danger-manage-web/src/views/myLessons/components/GoodJob.vue * @FilePath: /danger-manage-web/src/views/myLessons/components/GoodJob.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -13,17 +13,16 @@ ...@@ -13,17 +13,16 @@
<template v-if="goodJobData.answer >= goodJobData.qualifiedNum"> <template v-if="goodJobData.answer >= goodJobData.qualifiedNum">
<div class="icon"><i class="iconfont icon-smiling" /></div> <div class="icon"><i class="iconfont icon-smiling" /></div>
<div> <div>
恭喜你,做对{{ goodJobData.answer }}道题得分{{ <!-- 恭喜你,做对{{ goodJobData.answer }}道题 -->
Math.floor((goodJobData.answer / goodJobData.topicNum) * 100) 恭喜你,得分{{ goodJobData.answer }},成绩合格!
}},成绩合格!
</div> </div>
</template> </template>
<template v-else> <template v-else>
<div class="icon"><i class="iconfont icon-nanguo" /></div> <div class="icon"><i class="iconfont icon-nanguo" /></div>
<div> <div>
继续努力,做对{{ goodJobData.answer }}道题得分{{ 继续努力,
Math.floor((goodJobData.answer / goodJobData.topicNum) * 100) <!-- 做对{{ goodJobData.answer }}道题 -->
}},成绩不合格! 得分{{ goodJobData.answer }},成绩不合格!
</div> </div>
</template> </template>
</div> </div>
......
...@@ -2,12 +2,13 @@ ...@@ -2,12 +2,13 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-21 11:00:14 * @Date: 2022-09-21 11:00:14
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2023-01-10 14:36:39 * @LastEditTime: 2023-01-11 16:44:43
* @FilePath: /danger-manage-web/src/views/myLessons/components/Question.vue * @FilePath: /danger-manage-web/src/views/myLessons/components/Question.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
<template> <template>
<div class="question flex"> <div class="question flex">
<div class="tips">{{ tipsArr[questionObj.topicType] }}</div>
<div <div
class="top" class="top"
:class="{ flex: alignItemsCenter }" :class="{ flex: alignItemsCenter }"
...@@ -23,7 +24,7 @@ ...@@ -23,7 +24,7 @@
<div <div
class="item flex" class="item flex"
v-for="(item, index) in questionObj.question" v-for="(item, index) in questionObj.question"
:key="item+'aas'+index" :key="item + 'aas' + index"
> >
<div class="letter"> <div class="letter">
{{ letters[index] }} {{ letters[index] }}
...@@ -38,10 +39,10 @@ ...@@ -38,10 +39,10 @@
<div class="change-wrapper flex"> <div class="change-wrapper flex">
<div <div
class="change" class="change"
:class="{ active: letterActive.indexOf(index)>=0 }" :class="{ active: letterActive.indexOf(index) >= 0 }"
@click="changeLetter(index)" @click="changeLetter(index)"
v-for="(item, index) in questionObj.question" v-for="(item, index) in questionObj.question"
:key="item+'a'+index" :key="item + 'a' + index"
> >
{{ letters[index] }} {{ letters[index] }}
</div> </div>
...@@ -105,8 +106,8 @@ export default { ...@@ -105,8 +106,8 @@ export default {
}, },
// 从外面传进来的选项,选择过的才有,没选择过的没有 // 从外面传进来的选项,选择过的才有,没选择过的没有
selectLetter: { selectLetter: {
type: [String, Number,Array], type: [String, Number, Array],
default:()=>{ default: () => {
return []; return [];
}, },
}, },
...@@ -117,6 +118,11 @@ export default { ...@@ -117,6 +118,11 @@ export default {
// 如果传进来了,就是这个值,如果没有就是null,因为动画需要那个key的问题,会清空原始的盒子,所以要传一下值 // 如果传进来了,就是这个值,如果没有就是null,因为动画需要那个key的问题,会清空原始的盒子,所以要传一下值
letterActive: this.selectLetter, letterActive: this.selectLetter,
letters, letters,
tipsArr: {
1: "单选题",
2: "多选题",
3: "判断题",
},
}; };
}, },
mounted() { mounted() {
...@@ -163,6 +169,19 @@ export default { ...@@ -163,6 +169,19 @@ export default {
border-bottom: 1px solid #bbbbbb; border-bottom: 1px solid #bbbbbb;
// background: red; // background: red;
flex-direction: column; flex-direction: column;
position: relative;
.tips {
width: 80px;
height: 24px;
background: #1d84ff;
font-size: 14px;
color: #fff;
position: absolute;
top: -45px;
left: 0px;
text-align: center;
line-height: 24px;
}
.top { .top {
background: #f9f9f9; background: #f9f9f9;
height: 54px; height: 54px;
......
...@@ -2,12 +2,14 @@ ...@@ -2,12 +2,14 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-21 11:00:14 * @Date: 2022-09-21 11:00:14
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2023-01-10 15:32:10 * @LastEditTime: 2023-01-11 14:59:40
* @FilePath: /danger-manage-web/src/views/myLessons/components/Question.vue * @FilePath: /danger-manage-web/src/views/myLessons/components/Question.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
<template> <template>
<div class="question flex"> <div class="question flex">
<div class="tips">{{ tipsArr[questionObj.topicType] }}</div>
<div <div
class="top" class="top"
:class="{ flex: alignItemsCenter }" :class="{ flex: alignItemsCenter }"
...@@ -117,6 +119,11 @@ export default { ...@@ -117,6 +119,11 @@ export default {
// 如果传进来了,就是这个值,如果没有就是null,因为动画需要那个key的问题,会清空原始的盒子,所以要传一下值 // 如果传进来了,就是这个值,如果没有就是null,因为动画需要那个key的问题,会清空原始的盒子,所以要传一下值
letterActive: this.selectLetter, letterActive: this.selectLetter,
letters, letters,
tipsArr: {
1: "单选题",
2: "多选题",
3: "判断题",
},
}; };
}, },
mounted() { mounted() {
...@@ -170,6 +177,19 @@ export default { ...@@ -170,6 +177,19 @@ export default {
border-bottom: 1px solid #bbbbbb; border-bottom: 1px solid #bbbbbb;
// background: red; // background: red;
flex-direction: column; flex-direction: column;
position: relative;
.tips {
width: 80px;
height: 24px;
background: #1d84ff;
font-size: 14px;
color: #fff;
position: absolute;
top: -45px;
left: 0px;
text-align: center;
line-height: 24px;
}
.top { .top {
background: #f9f9f9; background: #f9f9f9;
height: 54px; height: 54px;
......
...@@ -26,19 +26,20 @@ ...@@ -26,19 +26,20 @@
</div> </div>
<div class="right flex"> <div class="right flex">
<div class="a"> <div class="a">
<span <!-- <span
class="text" class="text"
:class="{ red: item.examinationResult < item.qualifiedNum }" :class="{ red: item.examinationResult < item.qualifiedNum }"
>{{ >{{
(item.examinationResult &&item.topicNum)? Math.floor((item.examinationResult / item.topicNum) * 100):0 (item.examinationResult &&item.topicNum)? Math.floor((item.examinationResult / item.topicNum) * 100):0
}}</span }}</span
>/<span>100</span> >/<span>100</span> -->
<span class="text">{{item.examinationResult}}</span>/<span>{{item.totalScore}}</span>
</div> </div>
<div class="b flex"> <div class="b flex">
<div style="width: 60px"> <div style="width: 60px">
<el-progress <el-progress
:percentage=" :percentage="
Math.floor((item.examinationResult / item.topicNum) * 100) Math.floor((item.examinationResult / item.totalScore) * 100)
" "
:show-text="false" :show-text="false"
></el-progress> ></el-progress>
...@@ -64,6 +65,9 @@ export default { ...@@ -64,6 +65,9 @@ export default {
data() { data() {
return {}; return {};
}, },
mounted(){
console.log(this.list)
},
methods: {}, methods: {},
}; };
</script> </script>
......
...@@ -5,6 +5,18 @@ ...@@ -5,6 +5,18 @@
目前录入题目是第<span>{{ questionNextNum }}</span 目前录入题目是第<span>{{ questionNextNum }}</span
>道题 >道题
</div> </div>
<div>
<el-radio-group
v-model="form.topicType"
size="mini"
@input="topicTypeChange"
>
<el-radio-button :label="1">单选</el-radio-button>
<el-radio-button :label="2">多选</el-radio-button>
<el-radio-button :label="3">判断</el-radio-button>
</el-radio-group>
</div>
<div class="right">{{ courseName }}</div> <div class="right">{{ courseName }}</div>
</div> </div>
...@@ -62,7 +74,7 @@ ...@@ -62,7 +74,7 @@
<div <div
@click="rightAnswerClick(index)" @click="rightAnswerClick(index)"
class="right" class="right"
:class="{ active: answerNum === index }" :class="{ active: answerNum.indexOf(index) >= 0 }"
> >
设为正确答案 设为正确答案
</div> </div>
...@@ -77,7 +89,7 @@ ...@@ -77,7 +89,7 @@
</div> </div>
</el-form-item> </el-form-item>
<el-form-item <!-- <el-form-item
class="noAttr" class="noAttr"
:label="`选项${form.questions.length + 1}`" :label="`选项${form.questions.length + 1}`"
prop="" prop=""
...@@ -99,17 +111,15 @@ ...@@ -99,17 +111,15 @@
:class="{ active: answerNum === form.questions.length }" :class="{ active: answerNum === form.questions.length }"
> >
设为正确答案 设为正确答案
</div> </div> -->
<div style="padding-left: 30px" v-if="form.topicType != 3">
<el-button <el-button size="mini" type="primary" @click.prevent="add(addValue)"
size="mini" >新增选项</el-button
type="primary" >
@click.prevent="add(addValue)" </div>
>新增</el-button <!-- </div>
>
</div>
</div> </div>
</el-form-item> </el-form-item> -->
</div> </div>
</el-form> </el-form>
</div> </div>
...@@ -148,10 +158,11 @@ export default { ...@@ -148,10 +158,11 @@ export default {
data() { data() {
return { return {
form: { form: {
topicType: 1,
topicTitle: "", topicTitle: "",
questions: [{ value: "" }, { value: "" }, { value: "" }], questions: [{ value: "" }, { value: "" }],
}, },
answerNum: null, answerNum: [],
addValue: "", addValue: "",
// 录入的是第几道题 // 录入的是第几道题
questionNextNum: 1, questionNextNum: 1,
...@@ -166,10 +177,12 @@ export default { ...@@ -166,10 +177,12 @@ export default {
console.log("?", res.data); console.log("?", res.data);
const data = res.data; const data = res.data;
this.form = { this.form = {
topicType: data.topicType,
topicTitle: data.topicTitle, topicTitle: data.topicTitle,
questions: JSON.parse(data.topicOption), questions: JSON.parse(data.topicOption),
}; };
this.answerNum = data.answer; // this.answerNum = data.answer;
this.answerNum = JSON.parse(data.answer);
}); });
} }
...@@ -179,6 +192,23 @@ export default { ...@@ -179,6 +192,23 @@ export default {
// this.getLessonById(this.bankId); // this.getLessonById(this.bankId);
}, },
methods: { methods: {
// 题目类型变化
topicTypeChange(num) {
if (num == 1) {
this.answerNum = [];
} else if (num == 2) {
this.answerNum = [];
// this.form.questions=[{ value: "" }, { value: "" }];
} else {
this.answerNum = [];
const form = {
topicType: 3,
topicTitle: this.form.topicTitle,
questions: [{ value: "对" }, { value: "错" }],
};
this.form = form;
}
},
getQuestion() { getQuestion() {
listSubject({ bankId: this.bankId }).then((res) => { listSubject({ bankId: this.bankId }).then((res) => {
console.log(res); console.log(res);
...@@ -209,19 +239,46 @@ export default { ...@@ -209,19 +239,46 @@ export default {
} }
}, },
rightAnswerClick(index) { rightAnswerClick(index) {
this.answerNum = index; if (this.form.topicType === 2) {
console.log(index); const ind = this.answerNum.indexOf(index);
if (ind < 0) {
this.answerNum.push(index);
} else {
this.answerNum.splice(ind, 1);
}
this.answerNum = this.answerNum.sort((a, b) => {
return a - b;
});
console.log(this.answerNum);
} else {
// 判断跟单选模式差不多
this.answerNum = [index];
}
}, },
// 删除选项 // 删除选项
removeDomain(question) { removeDomain(question) {
const index = this.form.questions.indexOf(question); const index = this.form.questions.indexOf(question);
console.log(index);
// 如果是正确答案,就让正确答案清空 // 如果是正确答案,就让正确答案清空
if (this.answerNum === index) { const ind = this.answerNum.indexOf(index);
this.answerNum = null; if (ind >= 0) {
this.answerNum.splice(ind, 1);
}
// 如果是最后一位呗删除,那不用管,如果不是最后一位置,这一位删除之后,则这一位后面的所有数字都要-1;
if (index != this.form.questions.length - 1) {
this.answerNum = this.answerNum.map((item, i) => {
if (item >= index) {
return item - 1;
} else {
return item;
}
});
} }
if (index >= 0) { if (index >= 0) {
this.form.questions.splice(index, 1); this.form.questions.splice(index, 1);
} }
console.log(this.answerNum);
// console.log(this.form.questions)
}, },
// 新增选项 // 新增选项
add(addValue) { add(addValue) {
...@@ -230,7 +287,7 @@ export default { ...@@ -230,7 +287,7 @@ export default {
}, },
save(num = 2) { save(num = 2) {
return new Promise((resove) => { return new Promise((resove) => {
if (!this.answerNum && this.answerNum !== 0) { if (this.answerNum.length <= 0) {
this.$message({ this.$message({
message: "警告,请设置一个正确答案", message: "警告,请设置一个正确答案",
type: "warning", type: "warning",
...@@ -242,7 +299,9 @@ export default { ...@@ -242,7 +299,9 @@ export default {
const data = {}; const data = {};
data.topicTitle = this.form.topicTitle; data.topicTitle = this.form.topicTitle;
data.topicOption = JSON.stringify(this.form.questions); data.topicOption = JSON.stringify(this.form.questions);
data.answer = this.answerNum; // data.answer = this.answerNum;
data.answer = JSON.stringify(this.answerNum);
data.topicType = this.form.topicType;
this.addQuestion(data).then((res) => { this.addQuestion(data).then((res) => {
if (res.code == 200) { if (res.code == 200) {
// 把修改的这个归位,变成正常添加 // 把修改的这个归位,变成正常添加
...@@ -273,9 +332,9 @@ export default { ...@@ -273,9 +332,9 @@ export default {
reset() { reset() {
this.form = { this.form = {
topicTitle: "", topicTitle: "",
questions: [{ value: "" }, { value: "" }, { value: "" }], questions: [{ value: "" }, { value: "" }],
}; };
this.answerNum = null; this.answerNum = [];
this.addValue = ""; this.addValue = "";
}, },
}, },
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-22 17:56:05 * @Date: 2022-09-22 17:56:05
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-12-27 16:03:40 * @LastEditTime: 2023-01-12 09:59:39
* @FilePath: /danger-manage-web/src/views/lessonsProgram/components/QuestionList.vue * @FilePath: /danger-manage-web/src/views/lessonsProgram/components/QuestionList.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
<div class="table flex" v-loading="loading"> <div class="table flex" v-loading="loading">
<div class="th flex"> <div class="th flex">
<div class="left">序号</div> <div class="left">序号</div>
<div class="type">题目类型</div>
<div class="middle">题目名称</div> <div class="middle">题目名称</div>
<div class="right">操作</div> <div class="right">操作</div>
</div> </div>
...@@ -42,6 +43,7 @@ ...@@ -42,6 +43,7 @@
class="td flex" class="td flex"
> >
<div class="left">{{ index + 1 }}</div> <div class="left">{{ index + 1 }}</div>
<div class="type">{{ topicTypeArr[item.topicType] }}</div>
<div class="middle zzz"> <div class="middle zzz">
{{ item.topicTitle }} {{ item.topicTitle }}
</div> </div>
...@@ -189,7 +191,12 @@ export default { ...@@ -189,7 +191,12 @@ export default {
url: process.env.VUE_APP_BASE_API + "/system/subject/import", url: process.env.VUE_APP_BASE_API + "/system/subject/import",
}, },
queryParams: { queryParams: {
bankId:0 bankId: 0,
},
topicTypeArr: {
1: "单选题",
2: "多选题",
3: "判断题",
}, },
}; };
}, },
...@@ -214,11 +221,14 @@ export default { ...@@ -214,11 +221,14 @@ export default {
methods: { methods: {
// 文件下载处理 // 文件下载处理
handleDownload(row) { handleDownload(row) {
const a = document.createElement('a') const a = document.createElement("a");
a.setAttribute('download', '试题导入模板') a.setAttribute("download", "试题导入模板");
a.setAttribute('target', '_blank') a.setAttribute("target", "_blank");
a.setAttribute('href', 'http://36.138.181.113:8091/dangerManage/profile/upload/2022/kaoshi/shitimoban.xlsx') a.setAttribute(
a.click() "href",
"http://36.138.181.113:8091/dangerManage/profile/upload/2022/kaoshi/shitimoban.xlsx"
);
a.click();
}, },
/** 导入按钮操作 */ /** 导入按钮操作 */
...@@ -263,7 +273,6 @@ export default { ...@@ -263,7 +273,6 @@ export default {
}, },
getQuestion(bankId) { getQuestion(bankId) {
return listSubject(bankId).then((res) => { return listSubject(bankId).then((res) => {
this.questionList = res.rows.map((item) => { this.questionList = res.rows.map((item) => {
return { return {
subjectId: item.subjectId, subjectId: item.subjectId,
...@@ -388,9 +397,13 @@ export default { ...@@ -388,9 +397,13 @@ export default {
width: 15%; width: 15%;
text-align: center; text-align: center;
} }
.type {
width: 10%;
text-align: center;
}
.middle { .middle {
width: 60%; width: 50%;
padding-left: 100px; padding-left: 50px;
} }
.right { .right {
width: 25%; width: 25%;
...@@ -416,9 +429,13 @@ export default { ...@@ -416,9 +429,13 @@ export default {
width: 15%; width: 15%;
text-align: center; text-align: center;
} }
.type {
width: 10%;
text-align: center;
}
.middle { .middle {
width: 60%; width: 50%;
padding-left: 10px; padding-left: 50px;
} }
.right { .right {
width: 25%; width: 25%;
......
...@@ -5,6 +5,17 @@ ...@@ -5,6 +5,17 @@
目前录入题目是第<span>{{ questionNextNum }}</span 目前录入题目是第<span>{{ questionNextNum }}</span
>道题 >道题
</div> </div>
<div>
<el-radio-group
v-model="form.topicType"
size="mini"
@input="topicTypeChange"
>
<el-radio-button :label="1">单选</el-radio-button>
<el-radio-button :label="2">多选</el-radio-button>
<el-radio-button :label="3">判断</el-radio-button>
</el-radio-group>
</div>
<div class="right">{{ courseName }}</div> <div class="right">{{ courseName }}</div>
</div> </div>
...@@ -40,15 +51,11 @@ ...@@ -40,15 +51,11 @@
:label="'选项' + (index + 1)" :label="'选项' + (index + 1)"
:key="question.key" :key="question.key"
:prop="'questions.' + index + '.value'" :prop="'questions.' + index + '.value'"
:rules=" :rules="{
index === 0 required: true,
? { message: '第一项不能为空不能为空',
required: true, trigger: 'blur',
message: '第一项不能为空不能为空', }"
trigger: 'blur',
}
: {}
"
> >
<div class="add-select flex"> <div class="add-select flex">
<el-input <el-input
...@@ -62,7 +69,7 @@ ...@@ -62,7 +69,7 @@
<div <div
@click="rightAnswerClick(index)" @click="rightAnswerClick(index)"
class="right" class="right"
:class="{ active: answerNum === index }" :class="{ active: answerNum.indexOf(index) >= 0 }"
> >
设为正确答案 设为正确答案
</div> </div>
...@@ -100,7 +107,7 @@ ...@@ -100,7 +107,7 @@
> >
设为正确答案 设为正确答案
</div> --> </div> -->
<div style="padding-left:30px"> <div style="padding-left: 30px">
<el-button size="mini" type="primary" @click.prevent="add(addValue)" <el-button size="mini" type="primary" @click.prevent="add(addValue)"
>新增选项</el-button >新增选项</el-button
> >
...@@ -141,10 +148,11 @@ export default { ...@@ -141,10 +148,11 @@ export default {
data() { data() {
return { return {
form: { form: {
topicType: 1,
topicTitle: "", topicTitle: "",
questions: [{ value: "" }, { value: "" }], questions: [{ value: "" }, { value: "" }],
}, },
answerNum: null, answerNum: [],
addValue: "", addValue: "",
// 录入的是第几道题 // 录入的是第几道题
questionNextNum: 1, questionNextNum: 1,
...@@ -159,10 +167,12 @@ export default { ...@@ -159,10 +167,12 @@ export default {
console.log(res.data); console.log(res.data);
const data = res.data; const data = res.data;
this.form = { this.form = {
topicType: data.topicType,
topicTitle: data.topicTitle, topicTitle: data.topicTitle,
questions: JSON.parse(data.topicOption), questions: JSON.parse(data.topicOption),
}; };
this.answerNum = data.answer; // this.answerNum = data.answer;
this.answerNum = JSON.parse(data.answer);
}); });
} }
...@@ -172,14 +182,31 @@ export default { ...@@ -172,14 +182,31 @@ export default {
this.getLessonById(this.courseId); this.getLessonById(this.courseId);
}, },
methods: { methods: {
// 题目类型变化
topicTypeChange(num) {
if (num == 1) {
this.answerNum = [];
} else if (num == 2) {
this.answerNum = [];
// this.form.questions=[{ value: "" }, { value: "" }];
} else {
this.answerNum = [];
const form = {
topicType: 3,
topicTitle: this.form.topicTitle,
questions: [{ value: "对" }, { value: "错" }],
};
this.form = form;
}
},
getQuestion() { getQuestion() {
getQuestion({ courseId: this.courseId }).then((res) => { getQuestion({ courseId: this.courseId }).then((res) => {
// 如果是修改 就是原来的值,如果不是,就是总数+1 // 如果是修改 就是原来的值,如果不是,就是总数+1
console.log(res) console.log(res);
if (this.topicId) { if (this.topicId) {
res.rows.forEach((item, index) => { res.rows.forEach((item, index) => {
if (item.topicId == this.topicId) { if (item.topicId == this.topicId) {
this.questionNextNum = index+1; this.questionNextNum = index + 1;
} }
}); });
} else { } else {
...@@ -202,20 +229,58 @@ export default { ...@@ -202,20 +229,58 @@ export default {
} }
}, },
rightAnswerClick(index) { rightAnswerClick(index) {
this.answerNum = index; if (this.form.topicType === 2) {
console.log(index); const ind = this.answerNum.indexOf(index);
if (ind < 0) {
this.answerNum.push(index);
} else {
this.answerNum.splice(ind, 1);
}
this.answerNum = this.answerNum.sort((a, b) => {
return a - b;
});
console.log(this.answerNum);
} else {
// 判断跟单选模式差不多
this.answerNum = [index];
}
}, },
// 删除选项 // 删除选项
removeDomain(question) { removeDomain(question) {
const index = this.form.questions.indexOf(question); const index = this.form.questions.indexOf(question);
console.log(index);
// 如果是正确答案,就让正确答案清空 // 如果是正确答案,就让正确答案清空
if (this.answerNum === index) { const ind = this.answerNum.indexOf(index);
this.answerNum = null; if (ind >= 0) {
this.answerNum.splice(ind, 1);
}
// 如果是最后一位呗删除,那不用管,如果不是最后一位置,这一位删除之后,则这一位后面的所有数字都要-1;
if (index != this.form.questions.length - 1) {
this.answerNum = this.answerNum.map((item, i) => {
if (item >= index) {
return item - 1;
} else {
return item;
}
});
} }
if (index >= 0) { if (index >= 0) {
this.form.questions.splice(index, 1); this.form.questions.splice(index, 1);
} }
console.log(this.answerNum);
// console.log(this.form.questions)
}, },
// 删除选项
// removeDomain(question) {
// const index = this.form.questions.indexOf(question);
// // 如果是正确答案,就让正确答案清空
// if (this.answerNum === index) {
// this.answerNum = null;
// }
// if (index >= 0) {
// this.form.questions.splice(index, 1);
// }
// },
// 新增选项 // 新增选项
add(addValue) { add(addValue) {
this.form.questions.push({ value: addValue }); this.form.questions.push({ value: addValue });
...@@ -235,7 +300,9 @@ export default { ...@@ -235,7 +300,9 @@ export default {
const data = {}; const data = {};
data.topicTitle = this.form.topicTitle; data.topicTitle = this.form.topicTitle;
data.topicOption = JSON.stringify(this.form.questions); data.topicOption = JSON.stringify(this.form.questions);
data.answer = this.answerNum; // data.answer = this.answerNum;
data.answer = JSON.stringify(this.answerNum);
data.topicType = this.form.topicType;
this.addQuestion(data).then((res) => { this.addQuestion(data).then((res) => {
if (res.code == 200) { if (res.code == 200) {
// 把修改的这个归位,变成正常添加 // 把修改的这个归位,变成正常添加
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-22 17:56:05 * @Date: 2022-09-22 17:56:05
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-12-26 16:55:10 * @LastEditTime: 2023-01-12 16:44:31
* @FilePath: /danger-manage-web/src/views/lessonsProgram/components/QuestionList.vue * @FilePath: /danger-manage-web/src/views/lessonsProgram/components/QuestionList.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -16,9 +16,36 @@ ...@@ -16,9 +16,36 @@
</div> </div>
<div class="right">{{ courseName }}</div> <div class="right">{{ courseName }}</div>
</div> </div>
<div class="detail flex">
<div class="detail-item">
单选题{{ bottomFrom.singleChoiceScore }}分/题,共{{ danxs }}题,计{{
danxs * bottomFrom.singleChoiceScore
}}
</div>
<div class="detail-item">
多选题{{ bottomFrom.multipleChoiceScore }}分/题,共{{ duoxs }}题,计{{
duoxs * bottomFrom.multipleChoiceScore
}}
</div>
<div class="detail-item">
判断提{{ bottomFrom.judgmentScore }}/题,共{{ pds }}题,计{{
pds * bottomFrom.judgmentScore
}}
</div>
<div class="detail-item">
一共{{ danxs + duoxs + pds }}道题,总共计{{
danxs * bottomFrom.singleChoiceScore +
duoxs * bottomFrom.multipleChoiceScore +
pds * bottomFrom.judgmentScore
}}
</div>
</div>
<div class="table flex" v-loading="loading"> <div class="table flex" v-loading="loading">
<div class="th flex"> <div class="th flex">
<div class="left">序号</div> <div class="left">序号</div>
<div class="type">题目类型</div>
<div class="middle">题目名称</div> <div class="middle">题目名称</div>
<div class="right">操作</div> <div class="right">操作</div>
</div> </div>
...@@ -29,6 +56,7 @@ ...@@ -29,6 +56,7 @@
class="td flex" class="td flex"
> >
<div class="left">{{ index + 1 }}</div> <div class="left">{{ index + 1 }}</div>
<div class="type">{{ topicTypeArr[item.topicType] }}</div>
<div class="middle zzz"> <div class="middle zzz">
{{ item.topicTitle }} {{ item.topicTitle }}
</div> </div>
...@@ -53,7 +81,7 @@ ...@@ -53,7 +81,7 @@
</div> </div>
<div class="rightNum flex"> <div class="rightNum flex">
<div class="left">考试设置</div> <div class="left">考试设置</div>
<div class="middle flex"> <!-- <div class="middle flex">
<div class="left-text">答对题目大于</div> <div class="left-text">答对题目大于</div>
<div> <div>
<el-input <el-input
...@@ -63,6 +91,52 @@ ...@@ -63,6 +91,52 @@
></el-input> ></el-input>
</div> </div>
<div>为合格</div> <div>为合格</div>
</div> -->
<div class="middle flex">
<div class="left-text">单选一题</div>
<div>
<el-input
v-model="bottomFrom.singleChoiceScore"
style="width: 50px"
size="mini"
></el-input>
</div>
<div></div>
</div>
<div class="middle flex">
<div class="left-text">多选一题</div>
<div>
<el-input
v-model="bottomFrom.multipleChoiceScore"
style="width: 50px"
size="mini"
></el-input>
</div>
<div></div>
</div>
<div class="middle flex">
<div class="left-text">判断一题</div>
<div>
<el-input
v-model="bottomFrom.judgmentScore"
style="width: 50px"
size="mini"
></el-input>
</div>
<div></div>
</div>
<div class="middle flex">
<div class="left-text">总分大于</div>
<div>
<el-input
v-model="bottomFrom.qualifiedNum"
style="width: 60px"
size="mini"
></el-input>
</div>
<div>为合格</div>
</div> </div>
<div class="right"> <div class="right">
<el-button <el-button
...@@ -96,11 +170,22 @@ export default { ...@@ -96,11 +170,22 @@ export default {
return { return {
// 当前课程的第几题,调一遍接口 // 当前课程的第几题,调一遍接口
questionNum: null, questionNum: null,
bottomFrom: {
singleChoiceScore: 0,
multipleChoiceScore: 0,
judgmentScore: 0,
qualifiedNum: 0,
},
// 答对几道题 // 答对几道题
rightNum: 0, rightNum: 0,
questionList: [], questionList: [],
loading: false, loading: false,
courseName: "", courseName: "",
topicTypeArr: {
1: "单选题",
2: "多选题",
3: "判断题",
},
}; };
}, },
// watch: { // watch: {
...@@ -112,7 +197,17 @@ export default { ...@@ -112,7 +197,17 @@ export default {
// } // }
// }, // },
// }, // },
computed: {
danxs() {
return this.questionList.filter((item) => item.topicType === 1).length;
},
duoxs() {
return this.questionList.filter((item) => item.topicType === 2).length;
},
pds() {
return this.questionList.filter((item) => item.topicType === 3).length;
},
},
created() { created() {
console.log("this.courseId", this.courseId); console.log("this.courseId", this.courseId);
if (this.courseId) { if (this.courseId) {
...@@ -134,6 +229,7 @@ export default { ...@@ -134,6 +229,7 @@ export default {
this.questionList = res.rows.map((item) => { this.questionList = res.rows.map((item) => {
return { return {
topicType: item.topicType,
topicId: item.topicId, topicId: item.topicId,
topicTitle: item.topicTitle, topicTitle: item.topicTitle,
}; };
...@@ -145,7 +241,13 @@ export default { ...@@ -145,7 +241,13 @@ export default {
getLessonById(courseId) { getLessonById(courseId) {
getLessonById(courseId).then((res) => { getLessonById(courseId).then((res) => {
console.log(res); console.log(res);
this.rightNum = res.data.qualifiedNum; // this.rightNum = res.data.qualifiedNum;
this.bottomFrom = {
singleChoiceScore: res.data.singleChoiceScore || 0,
multipleChoiceScore: res.data.multipleChoiceScore || 0,
judgmentScore: res.data.judgmentScore || 0,
qualifiedNum: res.data.qualifiedNum || 0,
};
this.courseName = res.data.courseName; this.courseName = res.data.courseName;
}); });
}, },
...@@ -179,16 +281,31 @@ export default { ...@@ -179,16 +281,31 @@ export default {
}); });
}, },
saveRightNum() { saveRightNum() {
if (this.rightNum > this.questionList.length) { // if (this.rightNum > this.questionList.length) {
// this.$message({
// message: "答对题目数应小于等于考试题目总数",
// type: "warning",
// });
// return;
// }
if (
!(
this.bottomFrom.singleChoiceScore > 0 &&
this.bottomFrom.multipleChoiceScore > 0 &&
this.bottomFrom.judgmentScore > 0 &&
this.bottomFrom.qualifiedNum > 0
)
) {
this.$message({ this.$message({
message: "答对题目数应小于等于考试题目总数", message: "请将分数填写完整",
type: "warning", type: "warning",
}); });
return; return;
} }
changeLesson({ changeLesson({
courseId: this.courseId, courseId: this.courseId,
qualifiedNum: this.rightNum, // qualifiedNum: this.rightNum,
...this.bottomFrom,
}).then((res) => { }).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.$message({ this.$message({
...@@ -211,6 +328,7 @@ export default { ...@@ -211,6 +328,7 @@ export default {
padding-bottom: 7px; padding-bottom: 7px;
margin-bottom: 20px; margin-bottom: 20px;
border-bottom: 1px solid #bbbbbb00; border-bottom: 1px solid #bbbbbb00;
position: relative;
.text { .text {
margin-top: 13px; margin-top: 13px;
...@@ -238,6 +356,15 @@ export default { ...@@ -238,6 +356,15 @@ export default {
text-align: right; text-align: right;
} }
} }
.detail {
position: absolute;
top: 45px;
.detail-item {
margin-right: 20px;
color: red;
}
}
.table { .table {
flex: 1; flex: 1;
height: 0; height: 0;
...@@ -257,9 +384,13 @@ export default { ...@@ -257,9 +384,13 @@ export default {
width: 15%; width: 15%;
text-align: center; text-align: center;
} }
.type {
width: 10%;
text-align: center;
}
.middle { .middle {
width: 60%; width: 50%;
padding-left: 100px; padding-left: 50px;
} }
.right { .right {
width: 25%; width: 25%;
...@@ -285,9 +416,13 @@ export default { ...@@ -285,9 +416,13 @@ export default {
width: 15%; width: 15%;
text-align: center; text-align: center;
} }
.type {
width: 10%;
text-align: center;
}
.middle { .middle {
width: 60%; width: 50%;
padding-left: 10px; padding-left: 50px;
} }
.right { .right {
width: 25%; width: 25%;
......
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
width="180" width="180"
> >
<template v-slot="{ row: { topicNum, courseId } }"> <template v-slot="{ row: { topicNum, courseId } }">
<div class="timuNum"> <div class="timuNum">
<div v-if="topicNum > 0">{{ `已录入${topicNum}题` }}</div> <div v-if="topicNum > 0">{{ `已录入${topicNum}题` }}</div>
<div v-else>未录入</div> <div v-else>未录入</div>
</div> </div>
...@@ -114,7 +114,6 @@ ...@@ -114,7 +114,6 @@
<el-button <el-button
:disabled="status == 1" :disabled="status == 1"
v-if="status == 0" v-if="status == 0"
size="mini" size="mini"
type="text" type="text"
icon="el-icon-edit" icon="el-icon-edit"
...@@ -131,7 +130,6 @@ ...@@ -131,7 +130,6 @@
<el-button <el-button
:disabled="status == 1" :disabled="status == 1"
v-if="status == 0" v-if="status == 0"
size="mini" size="mini"
type="text" type="text"
icon="el-icon-delete" icon="el-icon-delete"
...@@ -328,7 +326,12 @@ export default { ...@@ -328,7 +326,12 @@ export default {
return getLessonById(courseId); return getLessonById(courseId);
}) })
.then((res) => { .then((res) => {
if (res.data.qualifiedNum > 0) { if (
res.data.singleChoiceScore > 0 &&
res.data.multipleChoiceScore > 0 &&
res.data.judgmentScore > 0 &&
res.data.qualifiedNum > 0
) {
return true; return true;
} }
}) })
...@@ -340,7 +343,7 @@ export default { ...@@ -340,7 +343,7 @@ export default {
return testPublish({ courseId, personnelType: 1 }); return testPublish({ courseId, personnelType: 1 });
} else { } else {
this.$message({ this.$message({
message: "请先录入答题合格数", message: "请先在题目列表录入题目分数跟合格分数",
type: "warning", type: "warning",
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment