提交 483bda12 编写于 作者: alex.zhang's avatar alex.zhang

Merge branch 'dev-yqLive-20200611' of...

Merge branch 'dev-yqLive-20200611' of 192.168.110.53:com.pica.cloud.education.frontend/pica.cloud.web-education-admin into dev-yqLive-20200611
此差异已折叠。
...@@ -17,12 +17,14 @@ ...@@ -17,12 +17,14 @@
<el-button v-if="active>=1" size="small" type="primary" @click="complete">完成</el-button> <el-button v-if="active>=1" size="small" type="primary" @click="complete">完成</el-button>
</el-col> </el-col>
</el-row> </el-row>
<div class="first-step" v-if="active == 0"> <div class="first-step" v-if="active === 0">
<p class="p-title">基础信息</p> <p class="p-title">基础信息</p>
<base-info :formData="formData" @returnTypeData="returnTypeData"> <base-info :formData="formData" @returnTypeData="returnTypeData">
</base-info> </base-info>
</div> </div>
<div class="second-step" v-else-if="active === 1">
<organzation></organzation>
</div>
</div> </div>
</div> </div>
</template> </template>
...@@ -30,11 +32,13 @@ ...@@ -30,11 +32,13 @@
let vm = null; let vm = null;
import BreadCrumb from "@/components/breadcrumb.vue"; import BreadCrumb from "@/components/breadcrumb.vue";
import BaseInfo from '@/components/yqrange/baseinfo.vue'; import BaseInfo from '@/components/yqrange/baseinfo.vue';
import Organzation from '@/components/yqrange/organzation.vue';
export default { export default {
name: "create-range", name: "create-range",
components: { components: {
BreadCrumb, BreadCrumb,
BaseInfo BaseInfo,
Organzation
}, },
data() { data() {
return { return {
...@@ -70,7 +74,6 @@ ...@@ -70,7 +74,6 @@
console.log("add"); console.log("add");
} else { } else {
console.log("edit"); console.log("edit");
this.stepData = [false, true, false];
} }
}, },
...@@ -87,6 +90,7 @@ ...@@ -87,6 +90,7 @@
this.commitQuanziInfo(); this.commitQuanziInfo();
} else { } else {
console.log("edit"); console.log("edit");
this.active = 1
this.stepData = [false, true]; this.stepData = [false, true];
} }
}, },
......
...@@ -511,6 +511,7 @@ ...@@ -511,6 +511,7 @@
this.updatedTree = true; this.updatedTree = true;
}, },
getTreeCheck() { getTreeCheck() {
debugger
//重构归并树 //重构归并树
let checkedTree = operationData.getSimpleCheckedNodes( let checkedTree = operationData.getSimpleCheckedNodes(
this.$refs.tree.store this.$refs.tree.store
......
...@@ -142,6 +142,10 @@ ...@@ -142,6 +142,10 @@
editLive(row) { editLive(row) {
this.$router.push({ this.$router.push({
path: '/create-live', path: '/create-live',
query: {
// rtcId: "1"
rtcId: row.id
}
}) })
}, },
//删除直播 //删除直播
......
...@@ -153,16 +153,13 @@ export default { ...@@ -153,16 +153,13 @@ export default {
}, },
//编辑 //编辑
editRange(row) { editRange(row) {
// let enterType = 2;//1:add 2 edit let enterType = 2;//1:add 2 edit
// this.$router.push({
// path: `/create-range?enterType`,
// query:{
// id:row.id,
// enterType:enterType
// }
// })
this.$router.push({ this.$router.push({
path:'/edit-range' path: `/create-range?enterType`,
query:{
id:row.id,
enterType:enterType
}
}) })
}, },
//解散圈子 //解散圈子
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册