Commit 23df5cc0 authored by youjie's avatar youjie

no message

parent 6fe36e24
...@@ -65,15 +65,19 @@ ...@@ -65,15 +65,19 @@
export default { export default {
props: ["jobData"], props: ["jobData"],
components: {}, components: {},
setup() { setup(props) {
let data = reactive({ let data = reactive({
showPhone: false, showPhone: false,
showLogin: true, //多次点击 showLogin: true, //多次点击
jobData: props.jobData,
userData:{}
}); });
let methods = { let methods = {
scoreDetails() { scoreDetails() {
data.userData = uni.getStorageSync('userInfo');
uni.navigateTo({ 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