From 36e10fbfce3c631b85a124cc48d98ba0559385a6 Mon Sep 17 00:00:00 2001 From: Lee-1203 <342694918@qq.com> Date: Wed, 11 May 2022 09:17:11 +0800 Subject: [PATCH] lee --- collection.html | 312 +++++++++--------- css/base.css | 15 +- css/style.css | 667 ++++++++++++++++++++++++++++++++------- images/icon/icon-add.png | Bin 0 -> 1041 bytes index.html | 2 +- js/my-site.js | 13 +- locking.html | 312 +++++++++--------- order.html | 126 ++++++++ patient-admin.html | 312 +++++++++--------- patient.html | 312 +++++++++--------- purchased.html | 312 +++++++++--------- recharge-admin.html | 278 ++++++++-------- recharge-page.html | 135 ++++++++ recharge.html | 210 ++++++------ register.html | 2 +- upload.html | 124 +++++++- user-admin.html | 312 +++++++++--------- user.html | 6 +- withdrawal-admin.html | 278 ++++++++-------- withdrawal-page.html | 125 ++++++++ withdrawal.html | 210 ++++++------ 21 files changed, 2513 insertions(+), 1550 deletions(-) create mode 100644 images/icon/icon-add.png create mode 100644 order.html create mode 100644 recharge-page.html create mode 100644 withdrawal-page.html diff --git a/collection.html b/collection.html index 67b5aa8..ed8224f 100644 --- a/collection.html +++ b/collection.html @@ -95,162 +95,162 @@ - - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+
    +
  • + 患者代号 + 性别 + 年龄 + 常驻地区 + 上传人 + 操作 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 周三 + 取消收藏 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 王小二 + 取消收藏 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 赵世伟 + 取消收藏 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 王思聪 + 取消收藏 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 周三 + 取消收藏 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 王小二 + 取消收藏 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 赵世伟 + 取消收藏 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 王思聪 + 取消收藏 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 周三 + 取消收藏 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 王小二 + 取消收藏 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 赵世伟 + 取消收藏 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 王思聪 + 取消收藏 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 周三 + 取消收藏 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 王小二 + 取消收藏 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 赵世伟 + 取消收藏 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 王思聪 + 取消收藏 +
  • +
+ +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +
diff --git a/css/base.css b/css/base.css index 64b67cc..caa0090 100644 --- a/css/base.css +++ b/css/base.css @@ -35,7 +35,8 @@ li { list-style: none; } -button { +button, +select { cursor: pointer; /* 当我们鼠标经过button按钮的时候,鼠标变成小手 */ } @@ -80,16 +81,20 @@ textarea { } /* 改变表单默认值样式 */ -input::-webkit-input-placeholder{ +input::-webkit-input-placeholder, +textarea::-webkit-input-placeholder{ color:#adadad; } -input::-moz-placeholder{ /* Mozilla Firefox 19+ */ +input::-moz-placeholder, +textarea::-moz-placeholder{ /* Mozilla Firefox 19+ */ color:#adadad; } -input:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */ +input:-moz-placeholder, +textarea:-moz-placeholder{ /* Mozilla Firefox 4 to 18 */ color:#adadad; } -input:-ms-input-placeholder{ /* Internet Explorer 10-11 */ +input:-ms-input-placeholder, +textarea:-ms-input-placeholder{ /* Internet Explorer 10-11 */ color:#adadad; } diff --git a/css/style.css b/css/style.css index ca36f24..ea06b07 100644 --- a/css/style.css +++ b/css/style.css @@ -95,12 +95,18 @@ .nav-bg{ display: none; width: 100vw; - height: 100vh; + height: calc(100vh - 50px); + background-color: rgba(0, 0, 0, 0.5); position: fixed; left: 0; - top: 0; - z-index: 99; + top: 50px; + z-index: 98; } + +.nav-bg.active { + display: block; +} + /* 手机端导航按钮 */ .head .head-btn { display: none; @@ -117,7 +123,7 @@ width: 100%; height: 2px; float: left; - background-color: #0094da; + background-color: #383838; border-radius: 50px; transition: all .5s ease 0s; -webkit-transition: all .5s ease 0s; @@ -137,7 +143,7 @@ } .head .head-btn.cur i { - background-color: #0094da; + background-color: #383838; } .head .head-btn.cur i.bar-cen { @@ -157,6 +163,7 @@ /* 首页样式 */ .main{ margin-top: 86px; + min-height: calc(100vh - 204px); } .index-main, .login-main{ @@ -253,7 +260,7 @@ display: flex; justify-content: flex-end; align-items: center; - width: 50px; + width: 45px; margin-top: 10px; user-select:none; cursor: pointer; @@ -348,6 +355,12 @@ font-size: 14px; margin-bottom: 8px; } +.patient-bl h2>em{ + margin: 0 5px; +} +.patient-bl h2>span{ + margin-left: 45px; +} .patient-bl p{ font-size: 14px; opacity: .8; @@ -451,7 +464,7 @@ text-align: center; margin: 8px 0 18px; } -.index-side>button{ +.index-side-btn{ display: flex; justify-content: center; align-items: center; @@ -462,7 +475,7 @@ font-size: 16px; transition: all .6s; } -.index-side>button:hover{ +.index-side-btn:hover{ background-color: #fff; color: #00ffff; } @@ -875,7 +888,182 @@ color: #00ffff; } +/* 上传患者信息页样式 */ +.information h2{ + width: 78%; + background-color: #e5ffff; + margin: 32px auto 22px; + font-size: 24px; + line-height: 2.25; + text-align: center; + +} +.information-upload{ + margin-top: -18px; + border: 0; + padding: 20px; +} +.radio-section{ + display: flex; + align-items: center; + height: 52px; +} +.radio-section>span{ + display: flex; + align-items: center; + margin: 10px 40px 0 0; + user-select: none; + font-size: 14px; + cursor: pointer; +} +.radio-section>span:last-child{ + margin-right: 0; +} +.radio-section>span em{ + width: 30px; + height: 30px; + border: 1px solid #e9ebed; + border-radius: 100%; + margin-right: 10px; + overflow: hidden; + cursor: pointer; +} +.radio-section>span em>ins{ + width: 0; + height: 0; + opacity: 0; +} +.radio-section>span em.checked{ + background-color: #fff; + border: 1px solid #0578ef; +} +.radio-section>span em.checked>ins{ + display: block; + width: 14px; + height: 14px; + margin: 7px; + border-radius: 100%; + background-color: #0578ef; + opacity: 1; +} +.select-section select[name="birth-tiem"], +.select-section select[name="age"], +.select-section select[name="diagnosis-time"]{ + width: calc(50% - 8px); +} + +.select-section input[name="name-initials"]{ + width: calc(33.33% - 10px); +} +.select-section input[name="patient-code"]{ + width: calc(66.66% - 5px); +} + +.information-list li textarea{ + width: 100%; + height: 255px; + padding: 15px; + border: 1px solid #e9ebed; + border-radius: 5px; + margin-top: 10px; + font-size: 14px; + line-height: 1.8; + color: #6b6b6b; + +} + +.upload-section{ + display: flex; + align-items: center; + padding-bottom: 36px; + border-bottom: 1px solid #e9ebed; + margin-bottom: 36px; +} +.upload-section span, +.upload-section button{ + width: 124px; + height: 124px; + border: 1px solid #e9ebed; + border-radius: 5px; + margin: 13px 12px 0 0; + overflow: hidden; +} +.upload-section span img{ + width: 100%; + min-height: 100%; +} +.upload-section button{ + display: flex; + justify-content: center; + align-items: center; + margin-right: 0; +} + +/* 提现页样式 */ +.account-section{ + display: flex; + align-items: center; + margin: 25px 0; + font-size: 14px; +} +.account-section>span{ + font-weight: bold; + margin-right: 48px; +} +.account-section>span strong{ + margin-left: 18px; +} +.account-section>a{ + color: #0578ef; +} +.information-withdrawal .information-list{ + margin-bottom: 46px; +} +.information-recharge .upload-section{ + margin-bottom: 30px; +} + +/* 订单页样式 */ +.order-information{ + padding: 26px 36px 11px; + background-color: #fff; + border: 1px solid #e9ebed; + margin-bottom: 24px; +} +.order-information .patient-top{ + padding-top: 18px; + border-top: 1px solid #eaebeb; + border-bottom: 0; +} +.order-information .patient-bl{ + padding-bottom: 30px; + width: 100%; + text-align: justify; +} +.order-information .information-list{ + width: 100%; + border-top: 1px solid #eaebeb; +} +.order-information .upload-section{ + align-items: flex-end; + border-bottom: 0; + margin-bottom: 0; + padding-bottom: 22px; + +} +.order-information .upload-section>span, +.order-information .upload-section>button{ + margin-top: 0; +} +.order-information .upload-section>em{ + margin-left: 14px; + font-size: 14px; + opacity: .7; +} +.order-btn{ + margin: 44px auto; +} /* 尾部 */ .footer{ padding: 20px 0 30px; @@ -928,78 +1116,7 @@ } @media screen and (max-width:1360px) { - .header .head { - width: 100%; - justify-content: space-between; - align-items: center; - } - - .head .head-btn { - display: block; - margin: 0; - margin-right: 30px; - } - - .head .nav { - display: block; - width: 38vw; - height: 100vh; - background-color: #FFFFFF; - position: fixed; - padding-top: 80px; - top: 0px; - right: -38vw; - z-index: 9999; - transition: all .6s; - } - - .head .nav.active { - right: 0; - transition: all .6s; - } - - .head .nav-bg { - width: 100vw; - height: 100vh; - background-color: rgba(0, 0, 0, 0.5); - position: fixed; - top: 0; - left: 0; - z-index: 200; - transition: all .6s; - } - - .head .nav-bg.active { - display: block; - opacity: 1; - transition: all .6s; - } - - .head .nav li { - margin: 0; - padding: 0; - height: auto; - } - - .head .nav li>a { - width: 100%; - font-size: 16px; - margin: 0; - padding: 0; - line-height: 60px; - text-align: center; - } - - .head .nav li.active>a { - font-weight: normal; - border: 0; - background-color: #0094da; - color: #FFFFFF; - } - - .nav-bg { - display: none; - } + } @media screen and (max-width:1280px) { @@ -1019,6 +1136,9 @@ } @media screen and (max-width:780px) { + .w1140{ + width: 96%; + } /* 头部 */ .header { height: 50px; @@ -1027,22 +1147,30 @@ .header .head { justify-content: space-between; - width: calc(100% - 30px); - margin: 0 auto; height: 50px; } .logo { width: auto; - height: 40px; + height: 36px; margin: 0; } .logo img { width: auto; - height: 40px; + height: 36px; margin: 0; } + .top-right{ + font-size: 14px; + } + .login-registration ins{ + width: 36px; + height: 36px; + } + .notice{ + margin-right: 5%; + } .head .head-btn { display: block; @@ -1051,37 +1179,20 @@ .head .nav { display: block; - width: 38vw; - height: 100vh; - background-color: #FFFFFF; + width: 40vw; + height: calc(100vh - 50px); + background-color: #fff; + border-top: 1px solid #e9ebed; position: fixed; - padding-top: 50px; - top: 0px; - right: -38vw; - z-index: 9999; + padding-top: 10px; + top: 50px; + right: -40vw; + z-index: 99; transition: all .6s; } .head .nav.active { right: 0; - transition: all .6s; - } - - .head .nav-bg { - width: 100vw; - height: 100vh; - background-color: rgba(0, 0, 0, 0.5); - position: fixed; - top: 0; - left: 0; - z-index: 200; - transition: all .6s; - } - - .head .nav-bg.active { - display: block; - opacity: 1; - transition: all .6s; } .head .nav li { @@ -1102,13 +1213,343 @@ .head .nav li.active>a { font-weight: normal; border: 0; - background-color: #0094da; - color: #FFFFFF; } - - .nav-bg { + + /* 首页 */ + .main{ + margin-top: 65px; + min-height: calc(100vh - 160px); + } + .index-side{ display: none; } + .index-content{ + width: 100%; + } + .search>input{ + width: calc(100% - 90px); + height: 40px; + } + .search-btn{ + width: 90px; + height: 40px; + font-size: 15px; + } + .screen{ + padding: 2px 10px 8px; + font-size: 13px; + line-height: 24px; + } + .screen li>strong{ + width: 95px; + font-size: 13px; + } + .screen li>section{ + width: calc(100% - 135px); + height: 34px; + } + .screen li>section a{ + padding: 0 10px; + } + .screen li>section select{ + height: 24px; + width: 90%; + margin-right: 0; + } + .patient-list li{ + padding: 17px 10px 27px; + } + .patient-top{ + height: 70px; + flex-wrap: wrap; + padding-bottom: 8px; + } + .patient-top>span{ + font-size: 13px; + } + .patient-top>span em{ + width: 30px; + height: 30px; + } + .patient-bl{ + width: 100%; + } + .patient-bl h2{ + font-size: 14px; + } + .patient-bl h2>span{ + margin-left: 10px; + } + .patient-bl p{ + text-align: justify; + } + .patient-br{ + margin: 10px auto 0; + } + .choice-btn{ + height: 40px; + font-size: 16px; + } + /* 分页 */ + .paging{ + margin: 30px 0; + } + .paging a{ + width: 19px; + height: 19px; + font-size: 12px; + margin: 0 2px; + } + .paging a.prev, + .paging a.next{ + padding: 0 4px; + } + + .pull-nav-swiper .swiper-wrapper{ + justify-content: left; + } + .survey{ + flex-wrap: wrap; + padding: 20px 10px; + height: auto; + } + .survey-left>span{ + width: 70px; + height: 70px; + margin-left: 0; + } + .survey-left h2{ + font-size: 20px; + } + .survey-left p{ + font-size: 15px; + } + .survey-right{ + justify-content: space-around; + width: 100%; + margin-top: 20px; + } + .survey-right>span strong{ + font-size: 17px; + } + .withdrawal-btn, + .recharge-btn{ + width: 120px; + height: 36px; + font-size: 14px; + margin-left: 0; + } + + .pull-nav{ + width: 100%; + height: 51px; + padding: 0; + margin-bottom: 15px; + } + .pull-nav-swiper .swiper-slide{ + margin: 0 10px; + } + .pull-nav-swiper .swiper-slide>a{ + font-size: 15px; + line-height: 50px; + } + .information{ + margin-bottom: 20px; + } + .information-upload{ + padding: 10px; + margin-top: 0; + } + .information h2{ + width: 100%; + font-size: 20px; + margin: 0 0 20px; + } + .information-list{ + width: 100%; + } + .information-list li{ + font-size: 15px; + } + .information-list li input{ + height: 36px; + padding: 0 10px; + } + .select-section select{ + width: calc(33.33% - 6.6px); + height: 36px; + padding: 0 10px; + background-position: calc(100% - 10px) center; + } + .information h2:nth-of-type(2){ + margin-top: 30px; + } + .radio-section>span em{ + width: 20px; + height: 20px; + } + .radio-section{ + height: 36px; + } + .radio-section>span em.checked>ins{ + width: 8px; + height: 8px; + margin: 5px; + } + .select-section select[name="birth-tiem"], + .select-section select[name="age"], + .select-section select[name="diagnosis-time"]{ + width: calc(50% - 5px); + } + .select-section select[name="diagnosis-time"]{ + width: 60%; + } + .select-section input[name="name-initials"]{ + width: calc(40% - 5px); + } + .select-section input[name="patient-code"]{ + width: calc(60% - 5px); + } + .information-list li textarea{ + padding: 10px; + height: 160px; + } + .upload-section span, + .upload-section button{ + width: 100px; + height: 100px; + padding-bottom: 25px; + margin-bottom: 0; + } + .information-btn{ + width: 200px; + height: 40px; + font-size: 15px; + margin: 25px auto; + } + + /* 表单 */ + .from-list-bg{ + width: 100%; + padding: 0; + margin-bottom: 25px; + } + .from-list{ + font-size: 12px; + } + .from-list li:first-child{ + font-size: 13px; + } + .from-list li>span:first-child{ + text-indent: 0; + padding-left: 10px; + width: 30%; + } + .from-list li>span{ + width: 18%; + } + .from-list li>a{ + width: 10%; + } + + .from-list li>span>em{ + display: block; + margin-left: 0; + } + .from-list li>ins{ + width: 20%; + padding-right: 10px; + } + .from-list li:first-child span>ins{ + display: block; + } + + .from-list-patient li>span:nth-of-type(2), + .from-list-patient li>span:nth-of-type(3), + .from-user-admin li>span:nth-of-type(2), + .from-user-admin li>span:nth-of-type(3), + .from-withdrawal-admin li>span:nth-of-type(3), + .from-list-collection li>span:nth-of-type(3){ + display: none; + } + + /* 登录注册页 */ + .login-main{ + width: 100%; + margin: 51px auto 0; + } + .login-img{ + display: none; + } + .login-txt{ + width: 100%; + padding: 40px 10px 20px; + } + .login-txt h1{ + font-size: 24px; + text-align: center; + } + .login-txt>span{ + font-size: 15px; + margin-top: 3px; + text-align: center; + } + .login-information li>span{ + width: 110px; + margin-right: 10px; + font-size: 14px; + } + .login-information li>input{ + width: calc(100% - 120px); + height: 36px; + font-size: 14px; + } + .login-information li>section{ + width: calc(100% - 90px); + } + .login-information li>section input{ + width: calc(58% - 10px); + height: 36px; + font-size: 15px; + } + .code-btn{ + width: 42%; + height: 36px; + font-size: 13px; + } + .register-btn{ + display: block; + width: 130px; + height: 40px; + margin: 20px auto; + } + .agree{ + width: 100%; + margin-left: 0; + justify-content: center; + } + + .wechat-btn-bg{ + width: 100%; + margin-left: 0; + } + + /* 尾部 */ + .footer{ + padding: 15px 0; + text-align: center; + } + .foot-nav{ + justify-content: center; + } + .foot-record{ + font-size: 13px; + line-height: 1.8; + } + .foot-record>a:first-child{ + display: inline-block; + margin-left: 0; + } } @media screen and (max-width:414px) { diff --git a/images/icon/icon-add.png b/images/icon/icon-add.png new file mode 100644 index 0000000000000000000000000000000000000000..a43034b411f140bb7c7f9d795b865dc70669b0fe GIT binary patch literal 1041 zcmaJ=O>5LZ7)~izTUx=Ro`w{qMK_aVlif{d>_?`x0aKRkLf4zwWZDgFGHEh()86b! z5ik82B3`^Hs0BSp5%DDUVEqAtAXUL0>}0#U_24#;`Fx(|{hSBog_|Qomxnlx8?ok5 zh0RmhfBqaBAN%WH*mQ}`*61QxrcEct+_XpP7+8U`f-BhZHrLQ`&DX5Z3X z5(rL)5z-)HY>u0lOe4o##T3->iXR&M_ZP2t;ClwYq}rk#nYiK4Z^d|VYoY3Ht-6}W zPu>6%sm=rfOdXI0Yhj|N2H(=v**ZIhJZM4as==Q)RkO>$Bryi6P{_HGqJp9(NQJzj zY1e@)N+l?kpp?%^1ziz!SqANoXVzkGS+AhEwk@_Z_y(ns4q>y|6ql-ld6I#Ki{{B}uscuFXR&YW#VwV+ec{DQ>>1K=_O5!RZYn?2X8-$XiK_Xz9 zS=KZ#w&aH%X(r<>j&18!m{2Elv4sqtsR+LB>6(&98Y(DA6h%pzHA`keMFkUy#c8!9 zDoTfoh`SNskaoD*t*}_7rCcio9p%VCEt?^nKLje z?mxxu9I+0{mfhB6n{M;tkac{_TKn0RPh;#^+_TVhHQoQV|8ej&7@pci&;Rbs?2bSA zI=r*}8yxH$J^Flb@$Gx{_RsX;UVrN)oiP*--@N>=RJ_*rV_@$H^qqlhU0wJ!C~}AQ T2h=}hE6q-<*#-1;=Favp`iwSQ literal 0 HcmV?d00001 diff --git a/index.html b/index.html index 0139f73..dea49d0 100644 --- a/index.html +++ b/index.html @@ -444,7 +444,7 @@
用户名

我是病人信息管理者

- + 上传病人信息
diff --git a/js/my-site.js b/js/my-site.js index 22ccbb1..ef5d010 100644 --- a/js/my-site.js +++ b/js/my-site.js @@ -11,11 +11,22 @@ jQuery(function($){ wow.init(); }; - // 更改按钮选中状态 + // 更改同意按钮选中状态 $('.agree>span').find('em').click(function() { $(this).toggleClass('checked'); }); + // 更改单选按钮选中状态 + $('.radio-section>span').click(function() { + $('.radio-section>span').find('em').removeClass('checked'); + $(this).find('em').addClass('checked'); + }); + + // 提现跳转 + $('.withdrawal-btn').click(function() { + window.location.href = "/yxxw.lee1203.com/withdrawal-page.html"; + }); + // 首页筛选展示更多 $('.screen .more-btn').click(function() { if($(this).find('ins').html() == '更多'){ diff --git a/locking.html b/locking.html index aa23603..8dc5669 100644 --- a/locking.html +++ b/locking.html @@ -95,162 +95,162 @@ - - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+
    +
  • + 患者代号 + 性别 + 年龄 + 常驻地区 + 锁定情况 + 详情 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 已锁定 + 查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 已锁定 + 查看 +
  • +
+ +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +
diff --git a/order.html b/order.html new file mode 100644 index 0000000..2aa6f9c --- /dev/null +++ b/order.html @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + 购买订单-一线希望 + + + + + + + + + + + + +
+
+ +

+ 一线希望 +

+ + + +
+ + + + +
+ + +
+ + + +
+
+
+ +
+ +
+
患者信息
+
+ + 患者代号 + 患者代号:sc20220423123 + + + 性别 + 性别:男性 + + + 常驻地区 + 常驻地区:北京 + + + 上传病例日期:2022.04.22 + + + 首次诊断日期:2021.12.20 + +
+
+
+

主要诊断:实体瘤-血液肿瘤-三级菜单名年龄:65

+

病情介绍文字后台替换毕业于某知名211计算机系硕士学历,期间研究编译和编译优化发表多篇论文,7年计算机、软件工程科班出身,基础扎实。参加工作供职知名银行,具备多年网站、后端服务架构经验和大型软件管理,以及大型软件性能调优、架构演进经验全栈工程师:对银行、保险、物联网、工控、3D打印、游戏等诸多领域有积累。

+
+
+
+ + 上传人 + 上传人:周蓓蓓 + 周蓓蓓 + +
+
+ +
+
支付方式
+
    +
  • +
    + 充值凭证 + + 请上传支付凭证图片 +
    +
  • +
+
+ +
+ + + + + diff --git a/patient-admin.html b/patient-admin.html index b07bf10..c425703 100644 --- a/patient-admin.html +++ b/patient-admin.html @@ -91,162 +91,162 @@
- - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+
    +
  • + 患者代号 + 性别 + 年龄 + 上传人 + 审核情况 + 详情 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 待审核 + 修改|查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 审核中 + 修改|查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 审核未通过 + 修改|查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 审核通过 + 修改|查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 待审核 + 修改|查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 审核中 + 修改|查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 审核未通过 + 修改|查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 审核通过 + 修改|查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 待审核 + 修改|查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 审核中 + 修改|查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 审核未通过 + 修改|查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 审核通过 + 修改|查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 待审核 + 修改|查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 审核中 + 修改|查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 审核未通过 + 修改|查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 审核通过 + 修改|查看 +
  • +
+ +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +
diff --git a/patient.html b/patient.html index ed2426c..1664a26 100644 --- a/patient.html +++ b/patient.html @@ -92,162 +92,162 @@
- - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+
    +
  • + 患者代号 + 性别 + 年龄 + 常驻地区 + 审核情况 + 详情 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 未审核 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 审核中 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 审核未通过 + 查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 审核通过 + 查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 未审核 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 审核中 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 审核未通过 + 查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 审核通过 + 查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 未审核 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 审核中 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 审核未通过 + 查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 审核通过 + 查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 未审核 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 审核中 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 审核未通过 + 查看 +
  • +
  • + sc20220423123 + 女士 + 37 + 重庆 + 审核通过 + 查看 +
  • +
+ +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +
diff --git a/purchased.html b/purchased.html index 6bc70c3..9437a89 100644 --- a/purchased.html +++ b/purchased.html @@ -95,162 +95,162 @@
- - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+
    +
  • + 患者代号 + 性别 + 年龄 + 常驻地区 + 购买情况 + 详情 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 未激活账户 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 购买成功 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 购买失败 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 购买成功 + 查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 未激活账户 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 购买成功 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 购买失败 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 购买成功 + 查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 未激活账户 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 购买成功 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 购买失败 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 购买成功 + 查看 +
  • +
  • + sc20220423123 + 男士 + 89 + 北京 + 未激活账户 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 购买成功 + 查看 +
  • +
  • + sc20220423123 + 男士 + 26 + 四川 + 购买失败 + 查看 +
  • +
  • + sc20220423123 + 女士 + 48 + 上海 + 购买成功 + 查看 +
  • +
+ +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +
diff --git a/recharge-admin.html b/recharge-admin.html index df208fc..6097374 100644 --- a/recharge-admin.html +++ b/recharge-admin.html @@ -91,145 +91,145 @@
- - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+
    +
  • + 充值账户 + 充值金额 + 充值时间 + 到账情况 + 详情 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
+ +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +
diff --git a/recharge-page.html b/recharge-page.html new file mode 100644 index 0000000..765dea6 --- /dev/null +++ b/recharge-page.html @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + 充值-一线希望 + + + + + + + + + + + + +
+
+ +

+ 一线希望 +

+ + + +
+ + + + +
+ + +
+ + + +
+
+
+ +
+
+
+ 高高兴 +
+

高高兴

+

联系方式:13852526255

+
+
+
+ 账户余额:5526.00 + +
+
+ +
+ +
+
+
    +
  • + 充值到账户* + +
  • +
  • + 充值金额* +
    + +
    +
  • +
  • + 上传充值凭证* +
    + 充值凭证 + +
    +
  • +
+ +
+
+ + + + + + diff --git a/recharge.html b/recharge.html index c4ea8bb..b2c6832 100644 --- a/recharge.html +++ b/recharge.html @@ -95,111 +95,111 @@
- - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+
    +
  • + 充值时间 + 充值金额 + 充值账户 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 3200.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
+ +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +
diff --git a/register.html b/register.html index e91c0e8..e2d7bc9 100644 --- a/register.html +++ b/register.html @@ -61,7 +61,7 @@
-
- 123 + +
+

基本信息

+ +

预诊信息

+ +
diff --git a/user-admin.html b/user-admin.html index d59acea..adcba5d 100644 --- a/user-admin.html +++ b/user-admin.html @@ -91,162 +91,162 @@ - - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+ + +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +
diff --git a/user.html b/user.html index 8eeb3d3..dca9d82 100644 --- a/user.html +++ b/user.html @@ -129,7 +129,7 @@
- +
- - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+
    +
  • + 提现账户 + 提现金额 + 提现时间 + 到账情况 + 详情 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 已到账 + 修改|查看 +
  • +
  • + sc20220423123 + 568.00 + 2022-04-06 10:34:02 + 未到账 + 修改|查看 +
  • +
+ +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +
diff --git a/withdrawal-page.html b/withdrawal-page.html new file mode 100644 index 0000000..168a4c2 --- /dev/null +++ b/withdrawal-page.html @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + 提现-一线希望 + + + + + + + + + + + + +
+
+ +

+ 一线希望 +

+ + + +
+ + + + +
+ + +
+ + + +
+
+
+ +
+
+
+ 高高兴 +
+

高高兴

+

联系方式:13852526255

+
+
+
+ 账户余额:5526.00 + +
+
+ + +
+
    +
  • + 提现到账户* + +
  • +
  • + 提现金额* +
    + +
    +
  • +
+ +
+
+ + + + + + diff --git a/withdrawal.html b/withdrawal.html index 72cf2c8..9f52048 100644 --- a/withdrawal.html +++ b/withdrawal.html @@ -92,111 +92,111 @@
- - -
- - -
- - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - > - + +
+
    +
  • + 提现时间 + 提现金额 + 提现账户 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
  • + 2022-04-06 10:34:02 + 568.00 + 到账时间2022-04-06 10:34:02账户余额4982.00 +
  • +
+ +
+ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + > + +