zydx-plus 1.35.582 → 1.35.584
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/biz_header/src/button_name.js +6 -6
- package/src/components/buttonGroup/src/buttonGroup.vue +1 -1
- package/src/components/editor2/src/editor.vue +2 -1
- package/src/components/flip/img/dingwei.png +0 -0
- package/src/components/select/src/select.vue +5 -5
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -748,7 +748,7 @@ let buttonNames = {
|
|
|
748
748
|
0: {
|
|
749
749
|
headLevel: {
|
|
750
750
|
default: "demand",
|
|
751
|
-
demand: '
|
|
751
|
+
demand: '讲课要求',
|
|
752
752
|
singletonClass: this.getCurrentPrefix(item) + '讲解',
|
|
753
753
|
allClass: this.getPrefix(item) + '情况',
|
|
754
754
|
},
|
|
@@ -760,10 +760,10 @@ let buttonNames = {
|
|
|
760
760
|
lowLevel: {
|
|
761
761
|
default: "setTask",
|
|
762
762
|
setTask: '布置任务',
|
|
763
|
-
discuss: '
|
|
763
|
+
discuss: '讲课交流',
|
|
764
764
|
// groupStudy: '小组学习',
|
|
765
765
|
// duplicate: '违纪查重',
|
|
766
|
-
writingInstruction:'
|
|
766
|
+
writingInstruction:'讲课指导',
|
|
767
767
|
teacherReview: '教师评价',
|
|
768
768
|
studentReview: '同学互评',
|
|
769
769
|
score: '成绩报告',
|
|
@@ -1824,7 +1824,7 @@ let buttonNames = {
|
|
|
1824
1824
|
0: {
|
|
1825
1825
|
headLevel: {
|
|
1826
1826
|
default: "demand",
|
|
1827
|
-
demand: '
|
|
1827
|
+
demand: '讲课要求',
|
|
1828
1828
|
singletonClass: this.getCurrentPrefix(item) + '讲解',
|
|
1829
1829
|
allClass: this.getPrefix(item) + '情况',
|
|
1830
1830
|
},
|
|
@@ -1837,8 +1837,8 @@ let buttonNames = {
|
|
|
1837
1837
|
default: "setTask",
|
|
1838
1838
|
setTask: '任务信息',
|
|
1839
1839
|
studyGroup: '小组成员',
|
|
1840
|
-
row4: '
|
|
1841
|
-
writingInstruction:'
|
|
1840
|
+
row4: '讲课学习',
|
|
1841
|
+
writingInstruction:'讲课指导',
|
|
1842
1842
|
teacherReview: '教师评价',
|
|
1843
1843
|
studentReview: '同学互评',
|
|
1844
1844
|
analysis: '统计分析',
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<onClickOutSide :target="dropdown" :handler="handler">
|
|
3
|
-
<div class="wrapper">
|
|
3
|
+
<div class="wrapper" ref="selectRef">
|
|
4
4
|
<div class="custom-select"
|
|
5
5
|
:class="{ 'readonly': readonly }">
|
|
6
6
|
<input type="text"
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
@click.stop="toggleDropDown"
|
|
11
11
|
class="select-css" />
|
|
12
12
|
|
|
13
|
-
<span class="custom-select-icons" v-if="!readonly">
|
|
13
|
+
<span class="custom-select-icons" v-if="!readonly" @click.stop="toggleDropDown">
|
|
14
14
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
15
15
|
width="16"
|
|
16
16
|
height="16"
|
|
17
17
|
viewBox="0 0 24 24">
|
|
18
|
-
<g :transform="transform">
|
|
18
|
+
<g :transform="transform" >
|
|
19
19
|
<path fill="#c0c4cc"
|
|
20
20
|
d="M15.125 21.1L6.7 12.7q-.15-.15-.213-.325T6.425 12q0-.2.062-.375T6.7 11.3l8.425-8.425q.35-.35.875-.35t.9.375q.375.375.375.875t-.375.875L9.55 12l7.35 7.35q.35.35.35.863t-.375.887q-.375.375-.875.375t-.875-.375Z" />
|
|
21
21
|
</g>
|
|
@@ -90,8 +90,8 @@ export default defineComponent({
|
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
92
|
methods: {
|
|
93
|
-
toggleDropDown: function (
|
|
94
|
-
const { x, y, width, height } =
|
|
93
|
+
toggleDropDown: function () {
|
|
94
|
+
const { x, y, width, height } = this.$refs.selectRef.getBoundingClientRect()
|
|
95
95
|
this.x = x
|
|
96
96
|
this.y = y + height
|
|
97
97
|
this.width = width
|