Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
thinkApp
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
游洁
thinkApp
Commits
f1c18d8e
Commit
f1c18d8e
authored
Jun 01, 2022
by
youjie
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/youjie/thinkapp
parents
61d5a5ab
5ae6e3c4
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
333 additions
and
290 deletions
+333
-290
studentsPopu.vue
src/components/setComments/studentsPopu.vue
+161
-151
manifest.json
src/manifest.json
+40
-38
scoreDetails.vue
src/pages/index/scoreDetails.vue
+14
-14
workSituation.vue
src/pages/index/workSituation.vue
+6
-6
accountLogin.vue
src/pages/login/accountLogin.vue
+2
-2
addComment.vue
src/pages/setComments/addComment.vue
+108
-77
commentDetails.vue
src/pages/setComments/commentDetails.vue
+1
-1
request.js
src/utils/request.js
+1
-1
No files found.
src/components/setComments/studentsPopu.vue
View file @
f1c18d8e
<
template
>
<
template
>
<van-popup
:show=
"show"
:round=
"true"
position=
"bottom"
<van-popup
:show=
"show"
:round=
"true"
position=
"bottom"
custom-style=
"height: 80%"
@
close=
"closepopup"
>
custom-style=
"height: 80%"
@
close=
"closepopup"
>
<view
class=
"studentsPopu-box flex"
>
<view
class=
"studentsPopu-box flex"
>
<view
class=
"studentsPopu-title"
>
<view
class=
"studentsPopu-title"
>
选择学员
<text>
(2/50)
</text></view>
选择学员
<text>
(
{{
chooseStuArray
?
chooseStuArray
.
length
:
0
}}
/
{{
stuList
?
stuList
.
length
:
0
}}
)
</text>
<view
class=
"studentsPopu-search flex"
>
</view>
<van-search
<view
class=
"studentsPopu-search flex"
>
:value=
"Keywords"
<van-search
:value=
"Keywords"
shape=
"round"
style=
"border-radius: 20rpx;width: 100%;"
input-align=
"center"
shape=
"round"
background=
"#F6F6F6"
@
change=
"searchKeywords"
placeholder=
"请输入搜索关键词"
/>
style=
"border-radius: 20rpx;width: 100%;"
</view>
input-align=
"center"
<view
class=
"studentsPopuImg"
>
background=
"#F6F6F6"
<view
class=
"studentsPopu-img-box flex"
>
@
change=
"searchKeywords"
<template
v-for=
"(item,index) in stuList"
>
placeholder=
"请输入搜索关键词"
<view
class=
"studentsPopu-img-list active flex"
@
click=
"clickChoose(item)"
>
/>
<view
class=
"studentsPopu-imgbox flex"
>
</view>
<view
class=
"studentsPopu-img flex"
>
<view
class=
"studentsPopuImg"
>
<view>
<view
class=
"studentsPopu-img-box flex"
>
<van-image
width=
"119rpx"
height=
"119rpx"
fit=
"cover"
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Test/Upload/Goods/1653894197000_691.png"
/>
<view
class=
"studentsPopu-img-list active flex"
@
click=
"clickChoose"
>
</view>
<view
class=
"studentsPopu-imgbox flex"
>
</view>
<view
class=
"studentsPopu-img flex"
>
</view>
<view>
<text
class=
"studentsPopu-text"
>
{{
item
.
StuName
}}
</text>
<van-image
width=
"119rpx"
height=
"119rpx"
fit=
"cover"
</view>
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Test/Upload/Goods/1653894197000_691.png"
/>
</
template
>
</view>
</view>
</view>
</view>
</view>
<view
class=
"footer"
>
<text
class=
"studentsPopu-text"
>
学员名称
</text>
<view
class=
"studentsPopu-save flex"
>
</view>
<view
@
click=
"save"
>
确认
</view>
<view
class=
"studentsPopu-img-list flex"
@
click=
"clickChoose"
>
</view>
<view
class=
"studentsPopu-imgbox flex"
>
</view>
<view
class=
"studentsPopu-img flex"
>
<view>
</view>
<van-image
width=
"119rpx"
height=
"119rpx"
fit=
"cover"
</van-popup>
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Test/Upload/Goods/1653894197000_691.png"
/>
</view>
</view>
</view>
<text
class=
"studentsPopu-text"
>
学员名称
</text>
</view>
</view>
</view>
<view
class=
"footer"
>
<view
class=
"studentsPopu-save flex"
>
<view
@
click=
"save"
>
确认
</view>
</view>
</view>
</view>
</van-popup>
</template>
</template>
<
script
>
<
script
>
import
{
import
{
ref
,
ref
,
reactive
,
reactive
,
toRefs
,
toRefs
,
onMounted
,
onMounted
,
getCurrentInstance
,
getCurrentInstance
,
inject
,
inject
,
watch
watch
}
from
"vue"
;
}
from
"vue"
;
import
{
uploadFile
}
from
"@/utils/index"
;
import
{
uploadFile
}
from
"@/utils/index"
;
export
default
{
export
default
{
props
:
{
props
:
[
"courseStuList"
],
emits
:
[
'getdata'
],
},
components
:
{},
components
:
{},
setup
(
props
,
ctx
)
{
setup
(
props
,
ctx
)
{
let
{
let
{
proxy
proxy
}
=
getCurrentInstance
();
}
=
getCurrentInstance
();
let
data
=
reactive
({
let
data
=
reactive
({
show
:
false
,
show
:
false
,
loading
:
false
,
loading
:
false
,
Keywords
:
''
Keywords
:
''
,
stuList
:
[],
chooseStuArray
:
[]
});
let
methods
=
{
// 选中
clickChoose
(
item
)
{
data
.
chooseStuArray
.
push
(
item
);
},
// 搜索
searchKeywords
()
{
},
showFun
()
{
data
.
show
=
true
},
closepopup
()
{
data
.
show
=
false
},
save
()
{
ctx
.
emit
(
"getdata"
,
data
.
chooseStuArray
);
data
.
show
=
false
}
};
//监听属性数组
watch
(()
=>
props
[
"courseStuList"
],
(
newValue
,
oldValue
)
=>
{
if
(
newValue
!=
oldValue
&&
newValue
&&
newValue
.
length
>
0
)
{
data
.
stuList
=
newValue
;
}
},
{
deep
:
true
,
});
});
let
methods
=
{
// 选中
clickChoose
(){
},
// 搜索
searchKeywords
(){
},
showFun
(){
data
.
show
=
true
},
closepopup
(){
data
.
show
=
false
},
save
(){
data
.
show
=
false
}
};
let
that
=
methods
;
let
that
=
methods
;
return
{
return
{
...
toRefs
(
data
),
...
toRefs
(
data
),
...
methods
...
methods
};
};
},
},
onLoad
()
{
onLoad
()
{
},
},
onShow
()
{
onShow
()
{
}
}
};
};
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
.studentsPopu-text
{
.studentsPopu-text
{
text-align
:
center
;
text-align
:
center
;
font-weight
:
500
;
font-weight
:
500
;
font-size
:
26
rpx
;
font-size
:
26
rpx
;
...
@@ -116,88 +112,102 @@
...
@@ -116,88 +112,102 @@
letter-spacing
:
1
rpx
;
letter-spacing
:
1
rpx
;
margin-top
:
15
rpx
;
margin-top
:
15
rpx
;
}
}
.studentsPopu-img
view
{
.studentsPopu-img
view
{
width
:
119
rpx
;
width
:
119
rpx
;
height
:
119
rpx
;
height
:
119
rpx
;
/* border: 1rpx solid #E5E5E5; */
/* border: 1rpx solid #E5E5E5; */
background
:
#E5E5E5
;
background
:
#E5E5E5
;
border-radius
:
50%
;
border-radius
:
50%
;
overflow
:
hidden
;
overflow
:
hidden
;
}
}
.studentsPopu-img-list.active
.studentsPopu-img
{
background
:
#C91928
;
.studentsPopu-img-list.active
.studentsPopu-img
{
box-shadow
:
0
rpx
0
rpx
59
rpx
0
rpx
rgba
(
201
,
23
,
39
,
0.34
);
background
:
#C91928
;
}
box-shadow
:
0
rpx
0
rpx
59
rpx
0
rpx
rgba
(
201
,
23
,
39
,
0.34
);
.studentsPopu-img
{
}
.studentsPopu-img
{
width
:
130
rpx
;
width
:
130
rpx
;
height
:
130
rpx
;
height
:
130
rpx
;
background
:
#FFFFFF
;
background
:
#FFFFFF
;
box-shadow
:
0
rpx
6
rpx
29
rpx
0
rpx
rgba
(
76
,
76
,
76
,
0.09
);
box-shadow
:
0
rpx
6
rpx
29
rpx
0
rpx
rgba
(
76
,
76
,
76
,
0.09
);
border-radius
:
50%
;
border-radius
:
50%
;
justify-content
:
center
;
justify-content
:
center
;
align-items
:
center
;
align-items
:
center
;
}
}
.studentsPopu-imgbox
{
.studentsPopu-imgbox
{
justify-content
:
center
;
justify-content
:
center
;
}
}
.studentsPopu-img-list
{
.studentsPopu-img-list
{
flex
:
0
0
25%
;
flex
:
0
0
25%
;
flex-direction
:
column
;
flex-direction
:
column
;
}
}
.studentsPopu-img-box
{
height
:
90%
;
.studentsPopu-img-box
{
height
:
90%
;
padding
:
40
rpx
25
rpx
;
padding
:
40
rpx
25
rpx
;
flex-wrap
:
wrap
;
flex-wrap
:
wrap
;
margin-bottom
:
100
rpx
;
margin-bottom
:
100
rpx
;
overflow-y
:
auto
;
overflow-y
:
auto
;
}
.studentsPopuImg
{
max-height
:
670
rpx
;
overflow
:
hidden
;
}
.studentsPopu-search
{
padding
:
30
rpx
27
rpx
5
rpx
27
rpx
;
}
.studentsPopu-title
text
{
font-size
:
26
rpx
;
color
:
#949494
;
font-weight
:
400
;
margin-left
:
20
rpx
;
}
.studentsPopu-title
{
font-size
:
36
rpx
;
font-weight
:
800
;
color
:
#282828
;
letter-spacing
:
1
rpx
;
padding
:
48
rpx
55
rpx
0
55
rpx
;
}
.studentsPopu-save
view
{
background
:
#C91727
;
font-size
:
30
rpx
;
font-weight
:
bold
;
letter-spacing
:
1
rpx
;
width
:
260
rpx
;
line-height
:
88
rpx
;
border-radius
:
44
rpx
;
text-align
:
center
;
color
:
#FFFFFF
;
}
.studentsPopu-save
{
justify-content
:
center
;
margin-top
:
40
rpx
;
margin-bottom
:
40
rpx
;
}
.studentsPopu-box
{
background
:
#f6f6f6
;
/* padding: 48rpx 0 60rpx 0; */
flex-direction
:
column
;
height
:
100%
;
overflow
:
hidden
;
}
.footer
{
position
:
fixed
;
left
:
0
;
right
:
0
;
bottom
:
0
;
}
}
.studentsPopuImg
{
max-height
:
670
rpx
;
overflow
:
hidden
;
}
.studentsPopu-search
{
padding
:
30
rpx
27
rpx
5
rpx
27
rpx
;
}
.studentsPopu-title
text
{
font-size
:
26
rpx
;
color
:
#949494
;
font-weight
:
400
;
margin-left
:
20
rpx
;
}
.studentsPopu-title
{
font-size
:
36
rpx
;
font-weight
:
800
;
color
:
#282828
;
letter-spacing
:
1
rpx
;
padding
:
48
rpx
55
rpx
0
55
rpx
;
}
.studentsPopu-save
view
{
background
:
#C91727
;
font-size
:
30
rpx
;
font-weight
:
bold
;
letter-spacing
:
1
rpx
;
width
:
260
rpx
;
line-height
:
88
rpx
;
border-radius
:
44
rpx
;
text-align
:
center
;
color
:
#FFFFFF
;
}
.studentsPopu-save
{
justify-content
:
center
;
margin-top
:
40
rpx
;
margin-bottom
:
40
rpx
;
}
.studentsPopu-box
{
background
:
#f6f6f6
;
/* padding: 48rpx 0 60rpx 0; */
flex-direction
:
column
;
height
:
100%
;
overflow
:
hidden
;
}
.footer
{
position
:
fixed
;
left
:
0
;
right
:
0
;
bottom
:
0
;
}
</
style
>
</
style
>
src/manifest.json
View file @
f1c18d8e
{
{
"name"
:
"甲鹤学生端
"
,
"name"
:
"jjsw
"
,
"appid"
:
""
,
"appid"
:
""
,
"description"
:
"甲鹤小程序学生端"
,
"description"
:
"甲鹤小程序学生端"
,
"versionName"
:
"1.0.0"
,
"versionName"
:
"1.0.0"
,
"versionCode"
:
"100"
,
"versionCode"
:
"100"
,
"transformPx"
:
false
,
"transformPx"
:
false
,
"app-plus"
:
{
"app-plus"
:
{
/*
5
+App特有相关
*/
/*
5
+App特有相关
*/
"usingComponents"
:
true
,
"usingComponents"
:
true
,
"splashscreen"
:
{
"splashscreen"
:
{
"alwaysShowBeforeRender"
:
true
,
"alwaysShowBeforeRender"
:
true
,
"waiting"
:
true
,
"waiting"
:
true
,
"autoclose"
:
true
,
"autoclose"
:
true
,
"delay"
:
0
"delay"
:
0
},
},
"modules"
:
{},
"modules"
:
{},
/*
模块配置
*/
/*
模块配置
*/
"distribute"
:
{
"distribute"
:
{
/*
应用发布信息
*/
/*
应用发布信息
*/
"android"
:
{
"android"
:
{
/*
android打包配置
*/
/*
android打包配置
*/
"permissions"
:
[
"permissions"
:
[
"<uses-permission android:name=
\"
android.permission.CHANGE_NETWORK_STATE
\"
/>"
,
"<uses-permission android:name=
\"
android.permission.CHANGE_NETWORK_STATE
\"
/>"
,
"<uses-permission android:name=
\"
android.permission.MOUNT_UNMOUNT_FILESYSTEMS
\"
/>"
,
"<uses-permission android:name=
\"
android.permission.MOUNT_UNMOUNT_FILESYSTEMS
\"
/>"
,
"<uses-permission android:name=
\"
android.permission.READ_CONTACTS
\"
/>"
,
"<uses-permission android:name=
\"
android.permission.READ_CONTACTS
\"
/>"
,
...
@@ -45,36 +45,38 @@
...
@@ -45,36 +45,38 @@
"<uses-permission android:name=
\"
android.permission.WRITE_SETTINGS
\"
/>"
"<uses-permission android:name=
\"
android.permission.WRITE_SETTINGS
\"
/>"
]
]
},
},
"ios"
:
{},
"ios"
:
{},
/*
ios打包配置
*/
/*
ios打包配置
*/
"sdkConfigs"
:
{},
"sdkConfigs"
:
{},
"splashscreen"
:
{
"splashscreen"
:
{
"androidStyle"
:
"common"
,
"androidStyle"
:
"common"
,
"iosStyle"
:
"common"
"iosStyle"
:
"common"
}
}
}
}
},
},
/*
SDK配置
*/
/*
SDK配置
*/
"quickapp"
:
{},
"quickapp"
:
{},
/*
快应用特有相关
*/
/*
快应用特有相关
*/
"mp-weixin"
:
{
"mp-weixin"
:
{
/*
微信小程序特有相关
*/
"appid"
:
"wx10655d8e5b0a67c5"
,
"appid"
:
"wx0f4b451960f8ef29"
,
"setting"
:
{
"setting"
:
{
"urlCheck"
:
false
,
"urlCheck"
:
false
"es6"
:
false
,
"postcss"
:
true
,
"minified"
:
true
},
},
"usingComponents"
:
true
"usingComponents"
:
true
},
},
"mp-alipay"
:
{
"mp-alipay"
:
{
"usingComponents"
:
true
"usingComponents"
:
true
},
},
"mp-baidu"
:
{
"mp-baidu"
:
{
"usingComponents"
:
true
"usingComponents"
:
true
},
},
"mp-toutiao"
:
{
"mp-toutiao"
:
{
"usingComponents"
:
true
"usingComponents"
:
true
},
},
"mp-qq"
:
{
"mp-qq"
:
{
"usingComponents"
:
true
"usingComponents"
:
true
}
}
}
}
\ No newline at end of file
src/pages/index/scoreDetails.vue
View file @
f1c18d8e
...
@@ -170,20 +170,20 @@
...
@@ -170,20 +170,20 @@
this
.
userData
=
uni
.
getStorageSync
(
'userInfo'
);
this
.
userData
=
uni
.
getStorageSync
(
'userInfo'
);
this
.
getExamStuScore
();
this
.
getExamStuScore
();
},
},
onShareAppMessage
()
{
//
onShareAppMessage() {
return
{
//
return {
title
:
"甲小鹤"
,
//
title: "甲小鹤",
query
:
"/pages/index/index"
,
//
query: "/pages/index/index",
imageUrl
:
""
,
//
imageUrl: "",
};
//
};
},
//
},
onShareTimeline
()
{
//
onShareTimeline() {
return
{
//
return {
title
:
"甲小鹤"
,
//
title: "甲小鹤",
query
:
"/pages/index/index"
,
//
query: "/pages/index/index",
imageUrl
:
""
,
//
imageUrl: "",
};
//
};
},
//
},
};
};
</
script
>
</
script
>
...
...
src/pages/index/workSituation.vue
View file @
f1c18d8e
...
@@ -118,7 +118,7 @@
...
@@ -118,7 +118,7 @@
homeWorks
:[],
homeWorks
:[],
exams
:[],
exams
:[],
pageState
:
"more"
,
pageState
:
"more"
,
currentCourseId
:
45329247
,
currentCourseId
:
0
,
userData
:{},
userData
:{},
loading
:
false
loading
:
false
});
});
...
@@ -142,9 +142,9 @@
...
@@ -142,9 +142,9 @@
})
})
},
},
changeCourseHandler
(
id
){
changeCourseHandler
(
id
){
data
.
Msg
.
courseId
=
45329247
data
.
Msg
.
courseId
=
id
data
.
OperationMsg
.
courseId
=
45329247
data
.
OperationMsg
.
courseId
=
id
data
.
currentCourseId
=
45329247
data
.
currentCourseId
=
id
methods
.
getCourseStuList
()
methods
.
getCourseStuList
()
methods
.
getExamPageList
()
methods
.
getExamPageList
()
methods
.
getCourseHomeWorkList
()
methods
.
getCourseHomeWorkList
()
...
@@ -252,14 +252,14 @@
...
@@ -252,14 +252,14 @@
},
},
onShareAppMessage
()
{
onShareAppMessage
()
{
return
{
return
{
title
:
"
甲小鹤
"
,
title
:
"
进阶思维学情反馈
"
,
query
:
"/pages/index/index"
,
query
:
"/pages/index/index"
,
imageUrl
:
""
,
imageUrl
:
""
,
};
};
},
},
onShareTimeline
()
{
onShareTimeline
()
{
return
{
return
{
title
:
"
甲小鹤
"
,
title
:
"
进阶思维学情反馈
"
,
query
:
"/pages/index/index"
,
query
:
"/pages/index/index"
,
imageUrl
:
""
,
imageUrl
:
""
,
};
};
...
...
src/pages/login/accountLogin.vue
View file @
f1c18d8e
...
@@ -79,8 +79,8 @@
...
@@ -79,8 +79,8 @@
}
=
getCurrentInstance
();
}
=
getCurrentInstance
();
let
Toast
=
inject
(
"$toast"
);
let
Toast
=
inject
(
"$toast"
);
let
msg
=
reactive
({
let
msg
=
reactive
({
Account
:
"
13982128958
"
,
Account
:
""
,
Password
:
"
128958
"
,
Password
:
""
,
});
});
let
data
=
reactive
({
let
data
=
reactive
({
phoneNum
:
""
,
phoneNum
:
""
,
...
...
src/pages/setComments/addComment.vue
View file @
f1c18d8e
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
<view
class=
"addComment-title flex"
>
<view
class=
"addComment-title flex"
>
<van-icon
name=
"friends-o"
/>
<van-icon
name=
"friends-o"
/>
<text>
<text>
选择学员 (
0
)
选择学员 (
{{
postMsg
.
ChooseStuList
?
postMsg
.
ChooseStuList
.
length
:
0
}}
)
</text>
</text>
</view>
</view>
<view
class=
"addComment-img-box flex"
>
<view
class=
"addComment-img-box flex"
>
...
@@ -24,30 +24,32 @@
...
@@ -24,30 +24,32 @@
</view>
</view>
<text
class=
"addComment-text"
>
添加学员
</text>
<text
class=
"addComment-text"
>
添加学员
</text>
</view>
</view>
<view
class=
"addComment-img-list flex"
>
<template
v-for=
"(item,index) in postMsg.ChooseStuList"
>
<view
class=
"addComment-imgbox flex"
>
<view
class=
"addComment-img-list flex"
>
<view
class=
"addComment-img"
>
<view
class=
"addComment-imgbox flex"
>
<view>
<view
class=
"addComment-img"
>
<van-image
width=
"119rpx"
height=
"119rpx"
fit=
"cover"
<view>
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Test/Upload/Goods/1653894197000_691.png"
/>
<van-image
width=
"119rpx"
height=
"119rpx"
fit=
"cover"
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Test/Upload/Goods/1653894197000_691.png"
/>
</view>
</view>
</view>
</view>
</view>
<text
class=
"addComment-text"
>
{{
item
.
StuName
}}
</text>
</view>
</view>
<text
class=
"addComment-text"
>
学员名称
</text
>
</
template
>
</view>
</view>
</view>
<view
class=
"addComment-textarea-box"
>
<view
class=
"addComment-textarea-box"
>
<view
class=
"content-textarea-box"
>
<view
class=
"content-textarea-box"
>
<textarea
placeholder=
"请填写评论内容"
></textarea>
<textarea
placeholder=
"请填写评论内容"
v-model=
"postMsg.Info"
></textarea>
</view>
</view>
<view
class=
"Sure-button flex"
>
<view
class=
"Sure-button flex"
>
<view
v-if=
"clickShow"
@
click=
"clickSure"
>
确定
</view>
<view
v-if=
"clickShow"
@
click=
"clickSure"
>
确定
</view>
<view
v-else
class=
"active"
>
确定
</view>
<view
v-else
class=
"active"
>
确定
</view>
</view>
</view>
</view>
</view>
<
template
v-show=
"show"
>
<
template
v-show=
"show"
>
<studentsPopu
ref=
"getstudentsPopup"
></studentsPopu>
<studentsPopu
ref=
"getstudentsPopup"
:courseStuList=
"StuList"
@
getdata=
"getChooseStu"
></studentsPopu>
</
template
>
</
template
>
</view>
</view>
<view
class=
"addComment-bj"
></view>
<view
class=
"addComment-bj"
></view>
...
@@ -107,58 +109,67 @@
...
@@ -107,58 +109,67 @@
checked
:
'1'
,
checked
:
'1'
,
Msg
:
{
Msg
:
{
CourseId
:
''
,
CourseId
:
''
,
CommentTimes
:
0
,
//评论次数
},
},
courseTimeList
:
[],
//课程自动生成评论次数
postMsg
:
{
courseRule
:
{},
//课程评价规则
CourseId
:
''
,
clickShow
:
true
,
ChooseStuList
:
[],
show
:
false
Times
:
0
,
Info
:
""
,
//评论内容
},
StuList
:
[],
//课程学员列表
clickShow
:
true
,
show
:
false
});
});
let
methods
=
{
let
methods
=
{
back
()
{
back
()
{
uni
.
navigateBack
({
uni
.
navigateBack
({
delta
:
1
delta
:
1
})
})
},
},
// 点击弹出学员列表
// 点击弹出学员列表
selectStudents
(){
selectStudents
()
{
data
.
show
=
true
data
.
show
=
true
setTimeout
(()
=>
{
setTimeout
(()
=>
{
refs
.
getstudentsPopup
.
$vm
.
showFun
()
refs
.
getstudentsPopup
.
$vm
.
showFun
()
},
500
)
},
500
)
},
},
// 点击确定
// 点击确定
clickSure
(){
clickSure
()
{
data
.
clickShow
=
false
data
.
clickShow
=
false
;
console
.
log
(
data
.
clickShow
)
data
.
postMsg
.
Times
=
data
.
Msg
.
CommentTimes
;
},
data
.
postMsg
.
CourseId
=
data
.
Msg
.
CourseId
;
radioChange
(
e
)
{
proxy
.
$request
(
"/Teacher/BatchSetStuComment"
,
data
.
postMsg
).
then
(
res
=>
{
console
.
log
(
"打印国家名称"
,
e
.
target
.
value
)
if
(
res
.
Code
==
1
)
{
},
uni
.
showToast
({
//获取课程评论次数列表
title
:
'操作成功!'
,
getCourseCommentTimes
()
{
icon
:
'none'
,
proxy
.
$request
(
"/Teacher/GetCourseCommentTimes"
,
data
.
Msg
).
then
(
res
=>
{
duration
:
500
if
(
res
)
{
})
data
.
courseTimeList
=
res
.
Data
;
}
}
})
})
},
},
//获取课程评价规则信息
getCourseRule
()
{
//课程学员列表
proxy
.
$request
(
"/Teacher/GetCourseComment"
,
data
.
Msg
).
then
(
res
=>
{
getChooseStu
(
array
)
{
if
(
array
)
{
data
.
postMsg
.
ChooseStuList
=
array
}
},
//根据课程编号获取课程学员
getCourseStu
()
{
let
stuMsg
=
{
courseId
:
data
.
Msg
.
CourseId
};
proxy
.
$request
(
"/Teacher/GetCourseStu"
,
stuMsg
).
then
(
res
=>
{
console
.
log
(
"res"
,
res
);
if
(
res
)
{
if
(
res
)
{
data
.
courseRule
=
res
.
Data
;
data
.
StuList
=
res
.
Data
;
}
}
})
})
},
},
goRules
()
{
uni
.
navigateTo
({
url
:
'/pages/setComments/commentRulesList?CourseId='
+
data
.
Msg
.
CourseId
})
}
};
};
return
{
return
{
...
toRefs
(
data
),
...
toRefs
(
data
),
...
methods
...
methods
...
@@ -166,18 +177,19 @@
...
@@ -166,18 +177,19 @@
},
},
onLoad
(
option
)
{
onLoad
(
option
)
{
this
.
Msg
.
CourseId
=
option
.
CourseId
;
this
.
Msg
.
CourseId
=
option
.
CourseId
;
this
.
getCourseRule
()
;
this
.
Msg
.
CommentTimes
=
option
.
CommentTimes
;
this
.
getCourse
CommentTimes
();
this
.
getCourse
Stu
();
},
},
};
};
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
.Sure-button
view
.active
{
.Sure-button
view
.active
{
background-color
:
#F6F6F6
;
background-color
:
#F6F6F6
;
color
:
#C91727
;
color
:
#C91727
;
}
}
.Sure-button
view
{
.Sure-button
view
{
width
:
359
rpx
;
width
:
359
rpx
;
line-height
:
88
rpx
;
line-height
:
88
rpx
;
background-color
:
#C91727
;
background-color
:
#C91727
;
...
@@ -188,27 +200,32 @@
...
@@ -188,27 +200,32 @@
text-align
:
center
;
text-align
:
center
;
letter-spacing
:
1
rpx
;
letter-spacing
:
1
rpx
;
}
}
.Sure-button
{
.Sure-button
{
justify-content
:
center
;
justify-content
:
center
;
margin-top
:
67
rpx
;
margin-top
:
67
rpx
;
}
}
.content-textarea-box
textarea
{
.content-textarea-box
textarea
{
width
:
100%
;
width
:
100%
;
}
}
.content-textarea-box
{
.content-textarea-box
{
background
:
#F6F6F6
;
background
:
#F6F6F6
;
border-radius
:
30
rpx
;
border-radius
:
30
rpx
;
padding
:
33
rpx
37
rpx
;
padding
:
33
rpx
37
rpx
;
min-height
:
537
rpx
;
min-height
:
537
rpx
;
}
}
.addComment-textarea-box
{
.addComment-textarea-box
{
border-radius
:
50
rpx
50
rpx
0
0
;
border-radius
:
50
rpx
50
rpx
0
0
;
/* background: #FFFFFF; */
/* background: #FFFFFF; */
background
:
url('https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Test/Upload/Goods/1654049334000_485.png')
no-repeat
top
0
center
#FFFFFF
;
background
:
url('https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Test/Upload/Goods/1654049334000_485.png')
no-repeat
top
0
center
#FFFFFF
;
background-size
:
141
rpx
41
rpx
;
background-size
:
141
rpx
41
rpx
;
padding
:
50
rpx
50
rpx
37
rpx
50
rpx
;
padding
:
50
rpx
50
rpx
37
rpx
50
rpx
;
}
}
.addComment-text
{
.addComment-text
{
text-align
:
center
;
text-align
:
center
;
font-weight
:
500
;
font-weight
:
500
;
font-size
:
26
rpx
;
font-size
:
26
rpx
;
...
@@ -216,14 +233,16 @@
...
@@ -216,14 +233,16 @@
letter-spacing
:
1
rpx
;
letter-spacing
:
1
rpx
;
margin-top
:
15
rpx
;
margin-top
:
15
rpx
;
}
}
.addComment-img-list.activeOne
.addComment-img
view
{
.addComment-img-list.activeOne
.addComment-img
view
{
text-align
:
center
;
text-align
:
center
;
line-height
:
123
rpx
;
line-height
:
123
rpx
;
color
:
#DCDCDC
;
color
:
#DCDCDC
;
font-weight
:
bold
;
font-weight
:
bold
;
font-size
:
50
rpx
;
font-size
:
50
rpx
;
}
}
.addComment-img
view
{
.addComment-img
view
{
width
:
119
rpx
;
width
:
119
rpx
;
height
:
119
rpx
;
height
:
119
rpx
;
border
:
1
rpx
solid
#DBDBDB
;
border
:
1
rpx
solid
#DBDBDB
;
...
@@ -231,58 +250,69 @@
...
@@ -231,58 +250,69 @@
margin
:
5
rpx
;
margin
:
5
rpx
;
overflow
:
hidden
;
overflow
:
hidden
;
}
}
.addComment-img
{
.addComment-img
{
width
:
130
rpx
;
width
:
130
rpx
;
height
:
130
rpx
;
height
:
130
rpx
;
background
:
#FFFFFF
;
background
:
#FFFFFF
;
border-radius
:
50%
;
border-radius
:
50%
;
}
}
.addComment-imgbox
{
.addComment-imgbox
{
justify-content
:
center
;
justify-content
:
center
;
}
}
.addComment-img-list
{
.addComment-img-list
{
flex
:
0
0
25%
;
flex
:
0
0
25%
;
flex-direction
:
column
;
flex-direction
:
column
;
}
}
.addComment-img-box
{
.addComment-img-box
{
padding
:
0
20
rpx
;
padding
:
0
20
rpx
;
flex-wrap
:
wrap
;
flex-wrap
:
wrap
;
margin-bottom
:
50
rpx
;
margin-bottom
:
50
rpx
;
}
}
.addComment-title
van-icon
{
.addComment-title
van-icon
{
font-size
:
38
rpx
;
font-size
:
38
rpx
;
margin-right
:
20
rpx
;
margin-right
:
20
rpx
;
}
}
.addComment-title
{
.addComment-title
{
font-size
:
30
rpx
;
font-size
:
30
rpx
;
font-weight
:
bold
;
font-weight
:
bold
;
color
:
#282828
;
color
:
#282828
;
letter-spacing
:
1
rpx
;
letter-spacing
:
1
rpx
;
padding
:
54
rpx
50
rpx
42
rpx
50
rpx
;
padding
:
54
rpx
50
rpx
42
rpx
50
rpx
;
}
}
.addComment-header-box
{
padding
:
20
rpx
42
rpx
;
.addComment-header-box
{
padding
:
20
rpx
42
rpx
;
flex-direction
:
row
;
flex-direction
:
row
;
align-items
:
center
;
align-items
:
center
;
}
}
.addComment-header-title
{
font-size
:
32
rpx
;
.addComment-header-title
{
font-weight
:
500
;
font-size
:
32
rpx
;
color
:
#282828
;
font-weight
:
500
;
flex
:
1
;
color
:
#282828
;
text-align
:
center
;
flex
:
1
;
padding-right
:
40
rpx
;
text-align
:
center
;
padding-right
:
40
rpx
;
}
}
.addComment-header-left
{
font-size
:
40
rpx
;
.addComment-header-left
{
position
:
relative
;
font-size
:
40
rpx
;
z-index
:
3
;
position
:
relative
;
z-index
:
3
;
}
}
.addComment-content
{
.addComment-content
{
position
:
relative
;
position
:
relative
;
z-index
:
1
;
z-index
:
1
;
}
}
.addComment-bj
{
.addComment-bj
{
position
:
fixed
;
position
:
fixed
;
right
:
0
;
right
:
0
;
left
:
0
;
left
:
0
;
...
@@ -291,6 +321,7 @@
...
@@ -291,6 +321,7 @@
z-index
:
0
;
z-index
:
0
;
background
:
#F6F6F6
;
background
:
#F6F6F6
;
}
}
.navbarSticky
{
.navbarSticky
{
display
:
sticky
;
display
:
sticky
;
top
:
0
;
top
:
0
;
...
...
src/pages/setComments/commentDetails.vue
View file @
f1c18d8e
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
</view>
</view>
</view>
</view>
</view>
</view>
<commentDetails
:CourseCommentTimesList=
"courseTimeList"
@
refreshData=
"getStuCommentList"
></commentDetails>
<commentDetails
:
qMsg=
"Msg"
:
CourseCommentTimesList=
"courseTimeList"
@
refreshData=
"getStuCommentList"
></commentDetails>
</view>
</view>
...
...
src/utils/request.js
View file @
f1c18d8e
...
@@ -4,7 +4,7 @@ if (process.env.NODE_ENV === "development") {
...
@@ -4,7 +4,7 @@ if (process.env.NODE_ENV === "development") {
host
=
'http://192.168.10.36:8082/api'
host
=
'http://192.168.10.36:8082/api'
// host = 'http://192.168.10.65:8085/api'
// host = 'http://192.168.10.65:8085/api'
}
else
{
}
else
{
host
=
'https://
edu
api.oytour.com/api'
host
=
'https://
jjsw
api.oytour.com/api'
}
}
import
Toast
from
'../wxcomponents/vant/toast/toast'
;
import
Toast
from
'../wxcomponents/vant/toast/toast'
;
let
request
=
(
param
)
=>
{
let
request
=
(
param
)
=>
{
...
...
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