筛查结果

This commit is contained in:
shidongli 2023-11-13 10:11:22 +08:00
parent 89d59a0aac
commit 968b83c115
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<template>
<view class="app" v-if="prejectlist.data">
<view class="app" v-if="prejectlist.length>0">
<view class="content" v-for="(item,index) in prejectlist" @tap="result(item)">
<view class="big">{{item.projectName}}
</view>
@ -32,7 +32,7 @@
var patientId = this.userinfo.id
projectTypedata(patientId).then(res => {
this.prejectlist = res.data
console.log(res)
console.log(this.prejectlist)
})
// this.resultstype();

View File

@ -1,5 +1,5 @@
<template>
<view class="app" v-if="prejectlist.data">
<view class="app" v-if="prejectlist.length>0">
<view class="content" v-for="(item,index) in prejectlist">
<view class="big">{{item.projectName}}
</view>