|
@@ -1,94 +1,47 @@
|
|
<template>
|
|
<template>
|
|
<view>
|
|
<view>
|
|
- <u-navbar
|
|
|
|
- title="入驻"
|
|
|
|
- placeholder='true'
|
|
|
|
- >
|
|
|
|
- <view
|
|
|
|
- class="u-nav-slot"
|
|
|
|
- slot="left"
|
|
|
|
- >
|
|
|
|
- </view>
|
|
|
|
- </u-navbar>
|
|
|
|
|
|
+ <u-navbar title="入驻" placeholder='true' :autoBack="true">
|
|
|
|
+ </u-navbar>
|
|
<view>
|
|
<view>
|
|
- <u-swiper :list="fileList"
|
|
|
|
- autoplay
|
|
|
|
- imgMode='aspectFit'
|
|
|
|
- height='200'
|
|
|
|
- radius='0'
|
|
|
|
- :circular="true"
|
|
|
|
- @change="e => current = e.current" @click="click">
|
|
|
|
|
|
+ <u-swiper :list="fileList" autoplay radius='0' :circular="true"
|
|
|
|
+ @change="e => current = e.current" @click="click">
|
|
<view slot="indicator" class="indicator">
|
|
<view slot="indicator" class="indicator">
|
|
- <view
|
|
|
|
- class="indicator__dot"
|
|
|
|
- v-for="(item, index) in fileList"
|
|
|
|
- :key="index"
|
|
|
|
- :class="[index === current && 'indicator__dot--active']">
|
|
|
|
- </view>
|
|
|
|
|
|
+ <view class="indicator__dot" v-for="(item, index) in fileList" :key="index"
|
|
|
|
+ :class="[index === current && 'indicator__dot--active']">
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</u-swiper>
|
|
</u-swiper>
|
|
</view>
|
|
</view>
|
|
<view>
|
|
<view>
|
|
- <luyj-grid-link :list="list" @gridExc="clickGrid" @switchChange='switchChange'></luyj-grid-link>
|
|
|
|
|
|
+ <luyj-grid-link :list="list" @gridExc="clickGrid" @switchChange='switchChange'></luyj-grid-link>
|
|
</view>
|
|
</view>
|
|
- <u-modal :show="editshow" @confirm="$u.debounce(confirm,500)" title="选择自动跳转内容" >
|
|
|
|
- <view class="slot-content">
|
|
|
|
- <u-radio-group
|
|
|
|
- v-model="radiovalue1"
|
|
|
|
- placement="column"
|
|
|
|
- @change="groupChange"
|
|
|
|
- >
|
|
|
|
- <u-radio
|
|
|
|
- :customStyle="{marginBottom: '8px'}"
|
|
|
|
- v-for="(item, index) in radiolist1"
|
|
|
|
- :key="index"
|
|
|
|
- :label="item.value"
|
|
|
|
- :name="item.value"
|
|
|
|
- >
|
|
|
|
- </u-radio>
|
|
|
|
- </u-radio-group>
|
|
|
|
- </view>
|
|
|
|
- </u-modal>
|
|
|
|
- <u-tabbar
|
|
|
|
- :value="tabbarCheck"
|
|
|
|
- @change="tabbarChange"
|
|
|
|
- activeColor="#5F7DE9"
|
|
|
|
- >
|
|
|
|
|
|
+ <u-modal :show="editshow" @confirm="$u.debounce(confirm,500)" title="选择自动跳转内容" @cancel="editshow=false" closeOnClickOverlay showCancelButton>
|
|
|
|
+ <view class="slot-content">
|
|
|
|
+ <u-radio-group v-model="radiovalue1" placement="column" @change="groupChange">
|
|
|
|
+ <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in radiolist1" :key="index"
|
|
|
|
+ :label="item.value" :name="item.value">
|
|
|
|
+ </u-radio>
|
|
|
|
+ </u-radio-group>
|
|
|
|
+ </view>
|
|
|
|
+ </u-modal>
|
|
|
|
+ <u-tabbar :value="tabbarCheck" @change="tabbarChange" activeColor="#5F7DE9">
|
|
<u-tabbar-item name="team" text="加入">
|
|
<u-tabbar-item name="team" text="加入">
|
|
- <image
|
|
|
|
- class="u-page__item__slot-icon"
|
|
|
|
- slot="active-icon"
|
|
|
|
- src="@/static/image/nav-icon/antOutline-team Copy.png"
|
|
|
|
- ></image>
|
|
|
|
- <image
|
|
|
|
- class="u-page__item__slot-icon"
|
|
|
|
- slot="inactive-icon"
|
|
|
|
- src="@/static/image/nav-icon/antOutline-team.png"
|
|
|
|
- ></image>
|
|
|
|
|
|
+ <image class="u-page__item__slot-icon" slot="active-icon"
|
|
|
|
+ src="@/static/image/nav-icon/antOutline-team Copy.png"></image>
|
|
|
|
+ <image class="u-page__item__slot-icon" slot="inactive-icon"
|
|
|
|
+ src="@/static/image/nav-icon/antOutline-team.png"></image>
|
|
</u-tabbar-item>
|
|
</u-tabbar-item>
|
|
<u-tabbar-item name="notification" text="通知">
|
|
<u-tabbar-item name="notification" text="通知">
|
|
- <image
|
|
|
|
- class="u-page__item__slot-icon"
|
|
|
|
- slot="active-icon"
|
|
|
|
- src="@/static/image/nav-icon/md-notifications_none Copy.png"
|
|
|
|
- ></image>
|
|
|
|
- <image
|
|
|
|
- class="u-page__item__slot-icon"
|
|
|
|
- slot="inactive-icon"
|
|
|
|
- src="@/static/image/nav-icon/md-notifications_none.png"
|
|
|
|
- ></image>
|
|
|
|
|
|
+ <image class="u-page__item__slot-icon" slot="active-icon"
|
|
|
|
+ src="@/static/image/nav-icon/md-notifications_none Copy.png"></image>
|
|
|
|
+ <image class="u-page__item__slot-icon" slot="inactive-icon"
|
|
|
|
+ src="@/static/image/nav-icon/md-notifications_none.png"></image>
|
|
</u-tabbar-item>
|
|
</u-tabbar-item>
|
|
<u-tabbar-item name="user" text="我的">
|
|
<u-tabbar-item name="user" text="我的">
|
|
- <image
|
|
|
|
- class="u-page__item__slot-icon"
|
|
|
|
- slot="active-icon"
|
|
|
|
- src="@/static/image/nav-icon/antOutline-user1 Copy.png"
|
|
|
|
- ></image>
|
|
|
|
- <image
|
|
|
|
- class="u-page__item__slot-icon"
|
|
|
|
- slot="inactive-icon"
|
|
|
|
- src="@/static/image/nav-icon/antOutline-user1.png"
|
|
|
|
- ></image>
|
|
|
|
|
|
+ <image class="u-page__item__slot-icon" slot="active-icon"
|
|
|
|
+ src="@/static/image/nav-icon/antOutline-user1 Copy.png"></image>
|
|
|
|
+ <image class="u-page__item__slot-icon" slot="inactive-icon"
|
|
|
|
+ src="@/static/image/nav-icon/antOutline-user1.png"></image>
|
|
</u-tabbar-item>
|
|
</u-tabbar-item>
|
|
</u-tabbar>
|
|
</u-tabbar>
|
|
</view>
|
|
</view>
|
|
@@ -107,13 +60,13 @@
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- fileList:[],
|
|
|
|
- editshow:false,
|
|
|
|
- tabbarCheck:'team',
|
|
|
|
- showAuthorizePhone:false,
|
|
|
|
- showAuthorizeUser:false,
|
|
|
|
- radiolist1:[],
|
|
|
|
- radiovalue1:'',
|
|
|
|
|
|
+ fileList: [],
|
|
|
|
+ editshow: false,
|
|
|
|
+ tabbarCheck: 'team',
|
|
|
|
+ showAuthorizePhone: false,
|
|
|
|
+ showAuthorizeUser: false,
|
|
|
|
+ radiolist1: [],
|
|
|
|
+ radiovalue1: '',
|
|
userInfo: {
|
|
userInfo: {
|
|
head: '',
|
|
head: '',
|
|
nickname: '',
|
|
nickname: '',
|
|
@@ -134,94 +87,91 @@
|
|
fontSize: "32rpx",
|
|
fontSize: "32rpx",
|
|
background: "#5F7DE9"
|
|
background: "#5F7DE9"
|
|
},
|
|
},
|
|
- list: [
|
|
|
|
- {
|
|
|
|
- title: '全部分类',
|
|
|
|
- // cur: 'basic',
|
|
|
|
- bgColor: '', // 背景颜色
|
|
|
|
- color: 'blue',
|
|
|
|
- title_show: true,
|
|
|
|
- showAll: false,
|
|
|
|
- colNumber: 4, // 显示的列数
|
|
|
|
- iconsList: [
|
|
|
|
- {
|
|
|
|
|
|
+ list: [{
|
|
|
|
+ title: '全部分类',
|
|
|
|
+ // cur: 'basic',
|
|
|
|
+ bgColor: '', // 背景颜色
|
|
|
|
+ color: 'blue',
|
|
|
|
+ title_show: true,
|
|
|
|
+ showAll: false,
|
|
|
|
+ colNumber: 4, // 显示的列数
|
|
|
|
+ iconsList: [{
|
|
cuIcon: '1_canyin-35',
|
|
cuIcon: '1_canyin-35',
|
|
color: 'blue',
|
|
color: 'blue',
|
|
name: '餐饮',
|
|
name: '餐饮',
|
|
- status:true,
|
|
|
|
|
|
+ status: true,
|
|
url: '/pageA/enter/cateringindustry'
|
|
url: '/pageA/enter/cateringindustry'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
cuIcon: 'zufang',
|
|
cuIcon: 'zufang',
|
|
color: 'blue',
|
|
color: 'blue',
|
|
name: '民宿',
|
|
name: '民宿',
|
|
- status:true,
|
|
|
|
|
|
+ status: true,
|
|
url: '/pageA/enter/homestay'
|
|
url: '/pageA/enter/homestay'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- cuIcon: 'jiudian-38',
|
|
|
|
- color: 'blue',
|
|
|
|
- name: '酒店',
|
|
|
|
- status:true,
|
|
|
|
- url: '/pageA/enter/hotel'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
- },
|
|
|
|
|
|
+ cuIcon: 'jiudian-38',
|
|
|
|
+ color: 'blue',
|
|
|
|
+ name: '酒店',
|
|
|
|
+ status: true,
|
|
|
|
+ url: '/pageA/enter/hotel'
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
{
|
|
{
|
|
title: '我的入驻',
|
|
title: '我的入驻',
|
|
// cur: 'basic',
|
|
// cur: 'basic',
|
|
bgColor: '', // 背景颜色
|
|
bgColor: '', // 背景颜色
|
|
color: 'blue',
|
|
color: 'blue',
|
|
title_show: true,
|
|
title_show: true,
|
|
- foodEntry:0,
|
|
|
|
- homeEntry:0,
|
|
|
|
- hotelEntry:0,
|
|
|
|
- switch:true,
|
|
|
|
|
|
+ foodEntry: 0,
|
|
|
|
+ homeEntry: 0,
|
|
|
|
+ hotelEntry: 0,
|
|
|
|
+ switch: true,
|
|
showAll: false,
|
|
showAll: false,
|
|
- switch_status:true,
|
|
|
|
|
|
+ switch_status: true,
|
|
colNumber: 4, // 显示的列数
|
|
colNumber: 4, // 显示的列数
|
|
- iconsList: [
|
|
|
|
- {
|
|
|
|
|
|
+ iconsList: [{
|
|
cuIcon: '1_canyin-35',
|
|
cuIcon: '1_canyin-35',
|
|
color: 'blue',
|
|
color: 'blue',
|
|
name: '餐饮',
|
|
name: '餐饮',
|
|
- status:true,
|
|
|
|
|
|
+ status: true,
|
|
url: '/pageA/enter/myCateringdustry/index'
|
|
url: '/pageA/enter/myCateringdustry/index'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
cuIcon: 'zufang',
|
|
cuIcon: 'zufang',
|
|
color: 'blue',
|
|
color: 'blue',
|
|
name: '民宿',
|
|
name: '民宿',
|
|
- status:true,
|
|
|
|
|
|
+ status: true,
|
|
url: '/pageA/enter/myHomestay/index'
|
|
url: '/pageA/enter/myHomestay/index'
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- cuIcon: 'jiudian-38',
|
|
|
|
- color: 'blue',
|
|
|
|
- name: '酒店',
|
|
|
|
- status:true,
|
|
|
|
- url: '/pageA/enter/hotel'
|
|
|
|
- }
|
|
|
|
|
|
+ cuIcon: 'jiudian-38',
|
|
|
|
+ color: 'blue',
|
|
|
|
+ name: '酒店',
|
|
|
|
+ status: true,
|
|
|
|
+ url: '/pageA/enter/hotel'
|
|
|
|
+ }
|
|
]
|
|
]
|
|
- },
|
|
|
|
- ],
|
|
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- onLoad(){
|
|
|
|
|
|
+ onLoad() {
|
|
that = this
|
|
that = this
|
|
- this.userInfo=uni.getStorageSync("userInfo")
|
|
|
|
- if(uni.getStorageSync("userInfo").phone&&uni.getStorageSync("userInfo").automaticSkip){
|
|
|
|
- if(uni.getStorageSync("userInfo").autoModule=='foodEntry'){
|
|
|
|
|
|
+ this.userInfo = uni.getStorageSync("userInfo")
|
|
|
|
+ if (uni.getStorageSync("userInfo").phone && uni.getStorageSync("userInfo").automaticSkip) {
|
|
|
|
+ if (uni.getStorageSync("userInfo").autoModule == 'foodEntry') {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url:'/pageA/enter/myCateringdustry/index'
|
|
|
|
|
|
+ url: '/pageA/enter/myCateringdustry/index'
|
|
})
|
|
})
|
|
- }else if(uni.getStorageSync("userInfo").autoModule=='homeEntry'){
|
|
|
|
|
|
+ } else if (uni.getStorageSync("userInfo").autoModule == 'homeEntry') {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url:'/pageA/enter/myHomestay/index'
|
|
|
|
|
|
+ url: '/pageA/enter/myHomestay/index'
|
|
})
|
|
})
|
|
- }else if(uni.getStorageSync("userInfo").autoModule=='hotelEntry'){
|
|
|
|
|
|
+ } else if (uni.getStorageSync("userInfo").autoModule == 'hotelEntry') {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url:'/pageA/enter/hotel'
|
|
|
|
|
|
+ url: '/pageA/enter/hotel'
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -230,152 +180,227 @@
|
|
onShow: function() {
|
|
onShow: function() {
|
|
let _isLoad = uni.getStorageSync("scanAddCardToIndex")
|
|
let _isLoad = uni.getStorageSync("scanAddCardToIndex")
|
|
if (uni.getStorageSync("userInfo").phone) {
|
|
if (uni.getStorageSync("userInfo").phone) {
|
|
- if(uni.getStorageSync("userInfo").foodEntry==0&&uni.getStorageSync("userInfo").homeEntry==0&&uni.getStorageSync("userInfo").hotelEntry==0){
|
|
|
|
- this.list[1].switch_status=false
|
|
|
|
- }else{
|
|
|
|
- this.list[1].switch_status=uni.getStorageSync("userInfo").automaticSkip?true:false
|
|
|
|
|
|
+ if (uni.getStorageSync("userInfo").foodEntry == 0 && uni.getStorageSync("userInfo").homeEntry == 0 &&
|
|
|
|
+ uni.getStorageSync("userInfo").hotelEntry == 0) {
|
|
|
|
+ this.list[1].switch_status = false
|
|
|
|
+ } else {
|
|
|
|
+ this.list[1].switch_status = uni.getStorageSync("userInfo").automaticSkip ? true : false
|
|
}
|
|
}
|
|
- if(uni.getStorageSync("userInfo").foodEntry>0){
|
|
|
|
- this.list[1].iconsList[0].status=true
|
|
|
|
- }else{
|
|
|
|
- this.list[1].iconsList[0].status=false
|
|
|
|
|
|
+ if (uni.getStorageSync("userInfo").foodEntry > 0) {
|
|
|
|
+ this.list[1].iconsList[0].status = true
|
|
|
|
+ } else {
|
|
|
|
+ this.list[1].iconsList[0].status = false
|
|
}
|
|
}
|
|
- if(uni.getStorageSync("userInfo").homeEntry>0){
|
|
|
|
- this.list[1].iconsList[1].status=true
|
|
|
|
- this.list[0].iconsList[1].status=false
|
|
|
|
- }else{
|
|
|
|
- this.list[1].iconsList[1].status=false
|
|
|
|
- this.list[0].iconsList[1].status=true
|
|
|
|
|
|
+ if (uni.getStorageSync("userInfo").homeEntry > 0) {
|
|
|
|
+ this.list[1].iconsList[1].status = true
|
|
|
|
+ this.list[0].iconsList[1].status = false
|
|
|
|
+ } else {
|
|
|
|
+ this.list[1].iconsList[1].status = false
|
|
|
|
+ this.list[0].iconsList[1].status = true
|
|
}
|
|
}
|
|
- if(uni.getStorageSync("userInfo").hotelEntry>0){
|
|
|
|
- this.list[1].iconsList[2].status=true
|
|
|
|
- this.list[0].iconsList[2].status=false
|
|
|
|
- }else{
|
|
|
|
- this.list[1].iconsList[2].status=false
|
|
|
|
- this.list[0].iconsList[2].status=true
|
|
|
|
|
|
+ if (uni.getStorageSync("userInfo").hotelEntry > 0) {
|
|
|
|
+ this.list[1].iconsList[2].status = true
|
|
|
|
+ this.list[0].iconsList[2].status = false
|
|
|
|
+ } else {
|
|
|
|
+ this.list[1].iconsList[2].status = false
|
|
|
|
+ this.list[0].iconsList[2].status = true
|
|
}
|
|
}
|
|
- } else {
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ } else {}
|
|
|
|
+
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- tabbarChange(e){
|
|
|
|
|
|
+ tabbarChange(e) {
|
|
console.log(e)
|
|
console.log(e)
|
|
- if(e=='notification'){
|
|
|
|
|
|
+ if (e == 'notification') {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url:'/pageA/notice/index'
|
|
|
|
|
|
+ url: '/pageA/notice/index'
|
|
})
|
|
})
|
|
- }else if(e=='user'){
|
|
|
|
|
|
+ } else if (e == 'user') {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url:'/pageA/my/my'
|
|
|
|
|
|
+ url: '/pageA/my/my'
|
|
})
|
|
})
|
|
}
|
|
}
|
|
// name => tabbarCheck = name
|
|
// name => tabbarCheck = name
|
|
},
|
|
},
|
|
- async confirm(){
|
|
|
|
- var data1=await this.updateUser()
|
|
|
|
- if(data1.errno==200){
|
|
|
|
- uni.setStorageSync("userInfo",this.userInfo)
|
|
|
|
|
|
+ async confirm() {
|
|
|
|
+ var data1 = await this.updateUser()
|
|
|
|
+ if (data1.errno == 200) {
|
|
|
|
+ uni.setStorageSync("userInfo", this.userInfo)
|
|
this.editshow = false
|
|
this.editshow = false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
-
|
|
|
|
- groupChange(e){
|
|
|
|
|
|
+
|
|
|
|
+ groupChange(e) {
|
|
console.log(e)
|
|
console.log(e)
|
|
- if(e=='餐饮'){
|
|
|
|
- this.userInfo.autoModule='foodEntry'
|
|
|
|
- }else if(e=='民宿'){
|
|
|
|
- this.userInfo.autoModule='homeEntry'
|
|
|
|
- }else if(e=='酒店'){
|
|
|
|
- this.userInfo.autoModule='hotelEntry'
|
|
|
|
|
|
+ if (e == '餐饮') {
|
|
|
|
+ this.userInfo.autoModule = 'foodEntry'
|
|
|
|
+ } else if (e == '民宿') {
|
|
|
|
+ this.userInfo.autoModule = 'homeEntry'
|
|
|
|
+ } else if (e == '酒店') {
|
|
|
|
+ this.userInfo.autoModule = 'hotelEntry'
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
},
|
|
},
|
|
-
|
|
|
|
- async switchChange(e){
|
|
|
|
- var status=e?1:0
|
|
|
|
- console.log(e,111111)
|
|
|
|
- this.userInfo.automaticSkip=status
|
|
|
|
- var data=await this.updateUser()
|
|
|
|
- console.log(data)
|
|
|
|
- if(data.errno==200){
|
|
|
|
- uni.setStorageSync("userInfo",this.userInfo)
|
|
|
|
- uni.showToast({
|
|
|
|
- icon: "none",
|
|
|
|
- title: '已开启自动跳转',
|
|
|
|
- duration: 3000
|
|
|
|
- });
|
|
|
|
- if(uni.getStorageSync("userInfo").foodEntry!=0&&uni.getStorageSync("userInfo").homeEntry==0&&uni.getStorageSync("userInfo").hotelEntry==0){
|
|
|
|
- this.userInfo.autoModule='foodEntry'
|
|
|
|
- var data1=await this.updateUser()
|
|
|
|
- if(data1.errno==200){
|
|
|
|
- uni.setStorageSync("userInfo",this.userInfo)
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- if(uni.getStorageSync("userInfo").foodEntry==0&&uni.getStorageSync("userInfo").homeEntry!=0&&uni.getStorageSync("userInfo").hotelEntry==0){
|
|
|
|
- this.userInfo.autoModule='homeEntry'
|
|
|
|
- var data1=await this.updateUser()
|
|
|
|
- if(data1.errno==200){
|
|
|
|
- uni.setStorageSync("userInfo",this.userInfo)
|
|
|
|
- return
|
|
|
|
|
|
+
|
|
|
|
+ async switchChange(e) {debugger
|
|
|
|
+ var status = e ? 1 : 0
|
|
|
|
+ console.log(e, 111111)
|
|
|
|
+ // this.userInfo.automaticSkip = status
|
|
|
|
+ // var data = await this.updateUser()
|
|
|
|
+ // console.log(data)
|
|
|
|
+ // if (data.errno == 200) {
|
|
|
|
+ // uni.setStorageSync("userInfo", this.userInfo)
|
|
|
|
+ // uni.showToast({
|
|
|
|
+ // icon: "none",
|
|
|
|
+ // title: '已开启自动跳转',
|
|
|
|
+ // duration: 3000
|
|
|
|
+ // });
|
|
|
|
+ // if (uni.getStorageSync("userInfo").foodEntry != 0 && uni.getStorageSync("userInfo").homeEntry ==
|
|
|
|
+ // 0 && uni.getStorageSync("userInfo").hotelEntry == 0) {
|
|
|
|
+ // this.userInfo.autoModule = 'foodEntry'
|
|
|
|
+ // var data1 = await this.updateUser()
|
|
|
|
+ // if (data1.errno == 200) {
|
|
|
|
+ // uni.setStorageSync("userInfo", this.userInfo)
|
|
|
|
+ // return
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // if (uni.getStorageSync("userInfo").foodEntry == 0 && uni.getStorageSync("userInfo").homeEntry !=
|
|
|
|
+ // 0 && uni.getStorageSync("userInfo").hotelEntry == 0) {
|
|
|
|
+ // this.userInfo.autoModule = 'homeEntry'
|
|
|
|
+ // var data1 = await this.updateUser()
|
|
|
|
+ // if (data1.errno == 200) {
|
|
|
|
+ // uni.setStorageSync("userInfo", this.userInfo)
|
|
|
|
+ // return
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // if (uni.getStorageSync("userInfo").foodEntry == 0 && uni.getStorageSync("userInfo").homeEntry ==
|
|
|
|
+ // 0 && uni.getStorageSync("userInfo").hotelEntry != 0) {
|
|
|
|
+ // this.userInfo.autoModule = 'hotelEntry'
|
|
|
|
+ // var data1 = await this.updateUser()
|
|
|
|
+ // if (data1.errno == 200) {
|
|
|
|
+ // uni.setStorageSync("userInfo", this.userInfo)
|
|
|
|
+ // return
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // this.radiolist1 = []
|
|
|
|
+ // if (uni.getStorageSync("userInfo").foodEntry != 0) {
|
|
|
|
+ // this.radiolist1.push({
|
|
|
|
+ // value: '餐饮'
|
|
|
|
+ // })
|
|
|
|
+ // }
|
|
|
|
+ // if (uni.getStorageSync("userInfo").homeEntry != 0) {
|
|
|
|
+ // this.radiolist1.push({
|
|
|
|
+ // value: '民宿'
|
|
|
|
+ // })
|
|
|
|
+ // }
|
|
|
|
+ // if (uni.getStorageSync("userInfo").hotelEntry != 0) {
|
|
|
|
+ // this.radiolist1.push({
|
|
|
|
+ // value: '酒店'
|
|
|
|
+ // })
|
|
|
|
+ // }
|
|
|
|
+ if (e) {
|
|
|
|
+ if (uni.getStorageSync("userInfo").foodEntry != 0 && uni.getStorageSync("userInfo").homeEntry ==
|
|
|
|
+ 0 && uni.getStorageSync("userInfo").hotelEntry == 0) {
|
|
|
|
+ this.userInfo.autoModule = 'foodEntry'
|
|
|
|
+ var data1 = await this.updateUser()
|
|
|
|
+ if (data1.errno == 200) {
|
|
|
|
+ uni.setStorageSync("userInfo", this.userInfo)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- }
|
|
|
|
- if(uni.getStorageSync("userInfo").foodEntry==0&&uni.getStorageSync("userInfo").homeEntry==0&&uni.getStorageSync("userInfo").hotelEntry!=0){
|
|
|
|
- this.userInfo.autoModule='hotelEntry'
|
|
|
|
- var data1=await this.updateUser()
|
|
|
|
- if(data1.errno==200){
|
|
|
|
- uni.setStorageSync("userInfo",this.userInfo)
|
|
|
|
- return
|
|
|
|
|
|
+ if (uni.getStorageSync("userInfo").foodEntry == 0 && uni.getStorageSync("userInfo").homeEntry !=
|
|
|
|
+ 0 && uni.getStorageSync("userInfo").hotelEntry == 0) {
|
|
|
|
+ this.userInfo.autoModule = 'homeEntry'
|
|
|
|
+ var data1 = await this.updateUser()
|
|
|
|
+ if (data1.errno == 200) {
|
|
|
|
+ uni.setStorageSync("userInfo", this.userInfo)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (uni.getStorageSync("userInfo").foodEntry == 0 && uni.getStorageSync("userInfo").homeEntry ==
|
|
|
|
+ 0 && uni.getStorageSync("userInfo").hotelEntry != 0) {
|
|
|
|
+ this.userInfo.autoModule = 'hotelEntry'
|
|
|
|
+ var data1 = await this.updateUser()
|
|
|
|
+ if (data1.errno == 200) {
|
|
|
|
+ uni.setStorageSync("userInfo", this.userInfo)
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ this.radiolist1 = []
|
|
|
|
+ if (uni.getStorageSync("userInfo").foodEntry != 0) {
|
|
|
|
+ this.radiolist1.push({
|
|
|
|
+ value: '餐饮'
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ if (uni.getStorageSync("userInfo").homeEntry != 0) {
|
|
|
|
+ this.radiolist1.push({
|
|
|
|
+ value: '民宿'
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ if (uni.getStorageSync("userInfo").hotelEntry != 0) {
|
|
|
|
+ this.radiolist1.push({
|
|
|
|
+ value: '酒店'
|
|
|
|
+ })
|
|
}
|
|
}
|
|
- }
|
|
|
|
- this.radiolist1=[]
|
|
|
|
- if(uni.getStorageSync("userInfo").foodEntry!=0){
|
|
|
|
- this.radiolist1.push({value:'餐饮'})
|
|
|
|
- }
|
|
|
|
- if(uni.getStorageSync("userInfo").homeEntry!=0){
|
|
|
|
- this.radiolist1.push({value:'民宿'})
|
|
|
|
- }
|
|
|
|
- if(uni.getStorageSync("userInfo").hotelEntry!=0){
|
|
|
|
- this.radiolist1.push({value:'酒店'})
|
|
|
|
- }
|
|
|
|
- if(e){
|
|
|
|
this.editshow = true
|
|
this.editshow = true
|
|
|
|
+ }else{
|
|
|
|
+ this.userInfo.automaticSkip = status
|
|
|
|
+ var data = await this.updateUser()
|
|
|
|
+ console.log(data)
|
|
|
|
+ if (data.errno == 200) {
|
|
|
|
+ uni.setStorageSync("userInfo", this.userInfo)
|
|
|
|
+ uni.showToast({
|
|
|
|
+ icon: "none",
|
|
|
|
+ title: '已开关闭动跳转',
|
|
|
|
+ duration: 3000
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ uni.showToast({
|
|
|
|
+ icon: "none",
|
|
|
|
+ title: '自动跳转关闭失败',
|
|
|
|
+ duration: 3000
|
|
|
|
+ });
|
|
|
|
+ this.userInfo.automaticSkip = status == 0 ? false : true
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|
|
- }else{
|
|
|
|
- uni.showToast({
|
|
|
|
- icon: "none",
|
|
|
|
- title: '自动跳转开启失败',
|
|
|
|
- duration: 3000
|
|
|
|
- });
|
|
|
|
- this.userInfo.automaticSkip = status == 0 ? false : true
|
|
|
|
- }
|
|
|
|
|
|
+
|
|
},
|
|
},
|
|
- getList(){
|
|
|
|
- this.$request.baseRequest('admin.tourism.carouselManagement', 'list', {
|
|
|
|
|
|
+ getList() {
|
|
|
|
+ this.$request.baseRequest('admin.tourism.carouselManagement', 'list', {
|
|
page: 1,
|
|
page: 1,
|
|
limit: 9999,
|
|
limit: 9999,
|
|
- classify:'商家版首页'
|
|
|
|
- }, failres => {
|
|
|
|
|
|
+ classify: '商家版首页'
|
|
|
|
+ }, failres => {
|
|
uni.showToast({
|
|
uni.showToast({
|
|
icon: "none",
|
|
icon: "none",
|
|
title: failres.errmsg,
|
|
title: failres.errmsg,
|
|
duration: 3000
|
|
duration: 3000
|
|
- });
|
|
|
|
- }).then(res => {
|
|
|
|
- this.fileList=res.data.items
|
|
|
|
- })
|
|
|
|
|
|
+ });
|
|
|
|
+ }).then(res => {
|
|
|
|
+ this.fileList = res.data.items
|
|
|
|
+ })
|
|
},
|
|
},
|
|
- toDetail(url){
|
|
|
|
|
|
+ toDetail(url) {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url:url
|
|
|
|
|
|
+ url: url
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- updateUser(){
|
|
|
|
|
|
+ updateUser() {
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
that.$request.baseRequest('admin.unimall.commonUserInfo', 'update', {
|
|
that.$request.baseRequest('admin.unimall.commonUserInfo', 'update', {
|
|
- commonUserInfo:JSON.stringify(this.userInfo)
|
|
|
|
- }, failres => {
|
|
|
|
|
|
+ commonUserInfo: JSON.stringify(this.userInfo)
|
|
|
|
+ }, failres => {
|
|
reject(failres)
|
|
reject(failres)
|
|
}).then(res => {
|
|
}).then(res => {
|
|
resolve(res)
|
|
resolve(res)
|
|
@@ -387,7 +412,7 @@
|
|
that.userInfo.phone = await this.$request.getPhone(e, that.userInfo)
|
|
that.userInfo.phone = await this.$request.getPhone(e, that.userInfo)
|
|
this.showAuthorizePhone = false
|
|
this.showAuthorizePhone = false
|
|
this.showAuthorizeUser = true
|
|
this.showAuthorizeUser = true
|
|
-
|
|
|
|
|
|
+
|
|
},
|
|
},
|
|
async authUser(type) {
|
|
async authUser(type) {
|
|
//同步信息,没有头像和昵称自动生成
|
|
//同步信息,没有头像和昵称自动生成
|
|
@@ -419,7 +444,7 @@
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
-.slot-content {
|
|
|
|
|
|
+ .slot-content {
|
|
width: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -500,8 +525,9 @@
|
|
/deep/.u-popup__content {
|
|
/deep/.u-popup__content {
|
|
border-radius: 20rpx !important;
|
|
border-radius: 20rpx !important;
|
|
}
|
|
}
|
|
- /deep/.u-tabbar-item image{
|
|
|
|
- width:40rpx;
|
|
|
|
- height:40rpx;
|
|
|
|
|
|
+
|
|
|
|
+ /deep/.u-tabbar-item image {
|
|
|
|
+ width: 40rpx;
|
|
|
|
+ height: 40rpx;
|
|
}
|
|
}
|
|
-</style>
|
|
|
|
|
|
+</style>
|