Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
SunWuyuan committed Sep 22, 2024
1 parent 13f409a commit b64b5fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/ProjectRunner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div v-if='type === "python"'>
<div style="width: 100%; height: 100%;aspect-ratio: 4 / 3;"><iframe :src="pythonplayer" scrolling="no"
frameborder="0" style="width: 100%; height: 100%;"></iframe></div>
</div>
</div><br/>
<v-expansion-panels v-if='type != "scratch"'>
<v-expansion-panel>
<v-expansion-panel-title>原始数据</v-expansion-panel-title>
Expand Down Expand Up @@ -56,7 +56,7 @@ export default {
this.watchedid = newVal
this.code = await request({
url: '/project/getproject/src/' + this.id,
url: '/project/' + this.id+'/source/',
method: "get",
})
console.log(this.code)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/projects/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
search.source = '';
search.description = '';
search.title = '';
search.state = '';
search.state = 'public';
onPageChange();
">重置</v-btn></v-col></v-row>
Expand Down

0 comments on commit b64b5fe

Please sign in to comment.