115 lines
4.6 KiB
Plaintext
115 lines
4.6 KiB
Plaintext
<!--pages/followUp/index.wxml-->
|
||
<view class="follow-up">
|
||
|
||
<view class="user-info">
|
||
<t-input label="姓名" placeholder="请输入姓名" align="right" value="{{form.username}}" />
|
||
<t-input label="MMP-7 (ng/m)" placeholder="请输入MMP-7检测值" align="right" value="{{form.mmp_7}}" />
|
||
<t-input label="日龄 (天)" placeholder="请输入日龄" align="right" value="{{form.day}}" />
|
||
</view>
|
||
|
||
|
||
|
||
<view class="follow-item">
|
||
<view>胆囊</view>
|
||
|
||
<view class="wrapper">
|
||
<view class="input-example">
|
||
<view class="input-example__label"> 请裁剪原始超声图像,使胆囊在画面中尽可能充满整个图像,如右图所示</view>
|
||
</view>
|
||
<t-row gutter="16">
|
||
<t-col span="8">
|
||
<view wx:if="{{!form.gallbladder_image}}" class="improt-file" data-mode="gallbladder_image" bind:tap="handleUpload">
|
||
<view class="upload-flow">
|
||
<text class="iconfont icon-xiangji"></text>
|
||
<view>拍照导入</view>
|
||
</view>
|
||
</view>
|
||
<view wx:else class="report-image" data-mode="gallbladder_image" bind:tap="handleImagePreview">
|
||
<image class="image" src="{{form.gallbladder_image}}" mode=""></image>
|
||
<view class="delete-btn" data-mode="gallbladder_image" catchtap="handleDelete">
|
||
<text class="iconfont icon-x"></text>
|
||
</view>
|
||
</view>
|
||
</t-col>
|
||
<t-col span="16">
|
||
<view class="example-image">
|
||
<image class="image" src="../../assets/images/mmp_7/img1.png" mode="aspectFill"></image>
|
||
</view>
|
||
</t-col>
|
||
</t-row>
|
||
</view>
|
||
|
||
</view>
|
||
<view class="follow-item">
|
||
<view>
|
||
门静脉左右分支</view>
|
||
|
||
<view class="wrapper">
|
||
<view class="input-example">
|
||
<view class="input-example__label"> 请裁剪原始超声图像,使门静脉(cord sign)的左右分支或其潜在区域在画面中最大化填充,如右图所示</view>
|
||
</view>
|
||
<t-row gutter="16">
|
||
<t-col span="8">
|
||
<view wx:if="{{!form.portal_vein_branch_image}}" class="improt-file" data-mode="portal_vein_branch_image" bind:tap="handleUpload">
|
||
<view class="upload-flow">
|
||
<text class="iconfont icon-xiangji"></text>
|
||
<view>拍照导入</view>
|
||
</view>
|
||
</view>
|
||
<view wx:else class="report-image" data-mode="portal_vein_branch_image" bind:tap="handleImagePreview">
|
||
<image class="image" src="{{form.portal_vein_branch_image}}" mode=""></image>
|
||
<view class="delete-btn" data-mode="portal_vein_branch_image" catchtap="handleDelete">
|
||
<text class="iconfont icon-x"></text>
|
||
</view>
|
||
</view>
|
||
</t-col>
|
||
<t-col span="16">
|
||
<view class="example-image">
|
||
<image class="image" src="../../assets/images/mmp_7/img2.png" mode="aspectFill"></image>
|
||
</view>
|
||
</t-col>
|
||
</t-row>
|
||
</view>
|
||
|
||
|
||
</view>
|
||
<view class="follow-item">
|
||
<view>
|
||
门静脉右支横截</view>
|
||
|
||
<view class="wrapper">
|
||
<view class="input-example">
|
||
<view class="input-example__label"> 请裁剪原始超声图像,使肝门区(cord sign)的横切面或其潜在区域在画面中最大化填充,如右图所示</view>
|
||
</view>
|
||
<t-row gutter="16">
|
||
<t-col span="8">
|
||
<view wx:if="{{!form.portal_vein_cross_image}}" class="improt-file" data-mode="portal_vein_cross_image" bind:tap="handleUpload">
|
||
<view class="upload-flow">
|
||
<text class="iconfont icon-xiangji"></text>
|
||
<view>拍照导入</view>
|
||
</view>
|
||
</view>
|
||
<view wx:else class="report-image" data-mode="portal_vein_cross_image" bind:tap="handleImagePreview">
|
||
<image class="image" src="{{form.portal_vein_cross_image}}" mode=""></image>
|
||
<view class="delete-btn" data-mode="portal_vein_cross_image" catchtap="handleDelete">
|
||
<text class="iconfont icon-x"></text>
|
||
</view>
|
||
</view>
|
||
</t-col>
|
||
<t-col span="16">
|
||
<view class="example-image">
|
||
<image class="image" src="../../assets/images/mmp_7/img3.png" mode="aspectFill"></image>
|
||
</view>
|
||
</t-col>
|
||
</t-row>
|
||
</view>
|
||
|
||
|
||
</view>
|
||
|
||
|
||
|
||
<t-button bindtap="clockIn" theme="primary" block bindtap="toQuestionnaire">提交</t-button>
|
||
<t-image-viewer usingCustomNavbar deleteBtn="{{false}}" closeBtn="{{true}}" showIndex="{{false}}" initial-index="{{imageIndex}}" visible="{{imageVisible}}" images="{{imageList}}" bind:change="onChange" bind:delete="onDelete" bind:close="onClose"></t-image-viewer>
|
||
|
||
</view> |