564e3119 by lttnew
2 parents c24dbde7 cf0006a0
...@@ -426,14 +426,14 @@ function getChosedStudentList() { ...@@ -426,14 +426,14 @@ function getChosedStudentList() {
426 } else { 426 } else {
427 d.levelRecommend = '9' 427 d.levelRecommend = '9'
428 } 428 }
429 429
430 // 原级别是一级时,levelNew 默认为空,不使用推荐值 430 // 原级别是一级时,levelNew 默认为空,不使用推荐值
431 if (d.levelOld === '1') { 431 if (d.levelOld === '1') {
432 d.levelNew = '' 432 d.levelNew = ''
433 } else if (!d.levelNew) { 433 } else if (!d.levelNew) {
434 d.levelNew = d.levelRecommend 434 d.levelNew = d.levelRecommend
435 } 435 }
436 436
437 if (!d.isPass) { 437 if (!d.isPass) {
438 d.isPass = '1' 438 d.isPass = '1'
439 } 439 }
...@@ -545,22 +545,24 @@ function submitForm2(flag) { ...@@ -545,22 +545,24 @@ function submitForm2(flag) {
545 return 545 return
546 } 546 }
547 } 547 }
548
549 if (flag === 1) { 548 if (flag === 1) {
550 if (infoList.value.length == 0) { 549 if (infoList.value.length == 0) {
551 uni.showToast({title: '请选择考生', icon: 'none'}) 550 uni.showToast({title: '请选择考生', icon: 'none'})
552 return 551 return
553 } 552 }
554 553
555 uni.showModal({ 554 uni.showModal({
556 title: '提示', 555 title: '提示',
557 content: `请确认人员照片是否已更新?`, 556 content: `请确认人员照片是否已更新?`,
558 success: function (res) { 557 success: function (res) {
559 if (res.confirm) { 558 if (res.confirm) {
560 saveStep2(flag).then(() => { 559 // saveStep2(flag).then(() => {
561 uni.navigateTo({ 560 // uni.navigateTo({
562 url: `/level/paymentDetail?examId=${form.value.examId}` 561 // url: `/level/paymentDetail?examId=${form.value.examId}`
563 }) 562 // })
563 // })
564 uni.navigateTo({
565 url: `/level/paymentDetail?examId=${form.value.examId}`
564 }) 566 })
565 } 567 }
566 } 568 }
...@@ -887,7 +889,7 @@ function handleDelete(row) { ...@@ -887,7 +889,7 @@ function handleDelete(row) {
887 position: relative; 889 position: relative;
888 z-index: 99; 890 z-index: 99;
889 } 891 }
890 892
891 .exam-level-select { 893 .exam-level-select {
892 position: relative; 894 position: relative;
893 z-index: 999; 895 z-index: 999;
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
52 52
53 <script setup> 53 <script setup>
54 import {ref} from 'vue' 54 import {ref} from 'vue'
55 import {onLoad,onShow, onReachBottom} from '@dcloudio/uni-app' 55 import {onLoad, onShow, onReachBottom} from '@dcloudio/uni-app'
56 import {getMyRecentExam} from '@/common/api' 56 import {getMyRecentExam} from '@/common/api'
57 57
58 const app = getApp() 58 const app = getApp()
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!