liqk 4 lat temu
rodzic
commit
be24902e34

BIN
TEAMModelOS/ClientApp/src/assets/mark/img0.jpg


BIN
TEAMModelOS/ClientApp/src/assets/mark/img1.jpg


BIN
TEAMModelOS/ClientApp/src/assets/mark/img2.jpg


Plik diff jest za duży
+ 1 - 1
TEAMModelOS/ClientApp/src/components/public/frontEndMain/Index.vue


+ 1 - 1
TEAMModelOS/ClientApp/src/locale/lang/en-US/system.js

@@ -7,7 +7,7 @@ export default {
         private:'个人',
         noSchool1:'学校暂未购买服务',
         noSchool2:'暂未加入学校',
-        copyright:'©2021 Powered by 醍摩豆',
+        copyright:'©2021 HABOOK Group',
         schoolMgt:'学校管理',
         schoolRes:'校本资源',
         baseSetting:'基础设置',

+ 1 - 1
TEAMModelOS/ClientApp/src/locale/lang/zh-CN/system.js

@@ -7,7 +7,7 @@ export default {
         private:'个人',
         noSchool1:'学校暂未购买服务',
         noSchool2:'暂未加入学校',
-        copyright:'©2021 Powered by 醍摩豆',
+        copyright:'©2021 HABOOK Group',
         schoolMgt:'学校管理',
         schoolRes:'校本资源',
         baseSetting:'基础设置',

+ 1 - 1
TEAMModelOS/ClientApp/src/locale/lang/zh-TW/system.js

@@ -7,7 +7,7 @@ export default {
         private: '個人',
         noSchool1: '學校暫未購買服務',
         noSchool2: '暫未加入學校',
-        copyright: '©2021 Powered by醍摩豆',
+        copyright:'©2021 HABOOK Group',
         schoolMgt: '學校管理',
         schoolRes: '校本資源',
         baseSetting: '基礎設定',

+ 1 - 1
TEAMModelOS/ClientApp/src/view/homepage/HomePage.vue

@@ -103,7 +103,7 @@
                             </p>
                         </div>
                     </div>
-                    <EmptyData textContent="明日暂无课程"></EmptyData>
+                    <EmptyData v-show="!tmwCus.length" textContent="明日没有课程哦"></EmptyData>
                 </vuescroll>
             </div>
         </div>

+ 20 - 8
TEAMModelOS/ClientApp/src/view/homepage/MinTable.vue

@@ -5,43 +5,50 @@
             <!--星期一-->
             <template slot-scope="{ row, index }" slot="MON">
                 <div v-if="row.MON == 1" class="active-cell" @click="toDetail">
-                    <span class="course-dot"></span>
+                    <!-- <span class="course-dot"></span> -->
+                    <Icon type="md-checkmark" class="has-cus-icon"/>
                 </div>
             </template>
             <!--星期二-->
             <template slot-scope="{ row, index }" slot="TUE">
                 <div v-if="row.TUE == 1" class="active-cell" @click="toDetail">
-                    <span class="course-dot"></span>
+                    <!-- <span class="course-dot"></span> -->
+                    <Icon type="md-checkmark" class="has-cus-icon"/>
                 </div>
             </template>
             <!--星期三-->
             <template slot-scope="{ row, index }" slot="WED">
                 <div v-if="row.WED == 1" class="active-cell" @click="toDetail">
-                    <span class="course-dot"></span>
+                    <!-- <span class="course-dot"></span> -->
+                    <Icon type="md-checkmark" class="has-cus-icon"/>
                 </div>
             </template>
             <!--星期四-->
             <template slot-scope="{ row, index }" slot="THU">
                 <div v-if="row.THU == 1" class="active-cell" @click="toDetail">
-                    <span class="course-dot"></span>
+                    <!-- <span class="course-dot"></span> -->
+                    <Icon type="md-checkmark" class="has-cus-icon"/>
                 </div>
             </template>
             <!--星期五-->
             <template slot-scope="{ row, index }" slot="FRI">
                 <div v-if="row.FRI == 1" class="active-cell" @click="toDetail">
-                    <span class="course-dot"></span>
+                    <!-- <span class="course-dot"></span> -->
+                    <Icon type="md-checkmark" class="has-cus-icon"/>
                 </div>
             </template>
             <!--星期六-->
             <template slot-scope="{ row, index }" slot="SAT">
                 <div v-if="row.SAT == 1" class="active-cell" @click="toDetail">
-                    <span class="course-dot"></span>
+                    <!-- <span class="course-dot"></span> -->
+                    <Icon type="md-checkmark" class="has-cus-icon"/>
                 </div>
             </template>
             <!--星期日-->
             <template slot-scope="{ row, index }" slot="SUN">
                 <div v-if="row.SUN == 1" class="active-cell" @click="toDetail">
-                    <span class="course-dot"></span>
+                    <!-- <span class="course-dot"></span> -->
+                    <Icon type="md-checkmark" class="has-cus-icon"/>
                 </div>
             </template>
         </Table>
@@ -334,9 +341,14 @@ export default {
     width: 100%;
     height: 30px;
     line-height: 30px;
-    background: #383838;
+    // background: #383838;
+    background-color: #1cc0f3;
     cursor: pointer;
 }
+.has-cus-icon{
+    color: white;
+    font-size: 16px;
+}
 </style>
 <style>
 .home-cus-plan .ivu-table-cell {

+ 4 - 1
TEAMModelOS/ClientApp/src/view/task/mark/ByQu.vue

@@ -26,7 +26,7 @@
                     <Icon type="md-refresh" class="action-btn-icon" />
                     回评
                 </span> -->
-                <span class="action-btn">
+                <span class="action-btn"  @click="exception">
                     <Icon custom="iconfont icon-exception" class="action-btn-icon" />
                     异常申报
                 </span>
@@ -126,6 +126,9 @@ export default {
         }
     },
     methods: {
+        exception(){
+            this.$Message.warning('功能开发中')
+        },
         setQuIndex(data) {
             let { quIndex, childIndex } = data
             this.quIndex = quIndex

+ 5 - 2
TEAMModelOS/ClientApp/src/view/task/mark/ByStu.vue

@@ -26,8 +26,8 @@
                     <Icon type="md-refresh" class="action-btn-icon" />
                     回评
                 </span> -->
-                <span class="action-btn">
-                    <Icon custom="iconfont icon-exception" class="action-btn-icon" />
+                <span class="action-btn" @click="exception">
+                    <Icon custom="iconfont icon-exception" class="action-btn-icon"/>
                     异常申报
                 </span>
             </div>
@@ -156,6 +156,9 @@ export default {
         }
     },
     methods: {
+        exception(){
+            this.$Message.warning('功能开发中')
+        },
         //保存批注
         saveMark(data) {
             console.log(data)