lsc 10 hónapja
szülő
commit
5b889f0fda

+ 1 - 1
dist/index.html

@@ -32,7 +32,7 @@
       width: 100%;
       background: #e6eaf0;
       font-family: '黑体';
-    }</style><link href=./static/css/app.119c96b6d01b62db7c4317fbba136c4b.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.571c38d63f24b1ae9e16.js></script><script type=text/javascript src=./static/js/vendor.3cd0a0187ca1f70ded67.js></script><script type=text/javascript src=./static/js/app.91d7e564f7808b4b469a.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.668464ba05588510cf80a1b1b27d4cbe.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.571c38d63f24b1ae9e16.js></script><script type=text/javascript src=./static/js/vendor.3cd0a0187ca1f70ded67.js></script><script type=text/javascript src=./static/js/app.607a8dce4fa48eda38e5.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 0
dist/static/css/app.119c96b6d01b62db7c4317fbba136c4b.css


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 0
dist/static/css/app.119c96b6d01b62db7c4317fbba136c4b.css.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 0
dist/static/css/app.668464ba05588510cf80a1b1b27d4cbe.css


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 0
dist/static/css/app.668464ba05588510cf80a1b1b27d4cbe.css.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 0
dist/static/js/app.607a8dce4fa48eda38e5.js


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 0
dist/static/js/app.607a8dce4fa48eda38e5.js.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 0
dist/static/js/manifest.571c38d63f24b1ae9e16.js.map


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

@@ -1,6 +1,7 @@
 import axios from "axios"
 import qs from "qs"
-axios.defaults.timeout = 180000   //响应时间
+// axios.defaults.timeout = 180000   //响应时间
+axios.defaults.timeout = 600000   //响应时间
 axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8';        //配置请求头
 axios.defaults.baseURL = process.env.NODE_HOST;   //配置接口地址
 console.log(process.env)

+ 18 - 0
src/components/pages/aiAddCourse/addCourse.vue

@@ -8521,6 +8521,23 @@ export default {
       this.dialogVisibleMember = false;
       this.setMan();
     },
+    getTipsTemplate(){
+      if(this.templateid){
+        let params = {
+          id: this.templateid
+        }
+        this.ajax
+        .get(this.$store.state.api + "selectTipsTemplateById", params)
+        .then((res) => {
+          if(res.data[0].length){
+            this.tipsJson = res.data[0][0]
+            this.aiJson = JSON.parse(res.data[0][0].tips)
+            this.$forceUpdate();
+          }
+        })
+        .catch((err) => { });
+      }
+    },
     getTemplate() {
       this.ajax
         .get(this.$store.state.api + "getCourseTemplateT", "")
@@ -13404,6 +13421,7 @@ ${_this.aiCallBack}
     this.getClass();
     this.selectGrage();
     this.getTemplate();
+    this.getTipsTemplate();
     // this.selectType();
     this.selectEva();
     this.loading = false;

+ 3 - 1
src/components/pages/aiAddCourse/aiTips.vue

@@ -136,7 +136,9 @@ export default {
     cursor: pointer;
 }
 
-.at_text_detail {}
+.at_text_detail {
+    word-break: break-all;
+}
 
 .binfo_input {
     width: 100%;

+ 357 - 291
src/components/pages/aiAddCourse/templateDialog.vue

@@ -1,42 +1,31 @@
 <template>
-    <el-dialog :center="true" :visible.sync="dialogVisible" width="1200px" class="addTemplateDialog">
-			<!-- <div v-if="showDialog == true" class="a-dialog" v-el-drag-dialog> -->
-			<div class="a-d-top">
-				<div class="a-d-topTit"><div style="width: 136px">模板库</div></div>
-				<div>
-					<el-input
-						placeholder="请输入内容"
-						prefix-icon="el-icon-search"
-						v-model="input2"
-						clearable
-					>
-					</el-input>
-				</div>
-				<div class="a-d-t-right">
-					<span @click.stop="dialogVisible = false">×</span>
-				</div>
-			</div>
-			<div style="display: flex; height: 100%">
-				<div class="a-d-t-left">
-					<div class="itemTit">我的模块</div>
-					<div
-						:style="
-							tagIndex == index
-								? 'background: rgba(226, 238, 255, 1);color: rgba(54, 129, 252, 1)'
-								: ''
-						"
-						class="a-d-t-l-item"
-						v-for="(item, index) in dialogTagList"
-						:key="item.id"
-						@click.stop="tagIndex = index"
-					>
-						{{ item.name }}
-					</div>
-				</div>
-				<div class="a-d-box">
-					
-					<div
-						style="
+    <el-dialog :center="true" :visible.sync="dialogVisibleTemplate" width="1200px" class="addTemplateDialog">
+        <!-- <div v-if="showDialog == true" class="a-dialog" v-el-drag-dialog> -->
+        <div class="a-d-top">
+            <div class="a-d-topTit">
+                <div style="width: 136px">模板库</div>
+            </div>
+            <div>
+                <el-input placeholder="请输入内容" prefix-icon="el-icon-search" v-model="input2" clearable>
+                </el-input>
+            </div>
+            <div class="a-d-t-right">
+                <span @click.stop="close">×</span>
+            </div>
+        </div>
+        <div style="display: flex; height: calc(100% - 10px)">
+            <div class="a-d-t-left">
+                <div :style="tagIndex == item.id
+                    ? 'background: rgba(226, 238, 255, 1);color: rgba(54, 129, 252, 1)'
+                    : ''
+                    " class="a-d-t-l-item" v-for="(item) in dialogTagList" :key="item.id"
+                    @click.stop="setTagIndex(item.id)">
+                    {{ item.name }}
+                </div>
+            </div>
+            <div class="a-d-box">
+
+                <div style="
 							font-family: PingFang SC;
 							font-size: 16px;
 							font-weight: 600;
@@ -44,81 +33,85 @@
 							text-align: left;
 							margin: 20px 0;
 							margin-bottom: 10px;
-						"
-					>
-						推荐
-					</div>
-					<div class="a-d-b-subject">
-						<span :class="['a_d_b_s_btn',tagSubject==item?'a_d_b_s_ActiveBtn':'']" v-for="(item,index) in tagSubjectList" :key="index+'-'+tagIndex" @click.stop="tagSubject=item">{{ item }}</span>
-						<!-- <el-button :type="tagSubject==item?'primary':'default'" v-for="(item,index) in tagSubjectList" :key="index+'-'+tagIndex" @click.stop="tagSubject=item">{{ item }}</el-button> -->
-					</div>
-					<div style="display: flex; flex-wrap: wrap">
-						<div
-							class="a-d-b-item"
-							v-for="(item, index) in searchDataList"
-							:key="index"
-						>
-							<div class="a-d-b-i-top">
-								<img
-									style="height: 22px; width: 22px"
-									:src="
-										require('../../../../assets/icon/classroomObservation/digImg.svg')
-									"
-								/>
-								<div class="a-d-b-i-t-title">{{ item.title }}</div>
-							</div>
-							<div class="a-d-b-i-bottom">{{ item.brief }}</div>
-							<div class="a-d-b-i-bottomPer" style="display: block">
-								{{item.sum}}人已使用
-							</div>
-							<div class="a-d-b-i-bottomBtn" style="display: none">
-								<div
-									style="
+						">
+                    {{ tagname }}
+                </div>
+                <div style="display: flex; flex-wrap: wrap" v-loading="loading">
+                    <div class="a-d-b-item" v-for="(item, index) in searchDataList" :key="index">
+                        <div class="a-d-b-i-top">
+                            <img style="height: 22px; width: 22px" :src="require('../../../assets/icon/classroomObservation/digImg.svg')
+                                " />
+                            <div class="a-d-b-i-t-title">{{ item.name }}</div>
+                        </div>
+                        <div class="a-d-b-i-bottom">{{ item.detail }}</div>
+                        <div class="a-d-b-i-bottomBtn">
+                            <div style="
 										display: flex;
 										width: 100%;
 										justify-content: space-around;
-									"
-								>
-									<!-- <div class="a-d-b-i-t-btn">详情</div> -->
-									<div
-										class="a-d-b-i-t-btn1"
-										@click="addAnalysisItem(item.title)"
-									>
-										添加
-									</div>
-								</div>
-							</div>
-						</div>
-					</div>
-				</div>
-			</div>
-			<!-- </div> -->
-		</el-dialog>
+									">
+                                <div class="a-d-b-i-t-btn" v-if="item.userid == userid" style="margin-right: 10px;"
+                                    @click="deleteA(item.id)">删除</div>
+                                <div class="a-d-b-i-t-btn1" @click="open(item.id)">
+                                    使用
+                                </div>
+                            </div>
+                        </div>
+                    </div>
+                    <div v-if="!searchDataList.length" style="text-align: center;">暂无内容</div>
+                </div>
+            </div>
+        </div>
+        <!-- </div> -->
+    </el-dialog>
 </template>
-  
+
 <script>
 
 export default {
     props: {
-        dialogVisibleAiD: {
+        dialogVisibleTemplate: {
             type: Boolean,
             default: false
         },
+        userid: {
+            type: String
+        },
+        org: {
+            type: String
+        },
+        oid: {
+            type: String
+        }
     },
     data() {
         return {
             dialogTagList: [
-				{ id: 0, name: "社区模板" },
-				{ id: 1, name: "我的模板" },
-			],
+                { id: '2', name: "社区模板" },
+                { id: '1', name: "我的模板" },
+            ],
+            tagIndex: '1',
+            searchDataList: [],
+            input2: '',
+            loading: false
+        }
+    },
+    computed: {
+        tagname() {
+            return this.dialogTagList.filter((item) => {
+                return item.id == this.tagIndex
+            })[0].name
         }
     },
-    watch:{
-        dialogVisibleAiD(newValue, oldValue) {
-            if(newValue){
-            
+    watch: {
+        dialogVisibleTemplate(newValue, oldValue) {
+            if (newValue) {
+                this.getList();
             }
         },
+        input2(newValue) {
+            this.getList();
+        }
     },
     methods: {
         handleClose(done) {
@@ -126,84 +119,155 @@ export default {
             done();
         },
         close() {
-            this.$emit('update:dialogVisibleAiD', false)
+            this.$emit('update:dialogVisibleTemplate', false)
         },
-        confirm(){
-            this.$emit('update:dialogVisibleAiD', false)
+        confirm() {
+            this.$emit('update:dialogVisibleTemplate', false)
+        },
+        setTagIndex(index) {
+            this.tagIndex = index
+            this.getList();
+        },
+        open(id) {
+            this.$emit('goToCourseTemplate', id)
+        },
+        deleteA(id) {
+            let _this = this
+            _this.$confirm(
+                "确定删除此模板吗?",
+                "提示",
+                {
+                    confirmButtonText: "确定",
+                    cancelButtonText: "取消",
+                    type: "warning",
+                }
+            )
+                .then(() => {
+                    let params = [{
+                        id: id
+                    }]
+                    _this.ajax
+                        .post(_this.$store.state.api + "deleteTipsTemplate", params)
+                        .then((res) => {
+                            _this.$message.success("删除成功");
+                            _this.getList()
+                        })
+                        .catch((err) => {
+                            _this.$message.error("网络不佳");
+                            console.error(err);
+                        });
+                })
+                .catch(() => {
+                    return;
+                });
+
+
+        },
+        getList() {
+            this.loading = true
+            let params = {
+                userid: this.userid,
+                oid: this.oid,
+                org: this.org,
+                type: this.tagIndex,
+                name: this.input2
+            }
+            this.ajax
+                .get(this.$store.state.api + "selectTipsTemplate", params)
+                .then((res) => {
+                    this.loading = false
+                    this.searchDataList = res.data[0]
+                    if (!this.input2) {
+                        this.searchDataList.unshift({
+                            name: "默认模板",
+                            detail: "默认模板",
+                        });
+                    }
+                })
+                .catch((err) => {
+                    this.$message.error("网络不佳");
+                    console.error(err);
+                });
         }
     },
 }
 </script>
-  
+
 <style scoped>
-.addTemplateDialog >>> .el-dialog {
-	min-width: 1200px;
-
-	height: 700px;
-	box-shadow: 0px 0 8px 0px #555555;
-	border-radius: 8px;
-	background-color: #fff;
-	/* top: 0px; */
-	/* margin: 0 auto; */
-	overflow: hidden;
+.addTemplateDialog>>>.el-dialog {
+    min-width: 1200px;
+
+    height: 700px;
+    box-shadow: 0px 0 8px 0px #555555;
+    border-radius: 8px;
+    background-color: #fff;
+    /* top: 0px; */
+    /* margin: 0 auto; */
+    overflow: hidden;
 }
-.addTemplateDialog >>> .el-dialog__body {
-	height: 100%;
-	min-width: 1200px;
-	flex-shrink: 0;
-	box-sizing: border-box;
-	padding-bottom: 50px;
-	padding-top: 10px;
+
+.addTemplateDialog>>>.el-dialog__body {
+    height: 100%;
+    min-width: 1200px;
+    flex-shrink: 0;
+    box-sizing: border-box;
+    padding-bottom: 50px;
+    padding-top: 10px;
 }
-.addTemplateDialog >>> .el-dialog__header {
-	display: none;
+
+.addTemplateDialog>>>.el-dialog__header {
+    display: none;
 }
 
 
 .a-d-top {
-	/* background: #adadad; */
-	display: flex;
-	flex-direction: row;
-	flex-wrap: nowrap;
-	align-items: center;
-	justify-content: space-between;
-	height: 54px;
-	border-radius: 8px 8px 0 0;
-	user-select: none;
-	border-bottom: 1px #ccc solid;
+    /* background: #adadad; */
+    display: flex;
+    flex-direction: row;
+    flex-wrap: nowrap;
+    align-items: center;
+    justify-content: space-between;
+    height: 54px;
+    border-radius: 8px 8px 0 0;
+    user-select: none;
+    border-bottom: 1px #ccc solid;
 }
-.a-d-top >>> .el-input__inner {
-	width: 320px;
-	height: 32px;
+
+.a-d-top>>>.el-input__inner {
+    width: 320px;
+    height: 32px;
 }
-.a-d-top >>> .el-input__icon {
-	line-height: 32px;
+
+.a-d-top>>>.el-input__icon {
+    line-height: 32px;
 }
+
 .a-d-topTit {
-	width: 171px;
-	height: 32px;
-	display: flex;
-	align-items: center;
-	font-family: PingFang SC;
-	box-sizing: border-box;
-	padding: 5px;
-	line-height: 22px;
-	justify-content: center;
-	/* text-align: left; */
+    width: 171px;
+    height: 32px;
+    display: flex;
+    align-items: center;
+    font-family: PingFang SC;
+    box-sizing: border-box;
+    padding: 5px;
+    line-height: 22px;
+    justify-content: center;
+    /* text-align: left; */
 }
+
 .a-d-t-left {
-	width: 200px;
-	height: 100%;
-	display: flex;
-	align-items: center;
-	flex-direction: column;
-	justify-content: flex-start;
-	box-sizing: border-box;
-	padding-left: 5px;
+    width: 200px;
+    height: 100%;
+    display: flex;
+    align-items: center;
+    flex-direction: column;
+    justify-content: flex-start;
+    box-sizing: border-box;
+    padding: 15px 0 0 0;
 }
 
 .a-d-t-l-item {
-	/* width: auto;
+    /* width: auto;
 	height: 90%;
 	display: flex;
 	justify-content: center;
@@ -213,96 +277,99 @@ export default {
 	background-color: #d4d9da;
 	margin-right: 3px;
 	cursor: pointer; */
-	cursor: pointer;
-	width: 136px;
-	height: 32px;
-	display: flex;
-	align-items: center;
-	border-radius: 5px;
-	font-family: PingFang SC;
-	box-sizing: border-box;
-	padding: 5px;
-	font-size: 14px;
-	font-weight: 600;
-	line-height: 22px;
-	text-align: left;
-	margin-bottom: 20px;
+    cursor: pointer;
+    width: 136px;
+    height: 32px;
+    display: flex;
+    align-items: center;
+    border-radius: 5px;
+    font-family: PingFang SC;
+    box-sizing: border-box;
+    padding: 5px;
+    font-size: 14px;
+    font-weight: 600;
+    line-height: 22px;
+    text-align: left;
+    margin-bottom: 20px;
 }
 
 .a-d-t-l-item:hover {
-	background-color: white;
+    background-color: white;
 }
 
 .a-d-t-right {
-	width: 40px;
-	height: 40px;
-	margin-right: 10px;
-	display: flex;
-	justify-content: center;
-	align-items: center;
-	color: black !important;
+    width: 40px;
+    height: 40px;
+    margin-right: 10px;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    color: black !important;
 }
 
-.a-d-t-right > span {
-	width: 25px;
-	height: 25px;
-	border-radius: 25px;
-	display: flex;
-	align-items: center;
-	justify-content: center;
-	/* align-items: center; */
-	font-size: 22px;
-	color: #fff;
-	/* background-color: #adadad; */
-	cursor: pointer;
-	/* background-color: #e6e6e6; */
-	color: #adadad;
+.a-d-t-right>span {
+    width: 25px;
+    height: 25px;
+    border-radius: 25px;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    /* align-items: center; */
+    font-size: 22px;
+    color: #fff;
+    /* background-color: #adadad; */
+    cursor: pointer;
+    /* background-color: #e6e6e6; */
+    color: #adadad;
 }
 
 .a-d-box {
-	width: 100%;
-	height: 100%;
-	background-color: #f0f2f5;
-	overflow: scroll;
-	overflow-x: hidden;
-	box-sizing: border-box;
-	padding: 15px;
-	padding-bottom: 50px;
+    width: 100%;
+    height: 100%;
+    background-color: #f0f2f5;
+    overflow: scroll;
+    overflow-x: hidden;
+    box-sizing: border-box;
+    padding: 15px;
+    padding-bottom: 50px;
 }
 
 .a-d-b-item {
-	width: 22%;
-	height: 200px;
-	display: flex;
-	flex-direction: column;
-	background-color: #fff;
-	border-radius: 10px;
-	padding: 15px;
-	float: left;
-	box-sizing: border-box;
-	margin-bottom: 10px;
-	margin-right: 20px;
-	/* position: relative; */
+    width: 22%;
+    height: 200px;
+    display: flex;
+    flex-direction: column;
+    background-color: #fff;
+    border-radius: 10px;
+    padding: 15px;
+    float: left;
+    box-sizing: border-box;
+    margin-bottom: 10px;
+    margin-right: 20px;
+    /* position: relative; */
 }
-.a-d-b-item:hover .a-d-b-i-bottomBtn {
+
+/* .a-d-b-item:hover .a-d-b-i-bottomBtn {
 	display: block !important;
 }
 .a-d-b-item:hover .a-d-b-i-bottomPer {
 	display: none !important;
-}
+} */
 .a-d-b-i-top {
-	width: 100%;
-	/* height: 50%; */
-	height: 20px;
-	margin-bottom: 15px;
-	display: flex;
-	align-items: center;
-	/* justify-content: space-between; */
+    width: 100%;
+    /* height: 50%; */
+    height: 20px;
+    margin-bottom: 15px;
+    display: flex;
+    align-items: center;
+    /* justify-content: space-between; */
 }
-.a-d-b-i-top > img {
-	width: 35px;
-	height: 35px;
+
+.a-d-b-i-top>img {
+    width: 35px;
+    height: 35px;
 }
+
 /* .a-d-b-i-top>div{ */
 /* width: auto;
 	height: 35px;
@@ -313,98 +380,97 @@ export default {
 /* } */
 
 .a-d-b-i-t-title {
-	width: 100%;
-	height: 35px;
-	display: block;
-	align-items: center;
-	box-sizing: border-box;
-	padding: 0 10px;
-	text-overflow: ellipsis;
-	overflow: hidden;
-	word-break: break-all;
-	white-space: nowrap;
-	line-height: 35px;
-	/* display: -webkit-box;
+    width: 100%;
+    height: 35px;
+    display: block;
+    align-items: center;
+    box-sizing: border-box;
+    padding: 0 10px;
+    text-overflow: ellipsis;
+    overflow: hidden;
+    word-break: break-all;
+    white-space: nowrap;
+    line-height: 35px;
+    /* display: -webkit-box;
 	-webkit-box-orient: vertical;
 	-webkit-line-clamp: 1;
 	overflow: hidden; */
 }
 
 .a-d-b-i-bottom {
-	width: 100%;
-	flex: 1;
-	overflow: hidden;
-	/* max-height: 186px; */
-	font-size: 14px;
-	-webkit-line-clamp: 5;
-	line-height: 20px;
-	display: -webkit-box;
-	-webkit-box-orient: vertical;
-	overflow: hidden;
-	text-overflow: ellipsis;
+    width: 100%;
+    flex: 1;
+    overflow: hidden;
+    /* max-height: 186px; */
+    font-size: 14px;
+    -webkit-line-clamp: 5;
+    line-height: 20px;
+    display: -webkit-box;
+    -webkit-box-orient: vertical;
+    overflow: hidden;
+    text-overflow: ellipsis;
 }
 
 .a-d-b-i-t-btn {
-	font-size: 14px;
-	box-sizing: border-box;
-	padding: 8px 25px;
-	border: 1px solid rgba(54, 129, 252, 1);
-	border-radius: 5px;
-	color: rgba(54, 129, 252, 1);
-	display: flex;
-	justify-content: center;
-	align-items: center;
-	cursor: pointer;
+    font-size: 14px;
+    width: 98%;
+    box-sizing: border-box;
+    padding: 8px 25px;
+    border: 1px solid rgb(247, 30, 30);
+    border-radius: 5px;
+    color: rgb(247, 30, 30);
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    cursor: pointer;
 }
+
 .a-d-b-i-t-btn1 {
-	font-size: 14px;
-	width: 98%;
-	box-sizing: border-box;
-	padding: 8px 25px;
-	border: 1px solid rgba(54, 129, 252, 1);
-	border-radius: 5px;
-	background-color: rgba(54, 129, 252, 1);
-	display: flex;
-	color: #fff;
-	justify-content: center;
-	align-items: center;
-	cursor: pointer;
+    font-size: 14px;
+    width: 98%;
+    box-sizing: border-box;
+    padding: 8px 25px;
+    border: 1px solid rgba(54, 129, 252, 1);
+    border-radius: 5px;
+    background-color: rgba(54, 129, 252, 1);
+    display: flex;
+    color: #fff;
+    justify-content: center;
+    align-items: center;
+    cursor: pointer;
 }
 
 .itemTit {
-	width: 136px;
-	height: 32px;
-	padding: 5px 8px 5px 8px;
-	gap: 8px;
-	opacity: 0px;
-	margin: 20px 0;
-	margin-bottom: 10px;
-	border-bottom: 1px #ccc solid;
+    width: 136px;
+    height: 32px;
+    padding: 5px 8px 5px 8px;
+    gap: 8px;
+    opacity: 0px;
+    margin: 20px 0;
+    margin-bottom: 10px;
+    border-bottom: 1px #ccc solid;
 }
 
-.a-d-b-subject{
-	margin: 20px 0 20px 0;
+.a-d-b-subject {
+    margin: 20px 0 20px 0;
 }
 
-.a_d_b_s_btn{
-	/* box-sizing: border-box; */
-	padding: 5px 10px;
-	border-radius: 4px;
-	border: solid 1px #3681FC;
-	color: #3681FC;
-	background-color: white;
-	margin-right: 10px;
-	cursor: pointer;
-	transition: .3s;
+.a_d_b_s_btn {
+    /* box-sizing: border-box; */
+    padding: 5px 10px;
+    border-radius: 4px;
+    border: solid 1px #3681FC;
+    color: #3681FC;
+    background-color: white;
+    margin-right: 10px;
+    cursor: pointer;
+    transition: .3s;
 }
 
-.a_d_b_s_ActiveBtn{
-	background-color: #3681FC;
-	color: white;
+.a_d_b_s_ActiveBtn {
+    background-color: #3681FC;
+    color: white;
 }
 
-.a-d-b-i-t-btn:hover {
-	background-color: rgba(54, 129, 252, 1);
-	color: #fff;
-}
+
 </style>

+ 9 - 1
src/components/pages/aiAddCourse/tipsDialog.vue

@@ -58,7 +58,15 @@ export default {
     watch: {
         dialogVisibleTips(newValue, oldValue) {
             if (newValue) {
-
+                this.title = this.tipsJson.name
+                this.detail = this.tipsJson.detail
+                this.radio = parseInt(this.tipsJson.open)
+            }else {
+                this.$emit('update:tipsJson', {
+                    name:this.title,
+                    detail:this.detail,
+                    open:this.radio,
+                })
             }
         },
     },

+ 25 - 3
src/components/pages/course.vue

@@ -32,7 +32,8 @@
               <!-- <div type="primary" @click="goToCourse2()">任务式课程</div> -->
               <!-- <div type="primary" @click="goToCourse()">阶段式课程</div> -->
               <div type="primary" @click="goToCourse4()">阶段式课程</div>
-              <div type="primary" @click="goToCourse5()" v-show="org == '1973f6c7-1561-11ee-91d8-005056b86db5' || org == '777559d2-7239-11ee-b98c-005056b86db5' || org == '884c5665-a453-46f3-b7b6-01d575290aa9'">AI模式</div>
+              <!-- v-show="org == '1973f6c7-1561-11ee-91d8-005056b86db5' || org == '777559d2-7239-11ee-b98c-005056b86db5' || org == '884c5665-a453-46f3-b7b6-01d575290aa9'" -->
+              <div type="primary" @click="oepnTemplate()" >AI模式</div>
             </div>
           </button>
         </div>
@@ -392,6 +393,7 @@
       </span>
     </el-dialog>
 		<shareDialog ref="shareDialogRef"/>
+    <templateDialog :dialogVisibleTemplate.sync="dialogVisibleTemplate" :userid="userid" :org="org" :oid="oid" @goToCourseTemplate="goToCourseTemplate"></templateDialog>
   </div>
 </template>
 
@@ -400,8 +402,10 @@ import "../../common/aws-sdk-2.235.1.min";
 import EditorBar from "../../components/tools/wangEnduit";
 import CourseProblem from "./components/courseProblem";
 import shareDialog from './dialog/shareDialog.vue'
+import templateDialog from "./aiAddCourse/templateDialog.vue";
+
 export default {
-  components: { EditorBar, CourseProblem,shareDialog },
+  components: { EditorBar, CourseProblem,shareDialog,templateDialog },
   data() {
     return {
       itemCount: 1,
@@ -451,7 +455,8 @@ export default {
       typed: "",
       pTypeCheck: [],
       pTypeCheckName: [],
-      btnDisplay: false
+      btnDisplay: false,
+      dialogVisibleTemplate: false,
     };
   },
   methods: {
@@ -582,6 +587,23 @@ export default {
       }
       // this.$router.push(path);
     },
+    oepnTemplate(){
+      this.dialogVisibleTemplate = true;
+    },
+    goToCourseTemplate(tid){
+      this.$router.push(
+          "/aiAddCourse?userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&role=" +
+          this.role +
+          "&templateid=" +
+          tid 
+        );
+    },
     goToCourse5(courseId) {
       if (courseId) {
         this.$router.push(

Nem az összes módosított fájl került megjelenítésre, mert túl sok fájl változott