Commit 23df5cc0 authored by youjie's avatar youjie

no message

parent 6fe36e24
......@@ -65,15 +65,19 @@
export default {
props: ["jobData"],
components: {},
setup() {
setup(props) {
let data = reactive({
showPhone: false,
showLogin: true, //多次点击
jobData: props.jobData,
userData:{}
});
let methods = {
scoreDetails() {
data.userData = uni.getStorageSync('userInfo');
uni.navigateTo({
url: '/pages/index/scoreDetails'
url: '/pages/index/scoreDetails?examId=' + data.jobData.DataObj.ExamId + '&stuId=' + data.userData.Id
});
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment