guhongwei 5 years ago
parent
commit
c88bafd763

+ 23 - 0
src/layout/technical/detail.vue

@@ -16,6 +16,10 @@
           <div class="detailcontext">
             <p v-html="detailinfo.content"></p>
           </div>
+          <div class="development">
+            <p>功能开发中</p>
+            <p>功能实现流程:<span>问诊记录展示</span>-<span>在线咨询</span>-<span>专家在线问诊</span></p>
+          </div>
         </div>
       </div>
     </div>
@@ -110,5 +114,24 @@ export default {
 
 .detailcontext {
   padding: 20px 0;
+  min-height: 370px;
+}
+.development {
+  height: 50px;
+  border: 1px dashed red;
+  padding: 0 30px;
+  p:first-child {
+    text-align: center;
+    font-size: 18px;
+    color: red;
+    font-weight: bold;
+  }
+  p:last-child {
+    text-align: center;
+    height: 25px;
+    line-height: 25px;
+    font-size: 16px;
+    font-weight: bold;
+  }
 }
 </style>

+ 1 - 1
src/views/detail/detail.vue

@@ -106,6 +106,6 @@ export default {
 }
 
 .detailcontext {
-  padding: 20px 0px;
+  padding: 20px 40px 60px 40px;
 }
 </style>

+ 3 - 1
src/views/direct.vue

@@ -832,9 +832,11 @@ export default {
   }
   .two {
     padding: 15px;
+    height: 466px;
+    overflow: auto;
     .twoList {
       box-shadow: 0 0 3px red;
-      margin-bottom: 15px;
+      margin-bottom: 30px;
       padding: 15px;
       .image {
         border-radius: 90px;

+ 3 - 3
src/views/technical/list.vue

@@ -25,7 +25,7 @@
           <el-col :span="24" class="leftTop">
             <span>|</span> <span>{{ menuName }}</span>
           </el-col>
-          <el-col class="infoRightList" :span="24" v-for="(item, index) in jishuList" :key="index">
+          <el-col class="infoRightList" :span="24" v-for="(item, index) in exportList" :key="index">
             <p>
               <span class="textOver" @click="clickjishu(item.id)">{{ item.title }}</span
               ><span class="textOver">{{ item.publish_time }}</span>
@@ -109,7 +109,7 @@ export default {
     pageSize: 10,
     limit: 10,
     zhuantiList: [],
-    jishuList: [],
+    exportList: [],
     hangyeList: [],
     jiaoyuList: [],
   }),
@@ -161,7 +161,7 @@ export default {
         this.$set(this, `zhuantiList`, res.data);
       } else if (name == '专家问诊') {
         res = await this.query({ skip, limit, column_name: '专家问诊', ...info });
-        this.$set(this, `jishuList`, res.data);
+        this.$set(this, `exportList`, res.data);
       } else if (name == '行业研究') {
         res = await this.query({ skip, limit, column_name: '行业研究', ...info });
         this.$set(this, `hangyeList`, res.data);