ct 1 dzień temu
rodzic
commit
6a99c1a13b

+ 9 - 0
.env.prod-jnmy

@@ -4,6 +4,15 @@ VUE_APP_TITLE = 医生服务系统
 # 页面标题
 VUE_APP_IM_CONFIG = 1600089873
 
+# 公司名称
+VUE_APP_COMPANY_NAME =成都金牛明医云联互联网医院有限公司
+# ICP备案号
+VUE_APP_ICP_RECORD =蜀ICP备2024052643号-6
+# ICP网站访问地址
+VUE_APP_ICP_URL =https://beian.miit.gov.cn
+# 网站LOG
+VUE_APP_LOG_URL =@/assets/logo/jnmy.png
+
 # 生产环境配置
 ENV = 'production'
 

+ 1 - 1
src/views/doctorArticle/doctorArticle/index.vue

@@ -256,7 +256,7 @@ export default {
     this.getList();
     var data={}
     getDoctorArticleCateList(data).then(response => {
-      this.cates = response.data.list;
+      this.cates = response.data;
     });
     this.getDicts("sys_doctor_article_status").then(response => {
       this.articleStatus = response.data;

+ 7 - 7
src/views/myDrugStore/common.vue

@@ -442,7 +442,7 @@ export default {
       }
     },
     selectProduct(row){
-      if(this.form.prescribeType==row.productType){
+      // if(this.form.prescribeType==row.productType){
         const drug = {};
         for(var i=0;i<this.drugList.length;i++){
           if(this.drugList[i].productAttrValueId==row.id){
@@ -465,12 +465,12 @@ export default {
           message: '添加成功',
           type: 'success'
         });
-      }else{
-        return  this.$message({
-          message: '请选择正确类型的药品',
-          type: 'warning'
-        });
-      }
+      // }else{
+      //   return  this.$message({
+      //     message: '请选择正确类型的药品',
+      //     type: 'warning'
+      //   });
+      // }
     },
     /** 新增按钮操作 */
     handleAdd(type) {