风险测评小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

109 lines
2.2 KiB

<template>
<view class="card">
<view class="flex card-header">
<!-- todo: 缺切图 -->
<image class="icon" src="@/static/image/icon.png" mode="widthFix"></image>
<view>{{ `您还有${data.unfinishCount}道题未完成` }}</view>
</view>
<view class="card-content">
<view class="row">
<view class="row-label">答题时间</view>
<view class="row-content">{{ $dayjs(data.createTime).format('YYYY-MM-DD HH:mm') }}</view>
</view>
</view>
<view class="flex card-footer">
<button class="btn" @click="onRestart">重新测评</button>
<button class="btn btn-primary" @click="onContinue">继续答题</button>
</view>
</view>
</template>
<script>
export default {
props: {
data: {
type: Object,
default() {
return {}
}
}
},
computed: {
},
methods: {
onRestart() {
// todo: fetch by this.data.paperId
let id
uni.navigateTo({
url: `/pages_order/test/answer?id=${id}`
})
},
onContinue() {
uni.navigateTo({
url: `/pages_order/test/answer?id=${this.data.id}&current=${this.data.current}`,
})
},
},
}
</script>
<style scoped lang="scss">
.card {
position: relative;
padding: 17rpx 0 22rpx 0;
color: #000000;
background: #FFFFFF;
border-radius: 15rpx;
overflow: hidden;
&-header {
justify-content: flex-start;
column-gap: 24rpx;
padding: 0 26rpx;
font-size: 30rpx;
.icon {
width: 48rpx;
height: auto;
}
}
&-content {
padding-left: 94rpx;
}
&-footer {
padding: 22rpx 35rpx 0 35rpx;
column-gap: 25rpx;
}
}
.row {
margin-top: 12rpx;
display: flex;
align-items: center;
justify-content: flex-start;
column-gap: 26rpx;
font-size: 28rpx;
color: #999999;
}
.btn {
flex: 1;
padding: 17rpx 0;
box-sizing: border-box;
font-family: PingFang SC;
font-size: 22rpx;
line-height: 1.4;
color: #014FA2;
border: 3rpx solid #014FA2;
border-radius: 35rpx;
&-primary {
color: #FFFFFF;
background: #014FA2;
}
}
</style>