Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
4cd00f17
Commit
4cd00f17
authored
Jan 31, 2023
by
纪泽龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复一个保存分数的bug
parent
0e27e9e1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
127 additions
and
128 deletions
+127
-128
QuestionList.vue
...cationPlanExam/lessonsProgram/components/QuestionList.vue
+2
-2
EnterInformation.vue
danger-manage-web/src/views/visitorExam/EnterInformation.vue
+125
-126
No files found.
danger-manage-web/src/views/educationPlanExam/lessonsProgram/components/QuestionList.vue
View file @
4cd00f17
...
...
@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-22 17:56:05
* @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2023-01-
13 16:26:33
* @LastEditTime: 2023-01-
31 10:12:31
* @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
-->
...
...
@@ -296,7 +296,7 @@ export default {
this
.
bottomFrom
.
singleChoiceScore
>
0
&&
this
.
bottomFrom
.
multipleChoiceScore
>
0
&&
this
.
bottomFrom
.
judgmentScore
>
0
&&
this
.
fobottomFromr
m
.
qualifiedNum
>
0
this
.
bottomFro
m
.
qualifiedNum
>
0
)
)
{
this
.
$message
({
...
...
danger-manage-web/src/views/visitorExam/EnterInformation.vue
View file @
4cd00f17
<
template
>
<div
style=
"padding:10px 0 0 20px"
>
<el-form
ref=
"form"
:rules=
"rules"
:model=
"form"
label-width=
"80px"
>
<h3>
个人信息录入
</h3>
<h3>
个人信息录入
</h3>
<el-form-item
label=
"单位"
prop=
"beyondUnit"
>
<el-input
style=
"width: 70%;
"
style=
"width: 70%
"
placeholder=
"请输入单位"
v-model=
"form.beyondUnit"
maxlength=
"30"
clearable
>
clearable
>
</el-input>
</el-form-item>
<el-form-item
label=
"姓名"
>
<el-input
style=
"width: 70%;
"
style=
"width: 70%
"
placeholder=
"请输入姓名"
v-model=
"form.name"
maxlength=
"11"
clearable
>
clearable
>
</el-input>
</el-form-item>
...
...
@@ -31,27 +33,26 @@
<el-form-item
label=
"手机号"
>
<el-input
style=
"width: 70%;
"
style=
"width: 70%
"
placeholder=
"手机号"
v-model=
"form.phoneNum"
type=
"number"
maxlength=
"11"
clearable
>
clearable
>
</el-input>
</el-form-item>
<el-form-item>
<el-button
@
click=
"onSubmit"
type=
"primary"
>
下一步
</el-button>
<el-button
@
click=
"onSubmit"
type=
"primary"
>
下一步
</el-button>
<el-button>
取消
</el-button>
</el-form-item>
</el-form>
</div>
</
template
>
<
script
>
export
default
{
export
default
{
name
:
"EnterInformation"
,
data
()
{
return
{
...
...
@@ -60,9 +61,9 @@
name
:
null
,
sex
:
null
,
phoneNum
:
null
,
testBeginTime
:
null
,
testBeginTime
:
null
,
},
}
};
},
methods
:
{
/**
...
...
@@ -99,43 +100,41 @@
dateArr
[
4
];
//此处可以拿外部的变量接收 strDate:2022-05-01 13:25:30
//this.date = strDate;
this
.
form
.
testBeginTime
=
strDate
;
this
.
form
.
testBeginTime
=
strDate
;
},
onSubmit
()
{
this
.
currentTime
();
// let params = this.form;
let
params
=
JSON
.
stringify
(
this
.
form
);
console
.
log
(
this
.
form
.
beyondUnit
)
if
(
!
this
.
form
.
beyondUnit
)
{
console
.
log
(
params
.
beyondUnit
)
this
.
$message
(
'请输入单位'
);
}
else
if
(
!
this
.
form
.
name
)
{
this
.
$message
(
'请输入姓名'
);
}
else
if
(
!
this
.
form
.
sex
)
{
this
.
$message
(
'请选择性别'
);
}
else
if
(
!
this
.
form
.
phoneNum
)
{
this
.
$message
(
'请输入手机号'
);
}
else
if
(
this
.
form
.
phoneNum
.
length
>
11
)
{
this
.
$message
(
'长度超出11位'
);
console
.
log
(
this
.
form
.
beyondUnit
);
if
(
!
this
.
form
.
beyondUnit
)
{
console
.
log
(
params
.
beyondUnit
);
this
.
$message
(
"请输入单位"
);
}
else
if
(
!
this
.
form
.
name
)
{
this
.
$message
(
"请输入姓名"
);
}
else
if
(
!
this
.
form
.
sex
)
{
this
.
$message
(
"请选择性别"
);
}
else
if
(
!
this
.
form
.
phoneNum
)
{
this
.
$message
(
"请输入手机号"
);
}
else
if
(
this
.
form
.
phoneNum
.
length
>
11
)
{
this
.
$message
(
"长度超出11位"
);
}
else
{
const
routeData
=
this
.
$router
.
resolve
({
path
:
'/trainingMaterials'
,
//跳转目标窗口的地址
path
:
"/trainingMaterials"
,
//跳转目标窗口的地址
query
:
{
params
//括号内是要传递给新窗口的参数
}
})
params
,
//括号内是要传递给新窗口的参数
},
});
window
.
open
(
routeData
.
href
,
"_search"
);
}
},
next
()
{
if
(
this
.
active
++
>
2
)
this
.
active
=
0
;
}
}
}
},
},
};
</
script
>
<
style
>
</
style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment