xiezhiming 10 tháng trước cách đây
mục cha
commit
3add7407cf

+ 1 - 1
src/App.vue

@@ -12,7 +12,7 @@
   import utils from '@api/utils.js';
   import api from './api/user.js';
   import icss from './api/icss.js';
-  document.title='朗通云平台'; //修改标签页标题
+  document.title='云平台'; //修改标签页标题
   export default {
     name: 'app',
     created() {

+ 1 - 1
src/components/common/Banner.vue

@@ -2,7 +2,7 @@
     <div class="container">
         <div class="banner">
             <div class="logo fl">
-                <img  src="../../images/logo.png" alt="朗通logo"/>
+                <!--<img  src="../../images/logo.png" alt="logo"/>-->
                 <span class="bannerName">云平台</span>
                 <!-- <img class="img-title" src="../../images/title.png"/> -->
             </div>

+ 2 - 2
src/components/common/CopyRightInfo.vue

@@ -1,8 +1,8 @@
 <template>
     <footer class="copyRightContainer">
         <div>
-            <span class="copyRightInfo">版权所有:杭州朗通信息技术有限公司</span>
-            <a class="copyRightNum" href="http://www.beian.miit.gov.cn" target="_blank">浙ICP备:16000400号-2</a>
+            <span class="copyRightInfo"></span>
+            <!--<a class="copyRightNum" href="http://www.beian.miit.gov.cn" target="_blank">浙ICP备:16000400号-2</a>-->
         </div>
     </footer>
 </template>

+ 1 - 1
src/components/common/HomePage.vue

@@ -3,7 +3,7 @@
     <el-aside v-show="onshow">
       <div class="logo">
         <p v-if="userLoginDTO && userLoginDTO.type == '1'">
-          <b>朗通后台管理系统</b>
+          <b>后台管理系统</b>
         </p>
         <p v-if="userLoginDTO && userLoginDTO.type == '0'">
           <b>DiagbotCloud</b>

+ 5 - 5
src/components/knowledgeExtra/AddZskClassicCase.vue

@@ -2,7 +2,7 @@
   <el-scrollbar style="height: 100%" ref="elscrollbar" id="message-container">
     <div class="NoiseTemplateWrapper TemplateWrapper knowledgeWrapper">
       <crumbs
-        :title="'经典病维护-' + title"
+        :title="'经典病维护-' + title"
         class="topBack"
         :param="$route.params"
         linkTo="ClassicCase"
@@ -65,7 +65,7 @@
               @click="tabActiveChange('one')"
               v-if="classicTabShow"
             >
-              经典病
+              经典病
               <img
                 @click.stop="handleStaticTab"
                 src="@/images/tab_add.png"
@@ -575,7 +575,7 @@ export default {
       //搜索术语列表
       this.showDrop = true;
       api
-        .classicCaseBaseInfo({ inputStr: query.trim(), types: [0] })
+        .classicCaseBaseInfo({ inputStr: query.trim(), types: [11] })
         .then(res => {
           this.showDrop = false;
           if (res.data.code === '0') {
@@ -697,7 +697,7 @@ export default {
           this.tabActive = 'one';
           this.$message({
             showClose: true,
-            message: `"经典病"和"评估内容"标签内有未填写项目,请填写完整或者删除该标签!`,
+            message: `"经典病"和"评估内容"标签内有未填写项目,请填写完整或者删除该标签!`,
             type: 'warning'
           });
         } else if (cErrIndex != -1 && fErrIndex == -1) {
@@ -727,7 +727,7 @@ export default {
           this.tabActive = 'one';
           this.$message({
             showClose: true,
-            message: `"经典病"标签内有未填写项目,请填写完整或者删除该标签!`,
+            message: `"经典病"标签内有未填写项目,请填写完整或者删除该标签!`,
             type: 'warning'
           });
         } else {

+ 12 - 1
src/components/knowledgeExtra/DiseaseTree.vue

@@ -173,7 +173,16 @@ export default {
               "level": 1,
               "sonRelationId": 17,
               "isExpanded": false
-          }],
+          }, //{
+          //  "conceptId": 516,
+          //  "conceptName": "疾病相关经典病例",
+          //  "nodeList": [],
+          //  "libType": [411],
+          // "level": 1,
+          // "sonRelationId": 17,
+          //  "isExpanded": false
+          //}
+        ],
           "level": 0,
           "isExpanded": false
         },
@@ -216,6 +225,7 @@ export default {
           let item = JSON.parse(tmp)
           item.level = 0
           item.isExpanded = false
+          console.log(item.nodeList);
           item.nodeList = this.IteraNodeList(item.nodeList, [], 1)
           let arr = []
           arr[0] = item
@@ -279,6 +289,7 @@ export default {
       IteraNodeList(nodeList,  nodeListResult, type, level = 1) {
         this.level= level + 1
         for(let i = 0; i <nodeList.length; i++) {
+          //console.log(nodeList[i]);
           let newChild;
           if(type == '0') { //添加的时候保存所有的id列表
             newChild = {conceptId: nodeList[i].conceptId,libType:nodeList[i].libType, relationId: 17,nodeList:[],sonRelationId: 17, isExpanded:false}

+ 3 - 3
src/components/knowledgeExtra/classicCase.vue

@@ -1,6 +1,6 @@
 <template>
   <div>
-    <crumbs title="经典病维护">
+    <crumbs title="经典病维护">
       <el-form :inline="true" class="demo-form-inline">
         <el-form-item label="标准术语归类:">
           <el-select size="mini" v-model="filter.libType" placeholder="标准术语归类" clearable>
@@ -29,7 +29,7 @@
             type="warning"
             style="margin:0 10px"
             @click="addMedicalPrompt"
-          >添加经典病</el-button>
+          >添加经典病</el-button>
         </el-form-item>
       </el-form>
     </crumbs>
@@ -294,7 +294,7 @@ export default {
         .catch(() => {});
     },
     showDelDialog(row) {
-      this.showConfirmDialog('是否禁用该经典病?', () => {
+      this.showConfirmDialog('是否禁用该经典病?', () => {
         api
           .changeCaseStatus({ id: row.id, status: 0 })
           .then(res => {

+ 1 - 1
src/components/user/AlreadyToken.vue

@@ -96,7 +96,7 @@
         total:1,
         del:'删除',
         toast:true,
-        text:'您确定要删除该服务端?删除该服务端可能无法使用朗通产品,可能会影响现有业务。',
+        text:'您确定要删除该服务端?删除该服务端可能无法使用产品,可能会影响现有业务。',
         serviceIndex:null
       }
     },

+ 1 - 1
src/components/user/CreatedToken.vue

@@ -98,7 +98,7 @@
       },
       delKey(){
         this.toast = false;
-        this.text = "您确定要删除该令牌吗?删除该令牌可能无法使用朗通产品,可能会影响现有业务。";
+        this.text = "您确定要删除该令牌吗?删除该令牌可能无法使用产品,可能会影响现有业务。";
         this.btnText = "立即删除";
         this.btnFlag = 1;
       },

+ 1 - 1
src/components/user/HomePage.vue

@@ -2,7 +2,7 @@
     <el-container class="user">
         <el-aside>
             <div class="logo">
-                <p><b>朗通后台管理系统</b></p>
+                <p><b>后台管理系统</b></p>
             </div>
             <lt-menu v-if="data&&data.menuWrappers.length" v-bind:data="data.menuWrappers"></lt-menu>
         </el-aside>

+ 1 - 1
src/components/user/ManageService.vue

@@ -84,7 +84,7 @@
         total:1,
         del:'删除',
         toast:true,
-        text:'您确定要删除该服务端?删除该服务端可能无法使用朗通产品,可能会影响现有业务。',
+        text:'您确定要删除该服务端?删除该服务端可能无法使用产品,可能会影响现有业务。',
         serviceIndex:null
       }
     },

+ 4 - 4
src/components/user/MoreService.vue

@@ -5,7 +5,7 @@
         <div slot="mini" class="miniTit">更多服务</div>
       </MiniTitle>
       <!-- 用户未认证时展示 -->
-        <p v-show="userStatus==0" class="trial">账号认证通过后,可开通朗通产品! <span @click="authen">立即认证</span></p>
+        <p v-show="userStatus==0" class="trial">账号认证通过后,可开通产品! <span @click="authen">立即认证</span></p>
         <el-row :gutter="20">
             <el-col :span="8" v-for="(item,index) in notOpenProduct" :key="item.id">
               <!-- <div :class="['grid-content bg-purple',{'add-border':item.choose}]"> -->
@@ -65,7 +65,7 @@
             accessDesc:{
               '嵌入式':'Diagbot整体嵌入合作方软件,从合作方软件中获取主诉,既往史等信息,由Diagbot后端统一处理并推送产生的业务记录,通过接口返回给系统协同作业。',
               '数据服务模式':'始终隐匿于后台,合作方通过接口形式向Diagbot输入信息,经过Diagbot计算后将分析结果推送给合作方软件并在其界面展示,前端灵活多变',
-              '线上模式':'用户在线上购买产品和服务后,通过登陆朗通云平台使用授权的产品和服务',
+              '线上模式':'用户在线上购买产品和服务后,通过登陆云平台使用授权的产品和服务',
             },
             chargeType:{
               '1':'按流程计费',
@@ -164,11 +164,11 @@
                   }else if(+result.data.authStatus == 0){//未认证
                     this.toast = false;
                     this.type = 2;
-                    this.text = "感谢您申请开通朗通产品,为提供优质的服务,还需完善账号信息。如想了解更多产品信息,可致电:0571-666666";
+                    this.text = "感谢您申请开通产品,为提供优质的服务,还需完善账号信息。如想了解更多产品信息,可致电:0571-666666";
                   }else if(+result.data.authStatus == 2){//认证中
                     this.toast = false;
                     this.type = 1;
-                    this.text = "感谢您申请开通朗通产品,您的账号信息正在认证中,请耐心等候。如想了解更多产品信息,可致电:0571-666666";
+                    this.text = "感谢您申请开通产品,您的账号信息正在认证中,请耐心等候。如想了解更多产品信息,可致电:0571-666666";
                   }
 
                 } else {

+ 1 - 1
src/less/common.less

@@ -15,7 +15,7 @@
 @shadowColor: #b7b7b7;
 @borderWidth: 2px;
 
-/*朗通后台基本颜色*/
+/*后台基本颜色*/
 @adminBase: #48C5D7;
 @icssBorder: #c0c4cc;
 @icssHeight:240px;

+ 2 - 2
vue.config.js

@@ -1,8 +1,8 @@
 const path = require('path');
 // const proxy_path = 'http://192.168.2.241:88';
 
-const proxy_path = 'http://172.16.8.60:5050';
-// const proxy_path = 'http://173.18.12.195:5050';
+//const proxy_path = 'http://172.16.8.60:5050';
+const proxy_path = 'http://173.18.12.195:5050';
 
 // const proxy_path = 'http://192.168.3.117:5050';//周铁刚
 // const proxy_path = 'http://192.168.3.113:5050'; //王峰