Преглед на файлове

ross医师认证改体疗师认证

yuwenjun1997 преди 2 години
родител
ревизия
7e6d6cf2c9
променени са 1 файла, в които са добавени 5 реда и са изтрити 1 реда
  1. 5 1
      pages/_template/app/approve/personnel/operate/detail.vue

+ 5 - 1
pages/_template/app/approve/personnel/operate/detail.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="page md:flex md:justify-between">
-    <div class="page-title">医师认证</div>
+    <div class="page-title">{{ themeName === 'ross' ? '体疗师认证' : '医师认证' }}</div>
     <div class="page-top">
       <div class="swiper">
         <SimpleSwiper :imageList="doctorInfo.bannerList"></SimpleSwiper>
@@ -47,6 +47,7 @@
 </template>
 
 <script>
+import { mapGetters } from 'vuex'
 export default {
   layout: 'app',
   data() {
@@ -58,6 +59,9 @@ export default {
       },
     }
   },
+  computed:{
+    ...mapGetters(['themeName'])
+  },
   mounted() {
     this.initData()
   },