|
@@ -2,8 +2,8 @@
|
|
|
<div class="app-container">
|
|
|
<div class="app-header-search">
|
|
|
<el-form class="demo-form-inline">
|
|
|
- <el-form-item label="会所名称:" style="width:280px;float: left;">
|
|
|
- <el-input v-model="listQuery.userName" placeholder="请输入会所名称" maxlength="50" style="width:200px;" @keyup.enter.native="handleFilter" />
|
|
|
+ <el-form-item label="机构名称:" style="width:280px;float: left;">
|
|
|
+ <el-input v-model="listQuery.userName" placeholder="请输入机构名称" maxlength="50" style="width:200px;" @keyup.enter.native="handleFilter" />
|
|
|
</el-form-item>
|
|
|
<el-form-item label="联系人:" style="width:230px;float: left;">
|
|
|
<el-input v-model="listQuery.linkMan" placeholder="请输入联系人姓名" maxlength="10" style="width:150px" @keyup.enter.native="handleFilter" />
|
|
@@ -40,7 +40,7 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item style="width:100px;float: left;">
|
|
|
<router-link :to="'/club/form/'">
|
|
|
- <el-button type="primary">上线会所</el-button>
|
|
|
+ <el-button type="primary">上线机构</el-button>
|
|
|
</router-link>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
@@ -60,7 +60,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="账号" width="150" align="center" prop="account" />
|
|
|
- <el-table-column label="会所名称" width="180" align="center" prop="userName" />
|
|
|
+ <el-table-column label="机构名称" width="180" align="center" prop="userName" />
|
|
|
<el-table-column label="联系人" width="100" align="center" prop="linkMan" />
|
|
|
<el-table-column label="手机号" width="110" align="center" prop="bindMobile" />
|
|
|
<el-table-column class-name="status-col" label="上线状态" width="150" align="center" prop="status">
|
|
@@ -71,7 +71,7 @@
|
|
|
<el-button v-else type="primary" size="mini" @click="handOffline(row)">下线</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="center" label="会所地址" prop="address">
|
|
|
+ <el-table-column align="center" label="机构地址" prop="address">
|
|
|
<template slot-scope="{row}">
|
|
|
<span>{{ `${row.province}${row.city}${row.town}${row.address}` }}</span>
|
|
|
</template>
|
|
@@ -238,7 +238,7 @@ export default {
|
|
|
},
|
|
|
handOnline(row) {
|
|
|
this.updateTemp = Object.assign({}, { clubID: row.clubID, userID: row.userID, clubStatus: row.clubStatus, userOrganizeID: this.$store.getters.organizeID })
|
|
|
- this.$confirm('确定上线该会所吗?', '系统提示', {
|
|
|
+ this.$confirm('确定上线该机构吗?', '系统提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
@@ -250,7 +250,7 @@ export default {
|
|
|
},
|
|
|
handOffline(row) {
|
|
|
this.updateTemp = Object.assign({}, { clubID: row.clubID, userID: row.userID, clubStatus: row.clubStatus, userOrganizeID: this.$store.getters.organizeID })
|
|
|
- this.$confirm('确定下线该会所吗?', '系统提示', {
|
|
|
+ this.$confirm('确定下线该机构吗?', '系统提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|