Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
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
罗超
confucius
Commits
bb9cbb09
Commit
bb9cbb09
authored
Apr 01, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
5d30b0ff
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
188 additions
and
90 deletions
+188
-90
UeEditor.vue
src/components/editor/UeEditor.vue
+2
-3
question-form.vue
src/components/question/question-form.vue
+2
-2
orderlist.vue
src/components/sale/orderlist.vue
+4
-1
studentList.vue
src/pages/sale/studentList.vue
+180
-84
No files found.
src/components/editor/UeEditor.vue
View file @
bb9cbb09
...
@@ -102,7 +102,6 @@
...
@@ -102,7 +102,6 @@
},
},
//选择文件弹窗
//选择文件弹窗
attachmentSelected
(
fileArray
)
{
attachmentSelected
(
fileArray
)
{
if
(
fileArray
&&
fileArray
.
length
)
{
if
(
fileArray
&&
fileArray
.
length
)
{
let
html
=
''
;
let
html
=
''
;
//图片
//图片
...
@@ -144,8 +143,8 @@
...
@@ -144,8 +143,8 @@
}
}
if
(
this
.
uploadType
==
3
)
if
(
this
.
uploadType
==
3
)
{
{
for
(
let
i
in
e
)
{
for
(
let
i
in
fileArray
)
{
var
type
=
e
[
i
].
fileName
.
split
(
'.'
)[
1
];
var
type
=
fileArray
[
i
].
fileName
.
split
(
'.'
)[
1
];
var
imgUrl
=
""
;
var
imgUrl
=
""
;
var
dataName
=
""
;
var
dataName
=
""
;
if
(
type
==
'xlsx'
||
type
==
'xls'
)
{
if
(
type
==
'xlsx'
||
type
==
'xls'
)
{
...
...
src/components/question/question-form.vue
View file @
bb9cbb09
...
@@ -284,8 +284,8 @@
...
@@ -284,8 +284,8 @@
default
:
null
default
:
null
},
},
CourseId
:
{
CourseId
:
{
type
:
String
,
//课程编号
type
:
Number
,
//课程编号
default
:
"0"
,
default
:
0
,
},
},
BankId
:
{
BankId
:
{
type
:
String
,
//题库编号
type
:
String
,
//题库编号
...
...
src/components/sale/orderlist.vue
View file @
bb9cbb09
...
@@ -811,10 +811,13 @@
...
@@ -811,10 +811,13 @@
},
},
//跳转到学生名单
//跳转到学生名单
gostudent
(
item
)
{
gostudent
(
item
)
{
var
tempStr
=
'/sale/studentList
?OrderId='
+
item
.
OrderId
+
'&ClassId='
+
item
.
ClassId
;
var
tempStr
=
'/sale/studentList
'
;
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
tempStr
,
path
:
tempStr
,
query
:
{
query
:
{
OrderId
:
item
.
OrderId
,
ClassId
:
item
.
ClassId
,
SourceId
:
item
.
SourceId
,
isShow
:
this
.
AuthorityObj
.
isShowGuestBtn
isShow
:
this
.
AuthorityObj
.
isShowGuestBtn
}
}
});
});
...
...
src/pages/sale/studentList.vue
View file @
bb9cbb09
This diff is collapsed.
Click to expand it.
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