e 5 years ago
parent
commit
8e075078b0
3 changed files with 9 additions and 9 deletions
  1. 3 3
      src/api/club.js
  2. 2 2
      src/components/Ctiy/index.vue
  3. 4 4
      src/router/modules/club.js

+ 3 - 3
src/api/club.js

@@ -1,7 +1,7 @@
 import request from '@/utils/request'
 
 /**
- *编辑会所
+ *编辑机构
  */
 export function addNewClub(query) {
   return request({
@@ -11,7 +11,7 @@ export function addNewClub(query) {
   })
 }
 /**
- *上线会所
+ *上线机构
  */
 export function saveAddClubUser(query) {
   return request({
@@ -21,7 +21,7 @@ export function saveAddClubUser(query) {
   })
 }
 /**
- *会所列表
+ *机构列表
  */
 export function getClubList(query) {
   return request({

+ 2 - 2
src/components/Ctiy/index.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="address">
     <el-form :rules="rules" :model="from" :label-width="'130px'" style="width: 670px;text-align: right;">
-      <el-form-item label="会所地址:" prop="province" style="float: left;width: 300px;margin-right: 8px;position: relative">
+      <el-form-item label="机构地址:" prop="province" style="float: left;width: 300px;margin-right: 8px;position: relative">
         <el-select
           v-model="from.province"
           placeholder="请选择"
@@ -15,7 +15,7 @@
             :value="item.provinceID"
           />
         </el-select>
-        <span v-show="isAddress" class="span-tip">会所地址不能为空</span>
+        <span v-show="isAddress" class="span-tip">机构地址不能为空</span>
       </el-form-item>
       <el-form-item prop="city" style="float: left;margin-left: 0;margin-right: 8px;">
         <el-select

+ 4 - 4
src/router/modules/club.js

@@ -6,20 +6,20 @@ const clubRouter = {
   component: Layout,
   redirect: '/club/list',
   name: 'Club',
-  meta: { title: '会所管理', icon: 'ma-club' },
+  meta: { title: '机构管理', icon: 'ma-club' },
   alwaysShow: true,
   children: [
     {
       path: 'list',
       name: 'List',
       component: () => import('@/views/club/list'),
-      meta: { title: '会所列表', icon: 'ma-club-list' }
+      meta: { title: '机构列表', icon: 'ma-club-list' }
     },
     {
       path: 'form',
       name: 'Form',
       component: () => import('@/views/club/form'),
-      meta: { title: '上线会所', icon: 'ma-club-form' },
+      meta: { title: '上线机构', icon: 'ma-club-form' },
       hidden: true
     },
     {
@@ -33,7 +33,7 @@ const clubRouter = {
       path: 'editForm',
       component: () => import('@/views/club/editForm'),
       name: 'EditForm',
-      meta: { title: '编辑会所', noCache: true, activeMenu: '/club/list' },
+      meta: { title: '编辑机构', noCache: true, activeMenu: '/club/list' },
       hidden: true
     }
   ]