|
|
@@ -65,22 +65,29 @@
|
|
|
<span>{{ scope.row.status === 1 ? '正常' : '已冻结' }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="民宿等级" align="center" width="110">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.type == 1">银宿级</span>
|
|
|
+ <span v-else-if="scope.row.type == 2">金宿级</span>
|
|
|
+ <span v-else="scope.row.type == 3">白金级</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="民宿名称" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.hotelName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="联系人(法人)" align="center">
|
|
|
+ <el-table-column label="联系人(法人)" align="center" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.corpnName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="联系电话" align="center">
|
|
|
+ <el-table-column label="联系电话" align="center" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.corpnPhone }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="所属乡镇" align="center">
|
|
|
+ <el-table-column label="所属乡镇" align="center" width="130">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.hotelTownshipName}}</span>
|
|
|
</template>
|
|
|
@@ -145,7 +152,7 @@
|
|
|
</el-form-item>
|
|
|
<div
|
|
|
style="font-size: 18px;font-weight: 400;letter-spacing: 0px;line-height: 26.06px;color: rgba(212, 48, 48, 1);text-align: left;vertical-align: top;">
|
|
|
- 注:账号解冻后,密码默认为Jams_123456</div>
|
|
|
+ 注:密码默认为Jams_123456</div>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<div style="font-size: 16px;font-weight: 700; color: rgba(0, 0, 0, 1); margin: -10px 0 20px 20px;">提现信息</div>
|
|
|
@@ -221,7 +228,7 @@
|
|
|
</el-form-item>
|
|
|
<div
|
|
|
style="font-size: 18px;font-weight: 400;letter-spacing: 0px;line-height: 26.06px;color: rgba(212, 48, 48, 1);text-align: left;vertical-align: top;">
|
|
|
- 注:账号解冻后,密码默认为Jams_123456</div>
|
|
|
+ 注:密码默认为Jams_123456</div>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<div style="font-size: 16px;font-weight: 700; color: rgba(0, 0, 0, 1); margin: -10px 0 20px 20px;">提现信息</div>
|
|
|
@@ -803,7 +810,7 @@
|
|
|
};
|
|
|
return {
|
|
|
currentUserLevel: this.$store.state.user.level, // 当前用户的权限
|
|
|
- activeName: 'first', // 默认激活那个选项卡
|
|
|
+ activeName: 'first', // 默认激活第一个选项卡
|
|
|
dialogResidentialHostelConfigurationVisible: false, // 民宿配置对话框显示和隐藏变量
|
|
|
dialogAddHostelFormVisible: false, // 添加民宿对话框显示和隐藏变量
|
|
|
dialogModifyHostelFormVisible: false, // 修改对话框的显示和隐藏变量
|
|
|
@@ -870,15 +877,23 @@
|
|
|
bankCard: '',
|
|
|
cardName: '',
|
|
|
bankName: '',
|
|
|
- jibie:[
|
|
|
- {id:1,jibieName:'银宿级'},
|
|
|
- {id:2,jibieName:'金宿级'},
|
|
|
- {id:3,jibieName:'白金级'},
|
|
|
- ],//民宿级别
|
|
|
- jibieId:'',
|
|
|
+ jibie: [{
|
|
|
+ id: 1,
|
|
|
+ jibieName: '银宿级'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 2,
|
|
|
+ jibieName: '金宿级'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 3,
|
|
|
+ jibieName: '白金级'
|
|
|
+ },
|
|
|
+ ], //民宿级别
|
|
|
+ jibieId: '',
|
|
|
fileUrl: '', // 图片上传列表
|
|
|
url: '', // 上传的图片列表
|
|
|
- linkproUrl:'',//720全景链接
|
|
|
+ linkproUrl: '', //720全景链接
|
|
|
level: this.$store.state.user.level
|
|
|
},
|
|
|
addHostelFormRules: {
|
|
|
@@ -928,15 +943,23 @@
|
|
|
bankCard: '',
|
|
|
cardName: '',
|
|
|
bankName: '',
|
|
|
- jibie:[
|
|
|
- {id:1,jibieName:'银宿级'},
|
|
|
- {id:2,jibieName:'金宿级'},
|
|
|
- {id:3,jibieName:'白金级'},
|
|
|
- ],//民宿级别
|
|
|
- type:'',
|
|
|
+ jibie: [{
|
|
|
+ id: 1,
|
|
|
+ jibieName: '银宿级'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 2,
|
|
|
+ jibieName: '金宿级'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 3,
|
|
|
+ jibieName: '白金级'
|
|
|
+ },
|
|
|
+ ], //民宿级别
|
|
|
+ type: '',
|
|
|
fileUrl: '', // 图片上传列表
|
|
|
url: '', // 上传的图片列表
|
|
|
- linkProUrl:'',//720全景链接
|
|
|
+ linkProUrl: '', //720全景链接
|
|
|
level: this.$store.state.user.level
|
|
|
},
|
|
|
modifyHostelFormRules: {
|
|
|
@@ -1372,7 +1395,7 @@
|
|
|
this.formModifyHostel.id = row.id;
|
|
|
if (typeof t === 'number' && isNaN(t)) {
|
|
|
this.formModifyHostel.hotelTownship = "";
|
|
|
- } else{
|
|
|
+ } else {
|
|
|
this.formModifyHostel.hotelTownship = t;
|
|
|
}
|
|
|
this.formModifyHostel.hotelName = row.hotelName;
|