mo 3 سال پیش
والد
کامیت
a76da9604f

+ 1 - 1
src/layout/components/AppMain.vue

@@ -315,7 +315,7 @@ export default {
 /deep/.line {
   height: 40px;
   line-height: 40px;
-  color: rgba(#212121, 0.9);
+  color: rgba(#666, 0.9);
   padding: 0 17px;
   background-color: #f9f9f9;
   cursor: pointer;

+ 1 - 0
src/views/serverDetail/index.vue

@@ -49,6 +49,7 @@
             clearable
           >
             <el-option label="是" value="1"></el-option>
+            <el-option label="否" value="0"></el-option>
           </el-select>
         </el-form-item>
         <el-form-item prop="unDone">

+ 1 - 1
src/views/studentManager/components/studentInfo.vue

@@ -71,7 +71,7 @@
                 是否是新用户
                 <el-tooltip placement="top" popper-class="mTooltip">
                   <div slot="content">
-                    在改时间段内学员才可缴费
+                    未购买VIP课程的学员为新用户
                   </div>
                   <i
                     class="el-icon-question"

+ 6 - 3
src/views/studentManager/components/studentNetwork.vue

@@ -10,9 +10,9 @@
         >
           <el-table-column align="center" prop="id" label="课程组编号">
             <template slot-scope="scope">
-              <el-button type="text" @click="gotoNet(scope.row.id)">
-                <copy-text>{{ scope.row.id }}</copy-text>
-              </el-button>
+              <div type="text" @click="gotoNet(scope.row.id)" class="groupId">
+                <copy-text style="">{{ scope.row.id }}</copy-text>
+              </div>
             </template>
           </el-table-column>
           <el-table-column align="center" prop="name" label="课程组名称">
@@ -145,4 +145,7 @@ export default {
 };
 </script>
 <style lang='scss' scoped>
+.groupId {
+    color: var(--color-primary);
+}
 </style>

+ 1 - 1
src/views/teacherManager/teacherOperation/components/teacherOperation.vue

@@ -373,7 +373,7 @@
                 <!-- <el-input v-model.trim="topForm.certificateType"></el-input> -->
                 <el-checkbox
                   v-model.trim="topForm.isSupportCourseScheduleRewardsRules"
-                  >适用VIP分部活动</el-checkbox
+                  >是否适用阶梯奖励</el-checkbox
                 >
               </el-form-item>
             </el-col>

+ 2 - 2
vue.config.js

@@ -18,8 +18,8 @@ const name = defaultSettings.title || '管乐迷后台管理系统' // page titl
 // let target = 'https://online.dayaedu.com' //线上
 // let target = 'http://192.168.3.251:8000' // 何国威
 // let target = 'http://192.168.3.250:8000' //邹璇
-let target = 'http://192.168.3.119:8000' //勇哥
-// let target = 'http://dev.dayaedu.com' // 开发环境
+// let target = 'http://192.168.3.119:8000' //勇哥
+let target = 'http://dev.dayaedu.com' // 开发环境
 // let target = 'https://test.dayaedu.com' //测试环境
 // All configuration item explanations can be find in https://cli.vuejs.org/config/
 module.exports = {