feat:增加学习路径id以及项目id

This commit is contained in:
李晓鸽
2022-11-04 15:50:19 +08:00
13 changed files with 5397 additions and 4700 deletions

View File

@@ -76,7 +76,7 @@
</div>
</a-drawer>
</template>
<script>
<script>
import { reactive, toRefs, ref } from "vue";
import * as api from "../../api/indexExternalChain";
import * as apiTask from "../../api/indexTaskadd";
@@ -106,6 +106,10 @@ export default {
type: Boolean,
default: false,
},
routerId: {
type: Number,
default: null,
},
},
setup(props, ctx) {
const state = reactive({
@@ -115,6 +119,7 @@ export default {
});
const closeDrawer = () => {
ctx.emit("update:addrefVisible", false);
console.log("props", props.routerId);
state.inputV2 = "";
state.inputV1 = "";
state.textV1 = "";
@@ -180,7 +185,7 @@ export default {
},
};
</script>
<style lang="scss">
<style lang="scss">
.ant-table-striped :deep(.table-striped) td {
background-color: #fafafa !important;
}
@@ -320,4 +325,3 @@ export default {
}
}
</style>