You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
372 B
19 lines
372 B
const app = getApp();
|
|
Component({
|
|
properties: {
|
|
data:Object
|
|
},
|
|
data: {
|
|
|
|
},
|
|
|
|
methods: {
|
|
enterDetail(){
|
|
let { work_id, homework_id, un_commit_work,name} = this.data.data;
|
|
app.navigateTo({
|
|
url: `{common-homework}?work_id=${work_id}&homework_id=${homework_id}&un_commit_work=${un_commit_work}&homework_name=${name}`
|
|
})
|
|
}
|
|
}
|
|
})
|