7450856530b1838eb3a430aafb04d42989cf6902.svn-base 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/white">
  7. <com.hjq.bar.TitleBar
  8. android:id="@+id/tb_vndetail_title"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:visibility="visible"
  12. app:lineColor="@color/black"
  13. app:title="@string/report_zhuishu" />
  14. <eVVM.apk.widget.ZoomView
  15. android:id="@+id/zv_report"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:layout_below="@+id/tb_vndetail_title">
  19. <LinearLayout
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:orientation="vertical"
  23. android:paddingLeft="10dp"
  24. android:paddingRight="10dp"
  25. android:paddingBottom="40dp">
  26. <RelativeLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:layout_marginLeft="10dp"
  30. android:layout_marginTop="5dp"
  31. android:layout_marginRight="10dp">
  32. <ImageView
  33. android:id="@+id/iv_report_top"
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:src="@mipmap/iv_report_top" />
  37. <TextView
  38. android:id="@+id/vndetail_tv_tt"
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:layout_alignParentRight="true"
  42. android:layout_marginLeft="25dp"
  43. android:layout_marginBottom="3dp"
  44. android:layout_toRightOf="@id/iv_report_top"
  45. android:gravity="center"
  46. android:text="产品追溯报告"
  47. android:textSize="10sp" />
  48. <TextView
  49. android:id="@+id/vndetail_tv_line"
  50. android:layout_width="match_parent"
  51. android:layout_height="10dp"
  52. android:layout_below="@id/vndetail_tv_tt"
  53. android:layout_alignParentRight="true"
  54. android:layout_marginLeft="25dp"
  55. android:layout_marginRight="10dp"
  56. android:layout_toRightOf="@id/iv_report_top"
  57. android:background="#a8996e"
  58. android:text="" />
  59. <TextView
  60. android:id="@+id/vndetail_tv_title"
  61. android:layout_width="wrap_content"
  62. android:layout_height="wrap_content"
  63. android:layout_below="@id/vndetail_tv_tt"
  64. android:layout_alignLeft="@+id/vndetail_tv_line"
  65. android:layout_alignParentRight="true"
  66. android:layout_marginRight="10dp"
  67. android:background="#a8996e"
  68. android:text=" CARGO TRACK REPORT"
  69. android:textColor="#ffffff"
  70. android:textSize="11sp"
  71. android:textStyle="bold" />
  72. <TextView
  73. android:id="@+id/vndetail_tv_vncode"
  74. android:layout_width="wrap_content"
  75. android:layout_height="wrap_content"
  76. android:layout_below="@+id/vndetail_tv_title"
  77. android:layout_alignLeft="@+id/vndetail_tv_title"
  78. android:layout_marginTop="4dp"
  79. android:layout_marginRight="10dp"
  80. android:text=""
  81. android:textColor="@color/gray"
  82. android:textSize="8sp" />
  83. <TextView
  84. android:id="@+id/vndetail_tv_vndate"
  85. android:layout_width="wrap_content"
  86. android:layout_height="wrap_content"
  87. android:layout_below="@+id/vndetail_tv_vncode"
  88. android:layout_alignLeft="@+id/vndetail_tv_title"
  89. android:layout_marginTop="2dp"
  90. android:text=""
  91. android:textColor="@color/gray"
  92. android:textSize="8sp" />
  93. </RelativeLayout>
  94. <LinearLayout
  95. android:layout_width="match_parent"
  96. android:layout_height="wrap_content"
  97. android:orientation="horizontal">
  98. <LinearLayout
  99. android:layout_width="0dp"
  100. android:layout_height="wrap_content"
  101. android:layout_weight="6"
  102. android:orientation="vertical">
  103. <TextView
  104. android:layout_width="wrap_content"
  105. android:layout_height="wrap_content"
  106. android:layout_marginTop="15dp"
  107. android:text="疫苗详情"
  108. android:textSize="8sp"
  109. android:textStyle="bold" />
  110. <LinearLayout
  111. android:layout_width="match_parent"
  112. android:layout_height="wrap_content"
  113. android:layout_marginTop="6dp"
  114. android:orientation="horizontal">
  115. <TextView
  116. android:layout_width="wrap_content"
  117. android:layout_height="wrap_content"
  118. android:text="疫苗名称........."
  119. android:textSize="8sp" />
  120. <TextView
  121. android:id="@+id/vndetail_tv_vnname"
  122. android:layout_width="wrap_content"
  123. android:layout_height="wrap_content"
  124. android:textSize="8dp" />
  125. </LinearLayout>
  126. <LinearLayout
  127. android:layout_width="match_parent"
  128. android:layout_height="wrap_content"
  129. android:layout_marginTop="2dp"
  130. android:orientation="horizontal">
  131. <TextView
  132. android:layout_width="wrap_content"
  133. android:layout_height="wrap_content"
  134. android:text="疫苗规格........."
  135. android:textSize="8sp" />
  136. <TextView
  137. android:id="@+id/vndetail_tv_vnsc"
  138. android:layout_width="wrap_content"
  139. android:layout_height="wrap_content"
  140. android:textSize="8dp" />
  141. </LinearLayout>
  142. <LinearLayout
  143. android:layout_width="match_parent"
  144. android:layout_height="wrap_content"
  145. android:layout_marginTop="2dp"
  146. android:orientation="horizontal">
  147. <TextView
  148. android:layout_width="wrap_content"
  149. android:layout_height="wrap_content"
  150. android:text="生产企业........."
  151. android:textSize="8sp" />
  152. <TextView
  153. android:id="@+id/vndetail_tv_factoryName"
  154. android:layout_width="wrap_content"
  155. android:layout_height="wrap_content"
  156. android:textSize="8dp" />
  157. </LinearLayout>
  158. <LinearLayout
  159. android:layout_width="match_parent"
  160. android:layout_height="wrap_content"
  161. android:layout_marginTop="2dp"
  162. android:orientation="horizontal">
  163. <TextView
  164. android:layout_width="wrap_content"
  165. android:layout_height="wrap_content"
  166. android:text="GMP 编号......."
  167. android:textSize="8sp" />
  168. <TextView
  169. android:id="@+id/vndetail_tv_gmpName"
  170. android:layout_width="wrap_content"
  171. android:layout_height="wrap_content"
  172. android:textSize="8sp" />
  173. </LinearLayout>
  174. <LinearLayout
  175. android:layout_width="match_parent"
  176. android:layout_height="wrap_content"
  177. android:layout_marginTop="2dp"
  178. android:orientation="horizontal">
  179. <TextView
  180. android:layout_width="wrap_content"
  181. android:layout_height="wrap_content"
  182. android:text="批签发证书....."
  183. android:textSize="8sp" />
  184. <TextView
  185. android:id="@+id/vndetail_tv_gmpPath"
  186. android:layout_width="wrap_content"
  187. android:layout_height="wrap_content"
  188. android:autoLink="all"
  189. android:text="点击查看"
  190. android:textColor="@color/blue"
  191. android:textSize="8sp" />
  192. </LinearLayout>
  193. <LinearLayout
  194. android:layout_width="match_parent"
  195. android:layout_height="wrap_content"
  196. android:layout_marginTop="2dp"
  197. android:orientation="horizontal">
  198. <TextView
  199. android:layout_width="wrap_content"
  200. android:layout_height="wrap_content"
  201. android:text="生产日期........."
  202. android:textSize="8sp" />
  203. <TextView
  204. android:id="@+id/vndetail_tv_vncreatdate"
  205. android:layout_width="wrap_content"
  206. android:layout_height="wrap_content"
  207. android:textSize="8dp" />
  208. </LinearLayout>
  209. <LinearLayout
  210. android:layout_width="match_parent"
  211. android:layout_height="wrap_content"
  212. android:layout_marginTop="2dp"
  213. android:orientation="horizontal">
  214. <TextView
  215. android:layout_width="wrap_content"
  216. android:layout_height="wrap_content"
  217. android:text="有效期 ............"
  218. android:textSize="8sp" />
  219. <TextView
  220. android:id="@+id/vndetail_tv_vnvalid"
  221. android:layout_width="wrap_content"
  222. android:layout_height="wrap_content"
  223. android:textSize="8dp" />
  224. </LinearLayout>
  225. </LinearLayout>
  226. <LinearLayout
  227. android:layout_width="0dp"
  228. android:layout_height="wrap_content"
  229. android:layout_weight="5"
  230. android:orientation="vertical">
  231. <TextView
  232. android:id="@+id/renyuan_type"
  233. android:layout_width="wrap_content"
  234. android:layout_height="wrap_content"
  235. android:layout_marginTop="15dp"
  236. android:text="接种人员"
  237. android:textSize="8sp"
  238. android:textStyle="bold" />
  239. <LinearLayout
  240. android:id="@+id/shouzhongrenyuan"
  241. android:layout_width="wrap_content"
  242. android:layout_height="wrap_content"
  243. android:orientation="vertical">
  244. <LinearLayout
  245. android:layout_width="match_parent"
  246. android:layout_height="wrap_content"
  247. android:layout_marginTop="2dp"
  248. android:orientation="horizontal">
  249. <TextView
  250. android:layout_width="wrap_content"
  251. android:layout_height="wrap_content"
  252. android:text="受种者姓名........"
  253. android:textSize="8sp" />
  254. <TextView
  255. android:id="@+id/vndetail_tv_szname"
  256. android:layout_width="wrap_content"
  257. android:layout_height="wrap_content"
  258. android:textSize="8sp" />
  259. </LinearLayout>
  260. <LinearLayout
  261. android:layout_width="match_parent"
  262. android:layout_height="wrap_content"
  263. android:layout_marginTop="2dp"
  264. android:orientation="horizontal">
  265. <TextView
  266. android:layout_width="wrap_content"
  267. android:layout_height="wrap_content"
  268. android:text="性别........"
  269. android:textSize="8sp" />
  270. <TextView
  271. android:id="@+id/vndetail_tv_szsex"
  272. android:layout_width="wrap_content"
  273. android:layout_height="wrap_content"
  274. android:textSize="8sp" />
  275. </LinearLayout>
  276. <LinearLayout
  277. android:layout_width="match_parent"
  278. android:layout_height="wrap_content"
  279. android:layout_marginTop="2dp"
  280. android:orientation="horizontal">
  281. <TextView
  282. android:layout_width="wrap_content"
  283. android:layout_height="wrap_content"
  284. android:text="出生日期........"
  285. android:textSize="8sp" />
  286. <TextView
  287. android:id="@+id/vndetail_tv_szbirthday"
  288. android:layout_width="wrap_content"
  289. android:layout_height="wrap_content"
  290. android:textSize="8sp" />
  291. </LinearLayout>
  292. <LinearLayout
  293. android:layout_width="match_parent"
  294. android:layout_height="wrap_content"
  295. android:layout_marginTop="2dp"
  296. android:orientation="horizontal">
  297. <TextView
  298. android:layout_width="wrap_content"
  299. android:layout_height="wrap_content"
  300. android:text="二维码编号......."
  301. android:textSize="8sp" />
  302. <TextView
  303. android:id="@+id/vndetail_tv_szid"
  304. android:layout_width="wrap_content"
  305. android:layout_height="wrap_content"
  306. android:textSize="8sp" />
  307. </LinearLayout>
  308. <LinearLayout
  309. android:layout_width="match_parent"
  310. android:layout_height="wrap_content"
  311. android:layout_marginTop="2dp"
  312. android:orientation="horizontal">
  313. <TextView
  314. android:layout_width="wrap_content"
  315. android:layout_height="wrap_content"
  316. android:text="受种者监护人........"
  317. android:textSize="8sp" />
  318. <TextView
  319. android:id="@+id/vndetail_tv_szguardian"
  320. android:layout_width="wrap_content"
  321. android:layout_height="wrap_content"
  322. android:textSize="8sp" />
  323. </LinearLayout>
  324. <LinearLayout
  325. android:layout_width="match_parent"
  326. android:layout_height="wrap_content"
  327. android:layout_marginTop="4dp"
  328. android:orientation="horizontal">
  329. <TextView
  330. android:layout_width="wrap_content"
  331. android:layout_height="wrap_content"
  332. android:text="联系方式........"
  333. android:textSize="8sp" />
  334. <TextView
  335. android:id="@+id/vndetail_tv_szTelephone"
  336. android:layout_width="wrap_content"
  337. android:layout_height="wrap_content"
  338. android:textSize="8sp" />
  339. </LinearLayout>
  340. </LinearLayout>
  341. <LinearLayout
  342. android:id="@+id/jiezhognrenyuan"
  343. android:layout_width="wrap_content"
  344. android:layout_height="wrap_content"
  345. android:orientation="vertical"
  346. android:visibility="gone">
  347. <LinearLayout
  348. android:layout_width="match_parent"
  349. android:layout_height="wrap_content"
  350. android:layout_marginTop="4dp"
  351. android:orientation="horizontal">
  352. <TextView
  353. android:layout_width="wrap_content"
  354. android:layout_height="wrap_content"
  355. android:text="接种单位........"
  356. android:textSize="8sp" />
  357. <TextView
  358. android:id="@+id/vndetail_tv_hospitalName"
  359. android:layout_width="wrap_content"
  360. android:layout_height="wrap_content"
  361. android:textSize="8sp" />
  362. </LinearLayout>
  363. <LinearLayout
  364. android:layout_width="match_parent"
  365. android:layout_height="wrap_content"
  366. android:layout_marginTop="4dp"
  367. android:orientation="horizontal">
  368. <TextView
  369. android:layout_width="wrap_content"
  370. android:layout_height="wrap_content"
  371. android:text="医生姓名........"
  372. android:textSize="8sp" />
  373. <TextView
  374. android:id="@+id/vndetail_tv_doctorName"
  375. android:layout_width="wrap_content"
  376. android:layout_height="wrap_content"
  377. android:textSize="8sp" />
  378. </LinearLayout>
  379. <LinearLayout
  380. android:layout_width="match_parent"
  381. android:layout_height="wrap_content"
  382. android:layout_marginTop="4dp"
  383. android:orientation="horizontal">
  384. <TextView
  385. android:layout_width="wrap_content"
  386. android:layout_height="wrap_content"
  387. android:text="联系方式........"
  388. android:textSize="8sp" />
  389. <TextView
  390. android:id="@+id/vndetail_tv_doctorTelephone"
  391. android:layout_width="wrap_content"
  392. android:layout_height="wrap_content"
  393. android:textSize="8sp" />
  394. </LinearLayout>
  395. </LinearLayout>
  396. </LinearLayout>
  397. </LinearLayout>
  398. <RelativeLayout
  399. android:layout_width="match_parent"
  400. android:layout_height="wrap_content">
  401. <ImageView
  402. android:id="@+id/vndetail_tv_chatImage"
  403. android:layout_width="match_parent"
  404. android:layout_height="wrap_content"
  405. android:layout_marginTop="9dp" />
  406. <TextView
  407. android:layout_width="wrap_content"
  408. android:layout_height="wrap_content"
  409. android:layout_marginTop="9dp"
  410. android:text="追溯结果"
  411. android:textSize="10sp"
  412. android:textStyle="bold" />
  413. </RelativeLayout>
  414. <RelativeLayout
  415. android:layout_width="match_parent"
  416. android:layout_height="wrap_content">
  417. <TextView
  418. android:id="@+id/vndetail_tv_typemsg"
  419. android:layout_width="match_parent"
  420. android:layout_height="wrap_content"
  421. android:layout_marginTop="22dp"
  422. android:gravity="center_horizontal"
  423. android:text="没发现报告"
  424. android:textSize="13sp"
  425. android:textStyle="bold" />
  426. <TextView
  427. android:id="@+id/vndetail_tv_chatImage_title"
  428. android:layout_width="wrap_content"
  429. android:layout_height="wrap_content"
  430. android:layout_marginTop="5dp"
  431. android:text="可用性分析"
  432. android:textSize="9sp"
  433. android:textStyle="bold" />
  434. </RelativeLayout>
  435. <TextView
  436. android:id="@+id/coverview"
  437. android:layout_width="match_parent"
  438. android:layout_height="wrap_content"
  439. android:layout_marginTop="6dp"
  440. android:text=""
  441. android:textSize="9dp" />
  442. <LinearLayout
  443. android:layout_width="match_parent"
  444. android:layout_height="wrap_content"
  445. android:layout_marginTop="5dp"
  446. android:orientation="horizontal">
  447. <LinearLayout
  448. android:layout_width="0dp"
  449. android:layout_height="wrap_content"
  450. android:layout_weight="6"
  451. android:orientation="vertical"
  452. android:visibility="gone">
  453. <LinearLayout
  454. android:layout_width="match_parent"
  455. android:layout_height="wrap_content"
  456. android:orientation="horizontal">
  457. <TextView
  458. android:id="@+id/vndetail_tv_othervn1"
  459. android:layout_width="wrap_content"
  460. android:layout_height="wrap_content"
  461. android:text="点击查询......"
  462. android:textSize="8sp" />
  463. <TextView
  464. android:layout_width="wrap_content"
  465. android:layout_height="wrap_content"
  466. android:text="同批次其他疫苗冷链"
  467. android:textSize="8sp" />
  468. </LinearLayout>
  469. <LinearLayout
  470. android:layout_width="match_parent"
  471. android:layout_height="wrap_content"
  472. android:layout_marginTop="4dp"
  473. android:orientation="horizontal">
  474. <TextView
  475. android:id="@+id/vndetail_tv_othervn2"
  476. android:layout_width="wrap_content"
  477. android:layout_height="wrap_content"
  478. android:text="点击查询......"
  479. android:textSize="8sp" />
  480. <TextView
  481. android:layout_width="wrap_content"
  482. android:layout_height="wrap_content"
  483. android:text="同批次其他疫苗流向"
  484. android:textSize="8sp" />
  485. </LinearLayout>
  486. <LinearLayout
  487. android:layout_width="match_parent"
  488. android:layout_height="wrap_content"
  489. android:layout_marginTop="4dp"
  490. android:orientation="horizontal">
  491. <TextView
  492. android:id="@+id/vndetail_tv_othervn3"
  493. android:layout_width="wrap_content"
  494. android:layout_height="wrap_content"
  495. android:text="点击查询......"
  496. android:textSize="8sp" />
  497. <TextView
  498. android:layout_width="wrap_content"
  499. android:layout_height="wrap_content"
  500. android:text="同企业其他疫苗"
  501. android:textSize="8sp" />
  502. </LinearLayout>
  503. </LinearLayout>
  504. <RelativeLayout
  505. android:layout_width="0dp"
  506. android:layout_height="wrap_content"
  507. android:layout_weight="10"
  508. android:orientation="horizontal">
  509. <TextView
  510. android:id="@+id/vndetail_tv_tips"
  511. android:layout_width="wrap_content"
  512. android:layout_height="wrap_content"
  513. android:layout_marginTop="3dp"
  514. android:layout_toLeftOf="@+id/vndetail_iv_tipsimg"
  515. android:text="@string/vndeatil_tips"
  516. android:textColor="@color/gray"
  517. android:textSize="7sp" />
  518. <ImageView
  519. android:id="@+id/vndetail_iv_tipsimg"
  520. android:layout_width="50dp"
  521. android:layout_height="50dp"
  522. android:layout_alignParentRight="true"
  523. android:layout_margin="4dp"
  524. android:src="@mipmap/qr" />
  525. </RelativeLayout>
  526. </LinearLayout>
  527. <LinearLayout
  528. android:layout_width="match_parent"
  529. android:layout_height="wrap_content"
  530. android:layout_marginTop="10dp"
  531. android:orientation="horizontal">
  532. <RelativeLayout
  533. android:layout_width="0dp"
  534. android:layout_height="match_parent"
  535. android:layout_marginRight="-2dp"
  536. android:layout_weight="1"
  537. android:background="@drawable/border_report"
  538. android:orientation="vertical"
  539. android:padding="10dp">
  540. <ImageView
  541. android:layout_width="20dp"
  542. android:layout_height="wrap_content"
  543. android:layout_centerInParent="true"
  544. android:src="@mipmap/dun" />
  545. </RelativeLayout>
  546. <LinearLayout
  547. android:layout_width="0dp"
  548. android:layout_height="wrap_content"
  549. android:layout_weight="6"
  550. android:background="@drawable/border_report"
  551. android:orientation="vertical"
  552. android:padding="5dp">
  553. <TextView
  554. android:layout_width="wrap_content"
  555. android:layout_height="wrap_content"
  556. android:text="免责声明:"
  557. android:textColor="#97885c"
  558. android:textSize="8sp"
  559. android:textStyle="bold" />
  560. <ScrollView
  561. android:layout_width="wrap_content"
  562. android:layout_height="wrap_content">
  563. <TextView
  564. android:id="@+id/vndetail_tv_disclaimer"
  565. android:layout_width="wrap_content"
  566. android:layout_height="wrap_content"
  567. android:text="@string/vndeatil_disclaimer"
  568. android:textColor="#97885c"
  569. android:textSize="8sp" />
  570. </ScrollView>
  571. </LinearLayout>
  572. </LinearLayout>
  573. </LinearLayout>
  574. </eVVM.apk.widget.ZoomView>
  575. <RelativeLayout
  576. android:id="@+id/btn_ll"
  577. android:layout_width="match_parent"
  578. android:layout_height="wrap_content"
  579. android:layout_alignParentBottom="true"
  580. android:layout_centerHorizontal="true"
  581. android:background="@color/white"
  582. android:gravity="center_horizontal"
  583. android:paddingTop="5dp"
  584. android:paddingBottom="5dp"
  585. android:visibility="gone">
  586. <Button
  587. android:id="@+id/next_btn_report"
  588. android:layout_width="140dp"
  589. android:layout_height="35dp"
  590. android:layout_toRightOf="@+id/send_btn_report"
  591. android:background="@drawable/small_btn"
  592. android:paddingLeft="20dp"
  593. android:paddingRight="20dp"
  594. android:text="@string/report_confirm"
  595. android:textColor="@color/white"
  596. android:textSize="15.3sp" />
  597. </RelativeLayout>
  598. <ImageButton
  599. android:id="@+id/vndetail_bt_magnifier"
  600. android:layout_width="30dp"
  601. android:layout_height="30dp"
  602. android:layout_alignParentRight="true"
  603. android:layout_alignParentBottom="true"
  604. android:layout_marginRight="10dp"
  605. android:layout_marginBottom="5dp"
  606. android:background="@color/transparent"
  607. android:src="@mipmap/magnifier" />
  608. </RelativeLayout>