Browse Source

fix:会员详情

ct 3 days ago
parent
commit
2ca7e103e8

+ 2 - 2
src/views/components/his/userPatietDetails.vue

@@ -305,7 +305,7 @@ export default {
     /** 查询病人列表 */
     getList() {
       this.loading = true;
-      listPatientList(this.queryParams).then(response => {
+      listPatient(this.queryParams).then(response => {
         this.patientList = response.rows;
         this.total = response.total;
         this.loading = false;
@@ -314,7 +314,7 @@ export default {
     getPatList(id){
       this.loading = true;
       this.queryParams.userId=id;
-      listPatientList(this.queryParams).then(response => {
+      listPatient(this.queryParams).then(response => {
         this.patientList = response.rows;
         this.total = response.total;
         this.loading = false;

+ 2 - 2
src/views/his/user/userDetails.vue

@@ -1,9 +1,9 @@
 <template>
   <div>
     <div style="background-color: #f0f2f5; padding-bottom: 20px; min-height: 100%; " >
-      <div style="padding: 20px; background-color: #fff;">
+      <!-- <div style="padding: 20px; background-color: #fff;">
         会员详情
-      </div>
+      </div> -->
     </div>
     <template>
       <el-tabs v-model="activeName"  :tab-position="tabPosition" style="height: 200px;margin: 40px">

+ 3 - 0
src/views/qw/sopTemp/index.vue

@@ -595,6 +595,9 @@ export default {
           this.title = "修改";
         }
         this.form = response.data;
+        if(response.data.project){
+          this.form.project = String(response.data.project)
+        }
         this.open = true;
       });
     },