mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 04:46:46 +08:00
fix:bug
This commit is contained in:
@@ -161,7 +161,10 @@
|
||||
</div>
|
||||
<div class="inname">归属组织</div>
|
||||
<div class="select in">
|
||||
<OrgClass v-model:value="organizationSelectId" v-model:name="organizationSelectName"></OrgClass>
|
||||
<OrgClass
|
||||
v-model:value="organizationSelectId"
|
||||
v-model:name="organizationSelectName"
|
||||
></OrgClass>
|
||||
</div>
|
||||
<!-- <div class="in">
|
||||
<a-input
|
||||
@@ -276,7 +279,10 @@
|
||||
</div>
|
||||
<div class="inname">归属组织</div>
|
||||
<div class="select in">
|
||||
<OrgClass v-model:value="organizationSelectId" v-model:name="organizationSelectName"></OrgClass>
|
||||
<OrgClass
|
||||
v-model:value="organizationSelectId"
|
||||
v-model:name="organizationSelectName"
|
||||
></OrgClass>
|
||||
</div>
|
||||
<!-- <div class="in">
|
||||
<a-input
|
||||
@@ -376,7 +382,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="modalMain">
|
||||
<div class="projectname">产品经理上升路径</div>
|
||||
<div class="projectname">{{ releasePathName }}</div>
|
||||
<!-- <div class="projecttime">
|
||||
<span class="timeti">路径时间:</span
|
||||
><span class="timeme">2022/08/01-2022/08/30</span>
|
||||
@@ -784,6 +790,7 @@ export default {
|
||||
endTime: null, //结束时间
|
||||
//发布---------------
|
||||
releasePathId: null, //发布路径id
|
||||
releasePathName: null, //发布路径的名称
|
||||
routeStudentsNum: 0, //学员总数
|
||||
routeChapters: 0, //关卡总数
|
||||
routeTasks: 0, //任务总数
|
||||
@@ -842,11 +849,13 @@ export default {
|
||||
state.pathBg = item.dictValue;
|
||||
};
|
||||
//发布弹窗
|
||||
const showPub = (routerId) => {
|
||||
const showPub = (router) => {
|
||||
console.log("router", router);
|
||||
state.pub = true;
|
||||
state.releasePathId = routerId;
|
||||
state.releasePathId = router.id;
|
||||
state.releasePathName = router.manager;
|
||||
api
|
||||
.getLearnCount(routerId)
|
||||
.getLearnCount(router.id)
|
||||
.then((res) => {
|
||||
if (res.status === 200) {
|
||||
// console.log("获取关卡、任务、学员统计数据", res.data);
|
||||
@@ -1103,7 +1112,7 @@ export default {
|
||||
class="jc"
|
||||
onClick={() => {
|
||||
// console.log("text.record.", text.record);
|
||||
showPub(text.record.id);
|
||||
showPub(text.record);
|
||||
}}
|
||||
>
|
||||
发布
|
||||
|
||||
Reference in New Issue
Block a user