diff --git a/src/assets/img/DataCenter/right.png b/src/assets/img/DataCenter/right.png new file mode 100644 index 0000000000000000000000000000000000000000..44356df0359628882543279271e8c7582e56f557 Binary files /dev/null and b/src/assets/img/DataCenter/right.png differ diff --git a/src/assets/img/DataCenter/wrong.png b/src/assets/img/DataCenter/wrong.png new file mode 100644 index 0000000000000000000000000000000000000000..e41fb5b2fcef8449efd4517a4b16e2d9edbb9488 Binary files /dev/null and b/src/assets/img/DataCenter/wrong.png differ diff --git a/src/components/FormComponents/CustomForm/FormItemSelf.vue b/src/components/FormComponents/CustomForm/FormItemSelf.vue index 71b8cf47bc0084966ef1fe8dce3497abbfccac0e..3df0aaa5826594a0a54d0d7ec16a1e8ef76cda44 100644 --- a/src/components/FormComponents/CustomForm/FormItemSelf.vue +++ b/src/components/FormComponents/CustomForm/FormItemSelf.vue @@ -701,12 +701,10 @@ export default { if ( prop == "early_gastric_cancer" || prop == "period_gastric_cancer" || - prop == "esophagus_level" + prop == "inogm_level" ) { let flag = false - this.form.esophagus_level == "high" - ? (flag = true) - : (flag = false) + this.form.inogm_level == "high" ? (flag = true) : (flag = false) if (!flag) { if (this.form.early_gastric_cancer) { this.form.early_gastric_cancer.length > 0 diff --git a/src/layouts/index.vue b/src/layouts/index.vue index 4b7783ae39c275164a51eb7148da81b723f9c02e..6e6810e05b66171f238cfea2ccc34982eeadcc2b 100644 --- a/src/layouts/index.vue +++ b/src/layouts/index.vue @@ -51,6 +51,7 @@ :close-on-press-escape="false" :show-close="false" width="70%" + top="10vh" >
请选择您的筛查填报场景
@@ -90,7 +91,88 @@ >确定
+
+ 注意,本系统筛查对象为:
+ 无消化道症状(腹痛,腹泻,消化道出血等)的一般人群,住院及胃癌术后患者切勿上传至本系统,详细条件见入排标准。
+ 点击查看详情 +
+ +
+
入排标准
+
+
+
+ {{ item.title }} +
+
+
+ + + + + +
+
+
+
+
+
+ 返回 +
+
@@ -122,6 +204,7 @@ export default { data() { return { modalFlag: false, + innerVisible: false, screeningList: [ { title: "社区筛查", @@ -144,6 +227,51 @@ export default { ], selectedIndex: "1", curSelectedIndex: "", + innerTable: [ + { + title: "纳入标准(同时满足2条)", + list: [{ type: "text", value: "男性年龄40~79岁,女性50~79岁;" }], + }, + { + title: "排除标准(任意一条符合即排除)", + list: [ + { type: "text", value: "距上次胃镜检查间隔时间一年内;" }, + { type: "text", value: "胃大部切除术手术史;" }, + { + type: "text", + value: + "两周内服用PPI(埃索美拉唑、泮托拉唑、雷贝拉唑、兰索拉唑等)或H2受体拮抗剂(法莫替丁等);", + }, + { + type: "list", + value: { + value: "有下列一种或多种症状:", + list: [ + "6个月内缺铁性贫血;", + "12个月内消化道出血(黑便、血便等);", + "体重减轻(非减肥原因6个月内体重减轻≥4.5Kg);", + "经常性腹泻;", + "吞咽困难或哽噎感;", + "腹部肿块。", + ], + }, + }, + { + type: "text", + value: + "有以下任何一种疾病史:食管癌、胃癌、结直肠肿瘤、息肉病、炎症性肠病、其它器官恶性肿瘤(乳腺、卵巢、子宫及泌尿系统等);", + }, + { + type: "text", + value: "影像、肿瘤标志物等检查高度怀疑罹患肿瘤可能;", + }, + { + type: "text", + value: "严重心、肺、肝、肾功能不全,或严重精神疾患。", + }, + ], + }, + ], } }, computed: { @@ -400,13 +528,84 @@ export default { } } } - .submit { - margin-top: 60px; + + .tips { + width: 100%; + background: #f5f5f5; + border-radius: 4px; + line-height: 22px; + padding: 20px; + margin-top: 40px; + } +} +.innerBody { + padding: 0 40px; + .title { + font-size: 24px; + font-family: AlibabaPuHuiTiM; + color: #333333; text-align: center; - .btn { - width: 100px; - height: 32px; + margin-bottom: 40px; + } + .innerTable { + border-radius: 4px; + border: 1px solid #dddddd; + border-radius: 4px; + .col_item { + display: flex; + .left { + width: 35%; + min-height: 72px; + display: flex; + justify-content: flex-start; + padding-left: 20px; + align-items: center; + font-size: 18px; + font-family: AlibabaPuHuiTiM; + font-weight: bold; + color: #333333; + border-right: 1px solid #eff0f3; + // border-bottom: 1px solid #eff0f3; + } + .right { + flex: 1; + .r_col_item { + min-height: 72px; + display: flex; + justify-content: flex-start; + align-items: center; + padding: 20px 0 20px 20px; + img { + width: 26px; + height: 26px; + } + .r_text { + font-size: 16px; + font-family: AlibabaPuHuiTiR; + color: #333333; + font-weight: bold; + } + ul { + li { + height: 30px; + font-size: 16px; + font-family: AlibabaPuHuiTiR; + color: #666666; + line-height: 30px; + } + } + } + } } } } +.submit { + margin-top: 60px; + text-align: center; + .btn { + width: 100px; + border-radius: 4px; + height: 32px; + } +}