Merge remote-tracking branch 'origin/master'
Showing
3 changed files
with
13 additions
and
11 deletions
| ... | @@ -16,7 +16,7 @@ page { | ... | @@ -16,7 +16,7 @@ page { |
| 16 | .w80{width: 80%!important;} | 16 | .w80{width: 80%!important;} |
| 17 | .w100{width: 100%!important;} | 17 | .w100{width: 100%!important;} |
| 18 | .mt0{margin-top: 0 !important;} | 18 | .mt0{margin-top: 0 !important;} |
| 19 | .mt10{margin-top: 10px !important;} | 19 | .mt10{margin-top: 10rpx !important;} |
| 20 | .mt20{margin-top: 20px !important;} | 20 | .mt20{margin-top: 20px !important;} |
| 21 | .must{color: #AD181F;font-size: 24rpx;} | 21 | .must{color: #AD181F;font-size: 24rpx;} |
| 22 | .vipData .w50{width: 45%;} | 22 | .vipData .w50{width: 45%;} | ... | ... |
| ... | @@ -9,20 +9,17 @@ | ... | @@ -9,20 +9,17 @@ |
| 9 | <view class="appList"> | 9 | <view class="appList"> |
| 10 | <view v-for="(item,index) in list" :key="item.examId || index" class="appItem"> | 10 | <view v-for="(item,index) in list" :key="item.examId || index" class="appItem"> |
| 11 | <view class="status" @click="goDetail(item)"> | 11 | <view class="status" @click="goDetail(item)"> |
| 12 | <text v-if="item.status=='0'" class="text-primary">{{ item.statusStr }}</text> | 12 | <text v-if="item.status=='0'" class="text-primary-bg">{{ item.statusStr }}</text> |
| 13 | <text v-if="item.status=='1'" class="text-primary">{{ item.statusStr }}</text> | 13 | <text v-if="item.status=='1'" class="text-primary-bg">{{ item.statusStr }}</text> |
| 14 | <text v-if="item.status=='2'" class="text-success">{{ item.statusStr }}</text> | 14 | <text v-if="item.status=='2'" class="text-success-bg">{{ item.statusStr }}</text> |
| 15 | <text v-if="item.status=='3'" class="text-danger">{{ item.statusStr }}</text> | 15 | <text v-if="item.status=='3'" class="text-danger-bg">{{ item.statusStr }}</text> |
| 16 | <text v-if="item.status=='4'" class="text-warning">{{ item.statusStr }}</text> | 16 | <text v-if="item.status=='4'" class="text-warning-bg">{{ item.statusStr }}</text> |
| 17 | </view> | 17 | </view> |
| 18 | <view v-if="item.status!='0'&&item.submitTime" class="date">提交时间:{{ item.submitTime }}</view> | 18 | <view v-if="item.status!='0'&&item.submitTime" class="date">提交时间:{{ item.submitTime }}</view> |
| 19 | <view class="mt0" @click="goDetail(item)"> | 19 | <view class="mt0" @click="goDetail(item)"> |
| 20 | <text class="text-primary">{{ item.examCode }}</text> | 20 | <text class="text-primary">{{ item.examCode }}</text> |
| 21 | </view> | 21 | </view> |
| 22 | <view class="name mt0" @click="goDetail(item)">{{ item.name }}</view> | 22 | <view class="name mt10" @click="goDetail(item)">{{ item.name }}</view> |
| 23 | <view class="pp esp">申请单位:{{ item.memberName }}</view> | ||
| 24 | <view class="pp esp">考级日期:{{ item.startTime?.substring(0, 16) }} 至 {{ item.endTime?.substring(0, 16) }} | ||
| 25 | </view> | ||
| 26 | <view class="flexbox" @click="goDetail(item)"> | 23 | <view class="flexbox" @click="goDetail(item)"> |
| 27 | <view> | 24 | <view> |
| 28 | 申请日期 | 25 | 申请日期 |
| ... | @@ -38,6 +35,10 @@ | ... | @@ -38,6 +35,10 @@ |
| 38 | <view>{{ item.pass }}</view> | 35 | <view>{{ item.pass }}</view> |
| 39 | </view> | 36 | </view> |
| 40 | </view> | 37 | </view> |
| 38 | <view class="pp esp">申请单位:{{ item.memberName }}</view> | ||
| 39 | <view class="pp esp">考级日期:{{ item.startTime?.substring(0, 16) }} 至 {{ item.endTime?.substring(0, 16) }} | ||
| 40 | </view> | ||
| 41 | |||
| 41 | <view v-if="item.status=='0'||item.status=='3'||item.status=='4'||item.status=='9'" class="func"> | 42 | <view v-if="item.status=='0'||item.status=='3'||item.status=='4'||item.status=='9'" class="func"> |
| 42 | <button :disabled="item.status=='1'||item.status=='2'||item.status=='3'" | 43 | <button :disabled="item.status=='1'||item.status=='2'||item.status=='3'" |
| 43 | @click="handleDelete(item)">删除 | 44 | @click="handleDelete(item)">删除 | ... | ... |
| ... | @@ -370,7 +370,8 @@ const showConfirm = ref(false) | ... | @@ -370,7 +370,8 @@ const showConfirm = ref(false) |
| 370 | }; | 370 | }; |
| 371 | 371 | ||
| 372 | const goToWebView = (type) => { | 372 | const goToWebView = (type) => { |
| 373 | const url = "https://member.taekwondo.org.cn/#/authAccurate?type=" + type | 373 | // const url = "https://member.taekwondo.org.cn/#/authAccurate?type=" + type |
| 374 | const url = "http://tk001.wxjylt.com/pc.html#/authAccurate?type=" + type | ||
| 374 | uni.navigateTo({ | 375 | uni.navigateTo({ |
| 375 | url: "/pages/webview/webview?url=" + encodeURIComponent(url) | 376 | url: "/pages/webview/webview?url=" + encodeURIComponent(url) |
| 376 | }); | 377 | }); | ... | ... |
-
Please register or sign in to post a comment