bdcdab8c383d2bec44ca2fe5f28acc8db516e3a1.svn-base 31 KB

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