ZaiZai 1 year ago
parent
commit
837e2a2e26
1 changed files with 18 additions and 4 deletions
  1. 18 4
      pages/image/info.vue

+ 18 - 4
pages/image/info.vue

@@ -30,10 +30,24 @@
                 </view>
             </view>
         </view>
-        <view class="hc-flex bg-white hc-p mt-2" @click="viewPdfClick" v-if="dataInfo.type === 2">
-            <view class="flex-1 text-26">查看PDF文件</view>
-            <text class="i-iconoir-nav-arrow-right"/>
-        </view>
+        <template v-if="dataInfo.type === 2">
+            <view class="hc-flex bg-white hc-p mt-2">
+                <view class="flex-1 text-26">照片号</view>
+                <text class="text-black">{{dataInfo.photoCode}}</text>
+            </view>
+            <view class="hc-flex bg-white hc-p">
+                <view class="flex-1 text-26">底片号</view>
+                <text class="text-black">{{dataInfo.filmCode}}</text>
+            </view>
+            <view class="hc-flex bg-white hc-p">
+                <view class="flex-1 text-26">参见号</view>
+                <text class="text-black">{{dataInfo.seeAlsoCode}}</text>
+            </view>
+            <view class="hc-flex bg-white hc-p mt-2" @click="viewPdfClick">
+                <view class="flex-1 text-26">查看PDF文件</view>
+                <text class="i-iconoir-nav-arrow-right"/>
+            </view>
+        </template>
     </hc-sys>
 </template>