|
|
|
@ -63,9 +63,20 @@ export default { |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
//我的预约列表 |
|
|
|
//我的预约列表 |
|
|
|
queryMyRecord() { |
|
|
|
queryMyRecord() { |
|
|
|
|
|
|
|
this.$toast.loading({ |
|
|
|
|
|
|
|
message: '加载中', |
|
|
|
|
|
|
|
duration: 0, |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
try { |
|
|
|
myRecord("", this.userInfo.papersnumber, this.current, this.size).then(res => { |
|
|
|
myRecord("", this.userInfo.papersnumber, this.current, this.size).then(res => { |
|
|
|
|
|
|
|
this.$toast.clear(); |
|
|
|
this.examArr = res.data.records; |
|
|
|
this.examArr = res.data.records; |
|
|
|
|
|
|
|
}, err => { |
|
|
|
|
|
|
|
this.$toast.clear(); |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
} catch (error) { |
|
|
|
|
|
|
|
this.$toast.clear(); |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
//日期格式化 |
|
|
|
//日期格式化 |
|
|
|
doDateFormatter(date) { |
|
|
|
doDateFormatter(date) { |
|
|
|
@ -76,10 +87,10 @@ export default { |
|
|
|
if (row.apmStatus !== 0) { |
|
|
|
if (row.apmStatus !== 0) { |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
lightAppJssdk.notification.alert({ |
|
|
|
lightAppJssdk.notification.confirm({ |
|
|
|
message: "是否取消该体检项目", |
|
|
|
message: "是否取消该体检项目", |
|
|
|
title: "提示",//可传空 |
|
|
|
title: "提示",//可传空 |
|
|
|
buttonName: "确认", |
|
|
|
buttonLabels: ['确定', '取消'], |
|
|
|
success: function (data) { |
|
|
|
success: function (data) { |
|
|
|
//onSuccess将在点击button之后回调 |
|
|
|
//onSuccess将在点击button之后回调 |
|
|
|
/*回调*/ |
|
|
|
/*回调*/ |
|
|
|
@ -106,19 +117,23 @@ export default { |
|
|
|
height: 100%; |
|
|
|
height: 100%; |
|
|
|
background: #f9f9f9; |
|
|
|
background: #f9f9f9; |
|
|
|
position: absolute; |
|
|
|
position: absolute; |
|
|
|
|
|
|
|
|
|
|
|
.exam_noresult { |
|
|
|
.exam_noresult { |
|
|
|
text-align: center; |
|
|
|
text-align: center; |
|
|
|
padding-top: 2rem; |
|
|
|
padding-top: 2rem; |
|
|
|
|
|
|
|
|
|
|
|
img { |
|
|
|
img { |
|
|
|
width: 2.56rem; |
|
|
|
width: 2.56rem; |
|
|
|
height: 2.56rem; |
|
|
|
height: 2.56rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.no_title { |
|
|
|
.no_title { |
|
|
|
color: #666; |
|
|
|
color: #666; |
|
|
|
font-size: 0.44rem; |
|
|
|
font-size: 0.44rem; |
|
|
|
font-weight: bold; |
|
|
|
font-weight: bold; |
|
|
|
margin-bottom: 0.1rem; |
|
|
|
margin-bottom: 0.1rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.no_txt { |
|
|
|
.no_txt { |
|
|
|
color: #999; |
|
|
|
color: #999; |
|
|
|
font-size: 0.24rem; |
|
|
|
font-size: 0.24rem; |
|
|
|
|