imgConsultDetail.html 4.46 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
		<meta content="yes" name="apple-mobile-web-app-capable">
		<meta content="black" name="apple-mobile-web-app-status-bar-style">
		<meta content="telephone=no" name="format-detection">
		<meta content="email=no" name="format-detection">
		<link rel="stylesheet" type="text/css" href="https://review-formal.iplusmed.com/Common/css/wechat_Reset.min.css" />
		<link rel="stylesheet" type="text/css" href="../css/imgConsultDetail.css"/>
		<script src="https://review-formal.iplusmed.com/Common/javaScript/calRem.js" type="text/javascript" charset="utf-8"></script>
		<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
		<title>图文咨询订单</title>
		<script src="https://review-formal.iplusmed.com/Common/javaScript/require.min.js"></script>
		<script type="text/javascript">
			require.config({
				baseUrl: "./",
				paths: {
					"zepto": "https://review-formal.iplusmed.com/Common/javaScript/zepto.min",
					"medtap": "https://review-formal.iplusmed.com/Common/javaScript/medtap_core_wx",
					"md5": "https://review-formal.iplusmed.com/Common/javaScript/md5.min"
				},
				shim: {
					"zepto": {
						exports: "$"
					}
				}
			});
		</script>
	</head>
	<body>
		<div id="content">
			<div class="card service_content">
				<div class="header service_header">服务信息</div>
				<div class="content service_info">
					<p class="content_item clearfix">
						<span class="content_item_left txt_gray">服务类型</span>
						<span class="content_item_right service_type"></span>
					</p>
					<p class="content_item clearfix">
						<span class="content_item_left txt_gray">服务医生</span>
						<span class="content_item_right service_doctor txt_blue"></span>
					</p>
					<p class="content_item clearfix">
						<span class="content_item_left txt_gray">服务费用</span>
						<span class="content_item_right service_price"></span>
					</p>
				</div>
			</div>
			<div class="card patient_content">
				<div class="header patient_header">患者信息</div>
				<div class="content service_info">
					<p class="content_item clearfix">
						<span class="content_item_left txt_black">患者</span>
						<span class="content_item_right patient_name"></span>
					</p>
					<p class="content_item clearfix">
						<span class="content_item_left txt_black">疾病诊断</span>
						<span class="content_item_right patient_disease"></span>
					</p>
					<p class="content_item clearfix">
						<span class="content_item_left txt_black">病理类型</span>
						<span class="content_item_right patient_disease_type"></span>
					</p>
					<p class="content_item clearfix">
						<span class="content_item_left txt_black">病情描述</span>
						<textarea rows="3" cols="" class="content_item_descArea disease_area" readonly="true"></textarea>
						<div class="content_item_imgList">
hanpeng committed
70
						
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
						</div>
					</p>
					<p class="content_item clearfix">
						<span class="content_item_left txt_black">希望得到的帮助</span>
						<textarea rows="1" cols="" class="content_item_descArea help_area" readonly="true"></textarea>
					</p>
				</div>
			</div>
			<div class="card order_content">
				<div class="header order_header">订单信息</div>
				<div class="content order_info">
					<p class="content_item clearfix">
						<span class="content_item_left txt_gray">订单状态</span>
						<span class="content_item_right order_status_type txt_orange"></span>
					</p>
					<p class="content_item clearfix">
						<span class="content_item_left txt_gray">订单编号</span>
						<span class="content_item_right order_orderSn"></span>
					</p>
					<p class="content_item clearfix">
						<span class="content_item_left txt_gray">提交时间</span>
						<span class="content_item_right order_time"></span>
					</p>
					<p class="content_item clearfix pay_box">
						<span class="content_item_left txt_gray">支付时间</span>
						<span class="content_item_right order_pay_time"></span>
					</p>
				</div>
			</div>
			<div class="footer_btn clearfix pay_btn">
				<span class="btn_green cancel">取消订单</span>
				<span class="btn_orange pay">立即支付</span>
			</div>
			<div class="footer_btn cancel_btn">
				取消订单
			</div>
			<div class="footer_btn consult_now">
				立即咨询
			</div>
		</div>
	</body>
	<script type="text/javascript">
		require(['../javaScript/imgConsultDetail.js'])
	</script>
</html>