lsc 1 년 전
부모
커밋
f1b0e20ed6

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.690af2f11da2da61b8de65223d1201a4.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.051b8ee0f2f43637c4ec.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.48d3ba7c1241e79ce5ae8136b30f24c7.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.7542d150ed9b528a7ee6.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/app.48d3ba7c1241e79ce5ae8136b30f24c7.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/app.48d3ba7c1241e79ce5ae8136b30f24c7.css.map


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/app.690af2f11da2da61b8de65223d1201a4.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/app.690af2f11da2da61b8de65223d1201a4.css.map


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.051b8ee0f2f43637c4ec.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.7542d150ed9b528a7ee6.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.7542d150ed9b528a7ee6.js.map


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


+ 3 - 1
src/common/axios.config.js

@@ -22,7 +22,9 @@ axios.interceptors.request.use((config) => {
     // } else if (config.method === 'post') {
     //     config.data = qs.stringify(config.data)//序列化post 参数
     // }
-    if (config.data && config.data[0].post == '1' && config.method === 'post') {
+    if(config.url === 'https://gpt.cocorobo.cn/search') {
+        config.data = config.data//序列化post 参数
+    } else if (config.data && config.data[0].post == '1' && config.method === 'post') {
         config.data = 'mode=' + (Object.values(config.data[0]).join(','))//序列化post 参数
     } else if(config.method === 'post') {
         config.data = qs.stringify(config.data)//序列化post 参数

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 417 - 399
src/components/pages/addCourse.vue


+ 43 - 26
src/components/pages/dataBoard/school/cateRank/index.vue

@@ -1,27 +1,14 @@
 <template>
   <div class="data_body">
     <div style="width: 100%; height: 100%">
-      <el-table
-        :data="tableData"
-        style="width: 100%"
-        :header-cell-style="{ background: '#E0EAFB' }"
-        :row-class-name="tableRowClassName"
-      >
-        <el-table-column prop="rank" label="排行" min-width="50" align="center">
+      <el-table :data="tableData" style="width: 100%" :header-cell-style="{ background: '#E0EAFB' }"
+        :row-class-name="tableRowClassName">
+        <el-table-column label="排行" min-width="50" align="center">
+          <template slot-scope="scope">{{ scope.$index + 1 }}</template>
         </el-table-column>
-        <el-table-column
-          prop="name"
-          label="类别名称"
-          min-width="80"
-          align="center"
-        >
+        <el-table-column prop="name" label="类别名称" min-width="80" align="center">
         </el-table-column>
-        <el-table-column
-          prop="sum"
-          label="课程数量"
-          min-width="80"
-          align="center"
-        >
+        <el-table-column prop="sum" label="课程数量" min-width="80" align="center">
         </el-table-column>
       </el-table>
     </div>
@@ -30,15 +17,20 @@
 
 <script>
 export default {
+  props: {
+    courseNumberArray: {
+      type: Array,
+    },
+  },
   data() {
     return {
       tableData: [
-        { rank: "1", name: "一年级", sum: "2356" },
-        { rank: "2", name: "二年级", sum: "2256" },
-        { rank: "3", name: "三年级", sum: "2156" },
-        { rank: "4", name: "四年级", sum: "1356" },
-        { rank: "5", name: "五年级", sum: "1256" },
-        { rank: "6", name: "六年级", sum: "1056" },
+        // { rank: "1", name: "一年级", sum: "2356" },
+        // { rank: "2", name: "二年级", sum: "2256" },
+        // { rank: "3", name: "三年级", sum: "2156" },
+        // { rank: "4", name: "四年级", sum: "1356" },
+        // { rank: "5", name: "五年级", sum: "1256" },
+        // { rank: "6", name: "六年级", sum: "1056" },
       ],
     };
   },
@@ -50,14 +42,39 @@ export default {
         return "";
       }
     },
+    setArray(array){
+      for(var i = 0;i<array.length;i++){
+        this.tableData.push({
+          sum:array[i].course,
+          name:array[i].name
+        })
+      }
+      this.tableData = this.tableData.sort(function(a,b){
+        return b.sum - a.sum;
+      })
+    }
+  },
+  watch: {
+    courseNumberArray: {
+      immediate: true,
+      deep: true,
+      handler(newValue, oldValue) {
+        this.setArray(newValue)
+        this.$forceUpdate();
+      },
+    },
+  },
+  mounted() {
+    this.setArray(this.courseNumberArray)
   },
 };
 </script>
 
 <style scoped>
-.el-table >>> .even_row {
+.el-table>>>.even_row {
   background-color: #f2f7ff !important;
 }
+
 .data_body {
   height: 100%;
   /* display: flex; */

+ 37 - 13
src/components/pages/dataBoard/school/courseInfo/index.vue

@@ -8,12 +8,16 @@
   
 <script>
 export default {
+    props: {
+        courseNumberArray: {
+            type: Array,
+        },
+    },
     data() {
         return {
             chartObj: null,
             ooption: {
-                xdata: [],
-                sdata: [],
+                data: [],
             },
             option: {
                 tooltip: {
@@ -33,12 +37,12 @@ export default {
                         },
 
                         data: [
-                            { value: 1048, name: '一年级' },
-                            { value: 735, name: '二年级' },
-                            { value: 580, name: '三年级' },
-                            { value: 484, name: '四年级' },
-                            { value: 484, name: '五年级' },
-                            { value: 300, name: '六年级' }
+                            // { value: 1048, name: '一年级' },
+                            // { value: 735, name: '二年级' },
+                            // { value: 580, name: '三年级' },
+                            // { value: 484, name: '四年级' },
+                            // { value: 484, name: '五年级' },
+                            // { value: 300, name: '六年级' }
                         ]
                     }
                 ]
@@ -57,20 +61,40 @@ export default {
                     //劳动课程
                     this.$el.querySelector("#charts_canvas")
                 );
-                //   this.option.xAxis.data = option.xdata;
-                //   this.option.series[0].data = option.sdata;
+                this.option.series[0].data = this.ooption.data;
                 // 初始化雷达图
                 this.chartObj = chartObj;
                 this.chartObj.setOption(this.option);
             });
         },
+        setArray(array) {
+            this.ooption = {
+                data: [],
+            }
+            for (var i = 0; i < array.length; i++) {
+                this.ooption.data.push({ value: array[i].course, name: array[i].name})
+            }
+            if (!this.chartObj) {
+                this.setChart(this.ooption);
+            } else {
+                this.option.series[0].data = this.ooption.data;
+                this.chartObj.setOption(this.option);
+            }
+            this.$forceUpdate();
+        },
     },
     watch: {
-
+        courseNumberArray: {
+            immediate: true,
+            deep: true,
+            handler(newValue, oldValue) {
+                this.setArray(newValue)
+                this.$forceUpdate();
+            },
+        },
     },
     mounted() {
-
-        this.setChart(this.ooption);
+        this.setArray(this.courseNumberArray)
         var _this = this;
         window.addEventListener("resize", () => {
             if (_this.chartObj) {

+ 138 - 36
src/components/pages/dataBoard/school/index.vue

@@ -83,61 +83,72 @@
             <div class="depth">
               <span>上传课程</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="36" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle"
+                  :percentage="lightJson.upCourseTeachers ? ((lightJson.upCourseTeachers / lightJson.teachers) * 100).toFixed(0) : 0"
+                  :stroke-width="15" :format="format" color="#106BFF"></el-progress>
               </div>
             </div>
             <div class="depth">
-              <span>指导项目</span>
+              <span>上传项目</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="76" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle" :percentage="lightJson.upCourseUsers ? ((lightJson.upCourseUsers / lightJson.users) * 100).toFixed(0) : 0" :stroke-width="15" :format="format"
+                  color="#106BFF"></el-progress>
               </div>
             </div>
             <div class="depth">
               <span>使用工具</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="76" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle" :percentage="lightJson.toolUsers ? ((lightJson.toolUsers / lightJson.users) * 100).toFixed(0) : 0" :stroke-width="15" :format="format"
+                  color="#106BFF"></el-progress>
               </div>
             </div>
             <div class="depth">
               <span>课程评价</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="76" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle" :percentage="lightJson.rateUser ? ((lightJson.rateUser / lightJson.users) * 100).toFixed(0) : 0" :stroke-width="15" :format="format"
+                  color="#106BFF"></el-progress>
               </div>
             </div>
             <div class="depth">
               <span>互动交流</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="76" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle" :percentage="lightJson.commentUsers ? ((lightJson.commentUsers / lightJson.users) * 100).toFixed(0) : 0" :stroke-width="15" :format="format"
+                  color="#106BFF"></el-progress>
               </div>
             </div>
             <div class="depth">
               <span>参与课程</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="36" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle" :percentage="lightJson.gCourseTeachers ? ((lightJson.gCourseTeachers / lightJson.teachers) * 100).toFixed(0) : 0" :stroke-width="15" :format="format"
+                  color="#106BFF"></el-progress>
               </div>
             </div>
             <div class="depth">
               <span>参与项目</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="76" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle" :percentage="lightJson.gCourseUsers ? ((lightJson.gCourseUsers / lightJson.users) * 100).toFixed(0) : 0" :stroke-width="15" :format="format"
+                  color="#106BFF"></el-progress>
               </div>
             </div>
             <div class="depth">
               <span>使用工具</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="25" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle" :percentage="25" :stroke-width="15" :format="format"
+                  color="#106BFF"></el-progress>
               </div>
             </div>
             <div class="depth">
               <span>协同合作</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="76" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle" :percentage="lightJson.upgCourseTeachers ? ((lightJson.upgCourseTeachers / lightJson.teachers) * 100).toFixed(0) : 0" :stroke-width="15" :format="format"
+                  color="#106BFF"></el-progress>
               </div>
             </div>
             <div class="depth">
               <span>合作交流</span>
               <div>
-                <el-progress :width="80" type="circle" :percentage="76" :stroke-width="15" :format="format" color="#106BFF"></el-progress>
+                <el-progress :width="80" type="circle" :percentage="76" :stroke-width="15" :format="format"
+                  color="#106BFF"></el-progress>
               </div>
             </div>
           </div>
@@ -154,7 +165,7 @@
             <el-option label="主题" value="theme"></el-option>
             <el-option label="学科" value="subject"></el-option>
           </el-select>
-          
+
         </div>
         <div class="dataBox">
           <div class="course_box">
@@ -165,18 +176,19 @@
               </div>
               <div class="info3 greenBG">
                 <span>类别总数</span>
-                <span>{{typeCount}}</span>
+                <span>{{ typeCount }}</span>
               </div>
               <div class="info3 blueBG">
                 <span>类别平均</span>
-                <span>{{(typeCount / 3).toFixed(0)}}</span>
+                <span>{{ (typeCount / 3).toFixed(0) }}</span>
               </div>
             </div>
             <div class="course_box_p">
-              <courseInfo></courseInfo>
+              <courseInfo :courseNumberArray="courseNumberArray"></courseInfo>
             </div>
           </div>
-          <cateRank style="height: calc(100% - 50% - 10px); overflow: auto"></cateRank>
+          <cateRank style="height: calc(100% - 50% - 10px); overflow: auto" :courseNumberArray="courseNumberArray">
+          </cateRank>
         </div>
       </div>
       <div class="bottom">
@@ -229,10 +241,26 @@ export default {
       gradeCourse: 0,
       subjectCourse: 0,
       courseArray: [],
-      cType:'',
-      grade:[],
-      subject:[],
-      theme:[],
+      cType: '',
+      gradeArray: [],
+      subjectArray: [],
+      themeArray: [],
+      allArray: [],
+      courseNumberArray: [],
+      typeCount: 0,
+      lightJson: {
+        users: 0,
+        teachers: 0,
+        students: 0,
+        upCourseTeachers: 0,
+        gCourseTeachers: 0,
+        upCourseUsers: 0,
+        gCourseUsers: 0,
+        toolUsers: 0,
+        rateUser: 0,
+        upgCourseTeachers: 0,
+        commentUsers: 0,
+      }
     }
   },
   mounted() {
@@ -395,7 +423,7 @@ export default {
             for (var j = 0; j < _courseArray[i].subject.length - 1; j++) {
               sum += _courseArray[i].subject[j].course
             }
-            _courseArray[i].subject[_courseArray[i].subject.length - 1].course = (_courseArray[i].courseid.length - sum) < 0 ? 0 : _courseArray[i].courseid.length - sum 
+            _courseArray[i].subject[_courseArray[i].subject.length - 1].course = (_courseArray[i].courseid.length - sum) < 0 ? 0 : _courseArray[i].courseid.length - sum
           }
           for (var j = 0; j < _subject.length; j++) {
             for (var z = 0; z < _course.length; z++) {
@@ -411,10 +439,83 @@ export default {
 
           let _theme = res.data[14] //主题
 
-          this.grade = _grade
-          this.subject = _subject
-          this.theme = _theme
           this.typeCount = _grade.length + _subject.length + _theme.length
+          let _gradeArray = []
+          let _subjectArray = []
+          let _themeArray = []
+
+          for (var i = 0; i < _grade.length; i++) {
+            _gradeArray.push({
+              name: _grade[i].name,
+              typeid: _grade[i].id,
+              course: 0
+            })
+            for (var z = 0; z < _course.length; z++) {
+              if (_course[z].typeid == _grade[i].id) {
+                _gradeArray[i].course++
+              }
+            }
+          }
+
+          for (var i = 0; i < _subject.length; i++) {
+            _subjectArray.push({
+              name: _subject[i].name,
+              typeid: _subject[i].id,
+              course: 0
+            })
+            for (var z = 0; z < _course.length; z++) {
+              if (_course[z].typeid == _subject[i].id) {
+                _subjectArray[i].course++
+              }
+            }
+          }
+
+
+          for (var i = 0; i < _theme.length; i++) {
+            _themeArray.push({
+              name: _theme[i].name,
+              typeid: _theme[i].id,
+              course: 0
+            })
+            for (var z = 0; z < _course.length; z++) {
+              if (_course[z].typeid == _theme[i].id) {
+                _themeArray[i].course++
+              }
+            }
+          }
+
+
+
+          this.gradeArray = _gradeArray
+          this.subjectArray = _subjectArray
+          this.themeArray = _themeArray
+          this.allArray = [..._gradeArray, ..._subjectArray, ..._themeArray]
+          this.typeChange();
+
+          let _teachers = res.data[15][0].count //老师数量
+          let _students = res.data[16][0].count //学生数量
+          let _upCourseTeachers = res.data[17][0].count //上传课程老师的数量
+          let _gCourseTeachers = res.data[18][0].count //参与课程的老师
+          let _upCourseUsers = res.data[19][0].count //上传项目的用户
+          let _gCourseUsers = res.data[20][0].count //参与项目的用户
+          let _toolUsers = res.data[21][0].count //使用工具的用户
+          let _rateUser = res.data[22][0].count //被评价的用户
+          let _upgCourseTeachers = res.data[23][0].count //参与协同课程的老师
+          let _commentUsers = res.data[24][0].count //参与互动交流的用户
+
+          this.lightJson = {
+            users: this.count,
+            teachers: _teachers,
+            students: _students,
+            upCourseTeachers: _upCourseTeachers,
+            gCourseTeachers: _gCourseTeachers,
+            upCourseUsers: _upCourseUsers,
+            gCourseUsers: _gCourseUsers,
+            toolUsers: _toolUsers,
+            rateUser: _rateUser,
+            upgCourseTeachers: _upgCourseTeachers,
+            commentUsers: _commentUsers,
+          }
           this.$forceUpdate();
         })
         .catch((err) => {
@@ -422,16 +523,17 @@ export default {
           console.error(err);
         });
     },
-    typeChange(){
-      if(this.cType === ''){
-
-      }else if(this.cType === 'grade'){
-
-      }else if(this.cType === 'theme'){
-
-      }else if(this.cType === 'subject'){
-
+    typeChange() {
+      if (this.cType === '') {
+        this.courseNumberArray = this.allArray
+      } else if (this.cType === 'grade') {
+        this.courseNumberArray = this.gradeArray
+      } else if (this.cType === 'theme') {
+        this.courseNumberArray = this.subjectArray
+      } else if (this.cType === 'subject') {
+        this.courseNumberArray = this.themeArray
       }
+      this.$forceUpdate();
     },
     format(percentage) {
       return percentage;
@@ -634,17 +736,17 @@ export default {
   width: calc(100% - 100px);
 }
 
-.selectBox{
+.selectBox {
   width: 80px;
   margin-left: 10px;
 }
 
-.selectBox >>> .el-input__inner{
+.selectBox>>>.el-input__inner {
   height: 30px;
   line-height: 30px;
 }
 
-.selectBox >>> .el-input__icon{
+.selectBox>>>.el-input__icon {
   line-height: 30px;
 }
 </style>

+ 1 - 0
src/components/pages/dataBoard/school/loginCount/index.vue

@@ -11,6 +11,7 @@ export default {
     props: {
         monthArray: {
             type: Array,
+            default:[]
         },
     },
     data() {

+ 14 - 3
src/components/pages/dataBoard/student/index.vue

@@ -50,11 +50,11 @@
             </div>
             <div class="info2 greenBG">
               <span>班级总数</span>
-              <span>15620</span>
+              <span>{{classList.length}}</span>
             </div>
             <div class="info2 blueBG">
               <span>平均得分</span>
-              <span>15620</span>
+              <span>{{scoreJun}}</span>
             </div>
           </div>
           <studentInfo style="height: calc(100% - 70px)"></studentInfo>
@@ -195,7 +195,9 @@ export default {
       loginCount: 0,
       loginTime: 0,
       loginCountMonthArray:[],
-      weekCount:0
+      weekCount:0,
+      classList:[],
+      scoreJun:0
     };
   },
   mounted() {
@@ -258,6 +260,15 @@ export default {
           console.log(loginCountMonthArray);
 
           this.weekCount = res.data[4][0].count
+          let _classList = res.data[5]
+          this.classList = _classList
+          let _scoreArray = res.data[6]
+          let _sumScore = 0
+          for(var i = 0; i< _scoreArray.length;i++){
+            let _score = JSON.parse(_scoreArray[i].score)
+            _sumScore += _score.wScore
+          }
+          this.scoreJun = (_sumScore / _scoreArray.length).toFixed(0)
         })
         .catch((err) => {
           this.isLoading = false;

+ 146 - 10
src/components/pages/easy/addCourse.vue

@@ -3818,7 +3818,7 @@
         <el-button type="primary" @click="addMp3Answer">确 定</el-button>
       </span>
     </el-dialog>
-    <el-dialog title="上传图片" :visible.sync="choosePicVisible" :append-to-body="true" width="500px"
+    <el-dialog title="上传图片" :visible.sync="choosePicVisible" :append-to-body="true" width="600px"
       :before-close="handleClose" class="dialog_diy">
       <div>
         <div class="fileCss" style="padding-top: 20px">
@@ -3827,21 +3827,33 @@
               选择本地文件
               <input type="file" accept="image/*" style="display: none" @change="beforeUpload1" />
             </button>
+            <div class="spanName">选择本地文件</div>
           </div>
           <div>
-            <el-button @click="getAllBanner" v-if="isSysPic == false && cover.length == 0">选择系统文件</el-button>
+            <el-button @click="getAllBanner" v-if="isSysPic == false ">选择系统文件</el-button>
             <div class="isSysPic" v-if="isSysPic == true && cover.length > 0">
               <img :src="cover[0].url" alt="" />
               <div class="deletePic" @click="deleteSysPic">
                 <img src="../../../assets/icon/delete.png" alt="" />
               </div>
             </div>
+            <div class="spanName">选择系统文件</div>
+          </div>
+          <div>
+            <el-button @click="searchImage" v-if="isSysPic2 == false">选择网络文件</el-button>
+            <div class="isSysPic" v-if="isSysPic2 == true && cover.length > 0">
+              <img :src="cover[0].url" alt="" />
+              <div class="deletePic" @click="deleteSysPic">
+                <img src="../../../assets/icon/delete.png" alt="" />
+              </div>
+            </div>
+            <div class="spanName">选择网络文件</div>
           </div>
         </div>
-        <div class="fileCss">
+        <!-- <div class="fileCss">
           <div>选择本地文件</div>
           <div>选择系统文件</div>
-        </div>
+        </div> -->
       </div>
       <span slot="footer" class="dialog-footer">
         <el-button @click="choosePicVisible = false">取 消</el-button>
@@ -3874,6 +3886,18 @@
         <el-button type="primary">确 定</el-button>
       </span>
     </el-dialog>
+    <el-dialog title="选择网络文件" :visible.sync="sysPicVisible2" :append-to-body="true" width="710px"
+      :before-close="handleClose" class="dialog_diy">
+      <div class="sysPicBox" v-loading="imageloading">
+        <div v-for="(sys, sysIndex) in imageList" :key="sysIndex" class="sysPic">
+          <img :src="sys.url" alt="" @click="chooseSysPic2(sys.url)" />
+        </div>
+      </div>
+      <span slot="footer" class="dialog-footer">
+        <el-button @click="sysPicVisible2 = false">取 消</el-button>
+        <el-button type="primary">确 定</el-button>
+      </span>
+    </el-dialog>
     <el-dialog title="选择填空" :visible.sync="dialogVisibleSelect" :append-to-body="true" width="800px"
       :before-close="handleClose" class="dialog_diy dialog_diy3">
       <div v-if="selectJson">
@@ -4220,6 +4244,7 @@ export default {
       checkedCities: [],
       isIndeterminate: true,
       isSysPic: false,
+      isSysPic2: false,
       steps: 1,
       nbOrder: 0,
       courseId: "",
@@ -4416,7 +4441,10 @@ export default {
       videoJson: {},
       isBtnDisplay:false,
       isPasteTask:false,
-      isPasteChoice:false
+      isPasteChoice:false,
+      sysPicVisible2: false,
+      imageloading: false,
+      imageList: [],
     };
   },
   directives: {
@@ -4960,6 +4988,7 @@ export default {
       this.cover = [];
       this.noneBtnImg = this.cover.length >= 1;
       this.isSysPic = false;
+      this.isSysPic2 = false;
       this.$forceUpdate();
     },
     addImg(e) {
@@ -5262,13 +5291,34 @@ export default {
       }
     },
     chooseSysPic(p) {
-      this.cover.push({
-        name: "系统图片.png",
-        url: p,
-      });
-      this.imgChange1(null, null, 1, null);
+      this.cover = []
+      setTimeout(() => {
+        this.cover[0] = {
+          name: "系统图片.png",
+          url: p,
+        };
+        this.imgChange1(null, null, 1, null);
+        this.$forceUpdate();
+      }, 0);
       this.isSysPic = true;
+      this.isSysPic2 = false;
       this.sysPicVisible = false;
+      this.$forceUpdate();
+    },
+    chooseSysPic2(p) {
+      this.cover = []
+      setTimeout(() => {
+        this.cover[0] = {
+          name: "网络图片.png",
+          url: p,
+        };
+        this.imgChange1(null, null, 1, null);
+        this.$forceUpdate();
+      }, 0);
+      this.isSysPic2 = true;
+      this.isSysPic = false;
+      this.sysPicVisible2 = false;
+      this.$forceUpdate();
     },
     beforeUpload(data) {
       this.$refs.upload1.uploadFiles;
@@ -8417,6 +8467,7 @@ export default {
     deleteSysPic() {
       this.cover = [];
       this.isSysPic = false;
+      this.isSysPic2 = false;
     },
     deleteSelectPic() {
       this.selectJson.url = "";
@@ -8844,6 +8895,80 @@ export default {
       if (copyData && copyData.tasksData && copyData.tasksData.length) {
         this.isPasteTask = true
       }
+    },
+    searchImage() {
+      var _this = this;
+      _this.imageList = []
+      _this.imageloading = true
+      _this.ajax.post('https://gpt.cocorobo.cn/search', {
+        page: 1,
+        pageSize: 21,
+        keywords: '',
+        category: 'unsplash',
+        isNeedTranslate: true
+      }).then(function (response) {
+        // console.log(response.data.data);
+        var data = response.data.data;
+        for (var i = 0; i < data.length; i++) {
+          _this.imageList.push(data[i].small_img_path)
+        }
+        _this.imageloading = false
+      }).catch(function (error) {
+        console.log(error);
+      });
+      _this.sysPicVisible2 = true
+
+      // _this.ajax.post('https://gpt.cocorobo.cn/search', {
+      //   page: 1,
+      //   pageSize: 4,
+      //   keywords: '',
+      //   category: 'pexels',
+      //   isNeedTranslate: true
+      // }).then(function (response) {
+      //   // console.log(response.data.data);
+      //   var data = response.data.data;
+      //   for (var i = 0; i < data.length; i++) {
+      //     _this.imageList.push(data[i].small_img_path)
+      //   }
+      //   _this.imageloading = false
+      // }).catch(function (error) {
+      //   console.log(error);
+      // });
+
+      // _this.ajax.post('https://gpt.cocorobo.cn/search', {
+      //   page: 1,
+      //   pageSize: 4,
+      //   keywords: '',
+      //   category: 'pixabay',
+      //   isNeedTranslate: false
+      // }).then(function (response) {
+      //   // console.log(response.data.data);
+      //   var data = response.data.data;
+      //   for (var i = 0; i < data.length; i++) {
+      //     _this.imageList.push(data[i].small_img_path)
+      //   }
+      //   _this.imageloading = false
+      // }).catch(function (error) {
+      //   console.log(error);
+      // });
+
+      // _this.ajax.post('https://gpt.cocorobo.cn/search', {
+      //   page: 1,
+      //   pageSize: 4,
+      //   keywords: '',
+      //   category: '500px',
+      //   isNeedTranslate: true
+      // }).then(function (response) {
+      //   // console.log(response.data.data);
+      //   var data = response.data.data;
+      //   for (var i = 0; i < data.length; i++) {
+      //     _this.imageList.push(data[i].small_img_path)
+      //   }
+      //   _this.imageloading = false
+      // }).catch(function (error) {
+      //   console.log(error);
+      // });
+
     }
   },
   beforeDestroy() {
@@ -11290,6 +11415,17 @@ ol {
   padding-top: 15px;
 }
 
+.fileCss > div{
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+}
+
+.fileCss .spanName{
+  margin-top:10px
+}
+
+
 .sysPicBox {
   display: flex;
   flex-direction: row;

+ 146 - 20
src/components/pages/task/addCourse.vue

@@ -6145,7 +6145,7 @@
       title="上传图片"
       :visible.sync="choosePicVisible"
       :append-to-body="true"
-      width="500px"
+      width="600px"
       :before-close="handleClose"
       class="dialog_diy"
     >
@@ -6154,32 +6154,35 @@
           <div>
             <button class="info_btn" @click="addImg($event)">
               选择本地文件
-              <input
-                type="file"
-                accept="image/*"
-                style="display: none"
-                @change="beforeUpload1"
-              />
+              <input type="file" accept="image/*" style="display: none" @change="beforeUpload1" />
             </button>
+            <div class="spanName">选择本地文件</div>
           </div>
           <div>
-            <el-button
-              @click="getAllBanner"
-              v-if="isSysPic == false && cover.length == 0"
-              >选择系统文件</el-button
-            >
+            <el-button @click="getAllBanner" v-if="isSysPic == false ">选择系统文件</el-button>
             <div class="isSysPic" v-if="isSysPic == true && cover.length > 0">
               <img :src="cover[0].url" alt="" />
               <div class="deletePic" @click="deleteSysPic">
                 <img src="../../../assets/icon/delete.png" alt="" />
               </div>
             </div>
+            <div class="spanName">选择系统文件</div>
+          </div>
+          <div>
+            <el-button @click="searchImage" v-if="isSysPic2 == false">选择网络文件</el-button>
+            <div class="isSysPic" v-if="isSysPic2 == true && cover.length > 0">
+              <img :src="cover[0].url" alt="" />
+              <div class="deletePic" @click="deleteSysPic">
+                <img src="../../../assets/icon/delete.png" alt="" />
+              </div>
+            </div>
+            <div class="spanName">选择网络文件</div>
           </div>
         </div>
-        <div class="fileCss">
+        <!-- <div class="fileCss">
           <div>选择本地文件</div>
           <div>选择系统文件</div>
-        </div>
+        </div> -->
       </div>
       <span slot="footer" class="dialog-footer">
         <el-button @click="choosePicVisible = false">取 消</el-button>
@@ -6236,6 +6239,18 @@
         <el-button type="primary">确 定</el-button>
       </span>
     </el-dialog>
+    <el-dialog title="选择网络文件" :visible.sync="sysPicVisible2" :append-to-body="true" width="710px"
+      :before-close="handleClose" class="dialog_diy">
+      <div class="sysPicBox" v-loading="imageloading">
+        <div v-for="(sys, sysIndex) in imageList" :key="sysIndex" class="sysPic">
+          <img :src="sys.url" alt="" @click="chooseSysPic2(sys.url)" />
+        </div>
+      </div>
+      <span slot="footer" class="dialog-footer">
+        <el-button @click="sysPicVisible2 = false">取 消</el-button>
+        <el-button type="primary">确 定</el-button>
+      </span>
+    </el-dialog>
     <el-dialog
       title="选择填空"
       :visible.sync="dialogVisibleSelect"
@@ -6801,6 +6816,7 @@ export default {
       checkedCities: [],
       isIndeterminate: true,
       isSysPic: false,
+      isSysPic2: false,
       steps: 1,
       nbOrder: 0,
       courseId: "",
@@ -6997,7 +7013,10 @@ export default {
       videoJson: {},
       isBtnDisplay:false,
       isPasteTask:false,
-      isPasteChoice:false
+      isPasteChoice:false,
+      sysPicVisible2: false,
+      imageloading: false,
+      imageList: [],
     };
   },
   directives: {
@@ -7530,6 +7549,7 @@ export default {
       this.cover = [];
       this.noneBtnImg = this.cover.length >= 1;
       this.isSysPic = false;
+      this.isSysPic2 = false;
       this.$forceUpdate();
     },
     addImg(e) {
@@ -7832,13 +7852,34 @@ export default {
       }
     },
     chooseSysPic(p) {
-      this.cover.push({
-        name: "系统图片.png",
-        url: p,
-      });
-      this.imgChange1(null, null, 1, null);
+      this.cover = []
+      setTimeout(() => {
+        this.cover[0] = {
+          name: "系统图片.png",
+          url: p,
+        };
+        this.imgChange1(null, null, 1, null);
+        this.$forceUpdate();
+      }, 0);
       this.isSysPic = true;
+      this.isSysPic2 = false;
       this.sysPicVisible = false;
+      this.$forceUpdate();
+    },
+    chooseSysPic2(p) {
+      this.cover = []
+      setTimeout(() => {
+        this.cover[0] = {
+          name: "网络图片.png",
+          url: p,
+        };
+        this.imgChange1(null, null, 1, null);
+        this.$forceUpdate();
+      }, 0);
+      this.isSysPic2 = true;
+      this.isSysPic = false;
+      this.sysPicVisible2 = false;
+      this.$forceUpdate();
     },
     beforeUpload(data) {
       this.$refs.upload1.uploadFiles;
@@ -10984,6 +11025,7 @@ export default {
     deleteSysPic() {
       this.cover = [];
       this.isSysPic = false;
+      this.isSysPic2 = false;
     },
     deleteSelectPic() {
       this.selectJson.url = "";
@@ -11384,6 +11426,80 @@ export default {
       if (copyData && copyData.tasksData && copyData.tasksData.length) {
         this.isPasteTask = true
       }
+    },
+    searchImage() {
+      var _this = this;
+      _this.imageList = []
+      _this.imageloading = true
+      _this.ajax.post('https://gpt.cocorobo.cn/search', {
+        page: 1,
+        pageSize: 21,
+        keywords: '',
+        category: 'unsplash',
+        isNeedTranslate: true
+      }).then(function (response) {
+        // console.log(response.data.data);
+        var data = response.data.data;
+        for (var i = 0; i < data.length; i++) {
+          _this.imageList.push(data[i].small_img_path)
+        }
+        _this.imageloading = false
+      }).catch(function (error) {
+        console.log(error);
+      });
+      _this.sysPicVisible2 = true
+
+      // _this.ajax.post('https://gpt.cocorobo.cn/search', {
+      //   page: 1,
+      //   pageSize: 4,
+      //   keywords: '',
+      //   category: 'pexels',
+      //   isNeedTranslate: true
+      // }).then(function (response) {
+      //   // console.log(response.data.data);
+      //   var data = response.data.data;
+      //   for (var i = 0; i < data.length; i++) {
+      //     _this.imageList.push(data[i].small_img_path)
+      //   }
+      //   _this.imageloading = false
+      // }).catch(function (error) {
+      //   console.log(error);
+      // });
+
+      // _this.ajax.post('https://gpt.cocorobo.cn/search', {
+      //   page: 1,
+      //   pageSize: 4,
+      //   keywords: '',
+      //   category: 'pixabay',
+      //   isNeedTranslate: false
+      // }).then(function (response) {
+      //   // console.log(response.data.data);
+      //   var data = response.data.data;
+      //   for (var i = 0; i < data.length; i++) {
+      //     _this.imageList.push(data[i].small_img_path)
+      //   }
+      //   _this.imageloading = false
+      // }).catch(function (error) {
+      //   console.log(error);
+      // });
+
+      // _this.ajax.post('https://gpt.cocorobo.cn/search', {
+      //   page: 1,
+      //   pageSize: 4,
+      //   keywords: '',
+      //   category: '500px',
+      //   isNeedTranslate: true
+      // }).then(function (response) {
+      //   // console.log(response.data.data);
+      //   var data = response.data.data;
+      //   for (var i = 0; i < data.length; i++) {
+      //     _this.imageList.push(data[i].small_img_path)
+      //   }
+      //   _this.imageloading = false
+      // }).catch(function (error) {
+      //   console.log(error);
+      // });
+
     }
   },
   beforeDestroy() {
@@ -13833,6 +13949,16 @@ ol {
   padding-top: 15px;
 }
 
+.fileCss > div{
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+}
+
+.fileCss .spanName{
+  margin-top:10px
+}
+
 .sysPicBox {
   display: flex;
   flex-direction: row;

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.