|
@@ -97,9 +97,10 @@
|
|
|
>
|
|
|
</div>
|
|
|
<!-- fromPlat:1云学堂 2智慧考场 -->
|
|
|
+ <!-- seatNumber 有座位号就显示roomAddress,否则显示applySiteAddress -->
|
|
|
<div class="desc-list__item">
|
|
|
考试地点:<span class="note">{{
|
|
|
- item.fromPlat == 2 ? (item.roomAddress || '') : (item.applySiteAddress || '')
|
|
|
+ item.seatNumber ? (item.roomAddress || '') : (item.applySiteAddress || '')
|
|
|
}}</span>
|
|
|
</div>
|
|
|
<div class="desc-list__item">
|
|
@@ -310,7 +311,7 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- 疫情承诺书 -->
|
|
|
- <sign-commit :appointModal.sync="appointModal" :commitItem="commitItem"></sign-commit>
|
|
|
+ <sign-commit :appointModal.sync="appointModal" :commitItem="commitItem" @successSign="successSign"></sign-commit>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -379,6 +380,11 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
...mapActions(["setSystemTime"]),
|
|
|
+ // 签署成功刷新列表
|
|
|
+ successSign() {
|
|
|
+ console.log('成功--')
|
|
|
+ this.getCount()
|
|
|
+ },
|
|
|
getCount() {
|
|
|
this.$request
|
|
|
.getApplylist({
|