经穴检索添加权限

This commit is contained in:
@fawn-nine
2023-11-23 17:15:38 +08:00
parent 9e4980f9f4
commit a79ee8f7f6

View File

@@ -6,42 +6,46 @@
<!-- <uni-search-bar @confirm="search" :focus="true" v-model="searchValue" @blur="blur" @focus="focus" @input="input" <!-- <uni-search-bar @confirm="search" :focus="true" v-model="searchValue" @blur="blur" @focus="focus" @input="input"
@cancel="cancel" @clear="clear"> @cancel="cancel" @clear="clear">
</uni-search-bar> --> </uni-search-bar> -->
<view class="search_box"> <view class="search_box" v-if="oneCateList.length > 0">
<u-search placeholder="请输入穴位名" @focus="focus" @clear="clear" v-model="searchValue" @input="input" @blur="blur" @search="search"></u-search> <u-search :disabled="userMes.pointPower == 0 && oneCateList[curOneCateIndex].id == 3 || userMes
.pointPower == 0 && oneCateList[curOneCateIndex].id == 6 ? true : false" @click="checkDisable" placeholder="请输入穴位名" @focus="focus" @clear="clear"
v-model="searchValue" @input="input" @blur="blur" @search="search"></u-search>
</view> </view>
<view class="searchList" v-show="showSearchList"> <view class="searchList" v-show="showSearchList">
<view class="itemBox" v-if="searchList.length > 0"> <view class="itemBox" v-if="searchList.length > 0">
<view class="item" v-for="(item, index) in searchList" :key="index" @click="gotoDetail(item)"> <view class="item" v-for="(item, index) in searchList" :key="index" @click="gotoDetail(item)">
{{item.title}} {{item.title}}
</view> </view>
</view> </view>
<view v-else class=""> <view v-else class="">
<u-divider text="未找到相关穴位哦~"></u-divider> <u-divider text="未找到相关穴位哦~"></u-divider>
</view> </view>
</view> </view>
<view v-show="!showSearchList" class="contentBox"> <view v-show="!showSearchList" class="contentBox">
<!-- <scroll-view class="scroll-view_H oneCateList" scroll-x="true" scroll-left="0"> --> <!-- <scroll-view class="scroll-view_H oneCateList" scroll-x="true" scroll-left="0"> -->
<view class="oneCateList flexbox"> <view class="oneCateList flexbox">
<text :class="[curOneCateIndex == index ? 'cur' : '']" @click="setOneCateIndex(item,index)" v-for="(item, index) in oneCateList" :key="item.id">{{item.title}}</text> <text :class="[curOneCateIndex == index ? 'cur' : '']" @click="setOneCateIndex(item,index)"
</view> v-for="(item, index) in oneCateList" :key="item.id">{{item.title}}</text>
</view>
<!-- </scroll-view> --> <!-- </scroll-view> -->
<view class="grid twoCateList" v-if="twoCateList.length > 0"> <view class="grid twoCateList" v-if="twoCateList.length > 0">
<u-grid :col="3" border class="u-grid-list"> <u-grid :col="3" border class="u-grid-list">
<u-grid-item v-for="(item, index) in twoCateList" :key="item.id" @click="setTwoCateIndex(item, index)"> <u-grid-item v-for="(item, index) in twoCateList" :key="item.id"
<view :class="['grid-text',curTwoCateIndex == index ? 'cur' : '']">{{item.title}}</view> @click="setTwoCateIndex(item, index)">
</u-grid-item> <view :class="['grid-text',curTwoCateIndex == index ? 'cur' : '']">{{item.title}}</view>
</u-grid> </u-grid-item>
</view> </u-grid>
<view class="titleList"> </view>
<view class="titleList">
<u-grid :col="3" v-if="titleList.length > 0"> <u-grid :col="3" v-if="titleList.length > 0">
<u-grid-item v-for="(item, index) in titleList" :key="item.id" @click="gotoDetail(item)"> <u-grid-item v-for="(item, index) in titleList" :key="item.id" @click="gotoDetail(item)">
<view :class="['titleItem']">{{item.title}}</view> <view :class="['titleItem']">{{item.title}}</view>
</u-grid-item> </u-grid-item>
</u-grid> </u-grid>
<u-divider v-else text="暂无穴位数据哦~"></u-divider> <u-divider v-else text="暂无穴位数据哦~"></u-divider>
</view> </view>
</view> </view>
<!-- <view class="search_box flexbox" @click=""> <!-- <view class="search_box flexbox" @click="">
<view class="search"> <view class="search">
@@ -67,56 +71,81 @@
searchValue: '', searchValue: '',
oneCateList: [], // 一级分类标题1 oneCateList: [], // 一级分类标题1
twoCateList: [], // 二级分类标题 twoCateList: [], // 二级分类标题
titleList:[], // 穴位标题 titleList: [], // 穴位标题
curOneCateIndex:0, // 当前选中的一级分类 curOneCateIndex: 0, // 当前选中的一级分类
curTwoCateIndex:0 , // 当前选中的二级分类 curTwoCateIndex: 0, // 当前选中的二级分类
searchList:[], // 搜索结果数组 searchList: [], // 搜索结果数组
showSearchList: false, showSearchList: false,
userMes:{}, // 用户信息 userMes: {}, // 用户信息
searchDisable: false, // 搜索不可用
} }
}, },
onLoad() { onLoad() {
this.getUserInfo() this.getUserInfo()
this.getCateList() // this.getCateList()
},
onHide() { },
this.showSearchList = false onHide() {
this.searchList = [] this.showSearchList = false
}, this.searchList = []
computed: { },
...mapState(['userInfo']), computed: {
}, ...mapState(['userInfo']),
},
methods: { methods: {
// 检查是有权限使用搜索功能
checkDisable() {
console.log('点击了')
if (this.userMes.pointPower == 0 && this.oneCateList[this.curOneCateIndex].id == 3 || this.userMes
.pointPower == 0 && this.oneCateList[this.curOneCateIndex].id == 6) { // 等于0 就是没有权限
this.showNoRights()
}
},
// 显示无权限弹窗 // 显示无权限弹窗
showNoRights(){ showNoRights() {
let that = this
uni.showModal({ uni.showModal({
content:"购买‘手模’或者‘脚模’后方可使用此功能", content: "购买‘手模’或者‘脚模’后方可使用此功能",
confirmText:'好的', confirmText: '好的',
showCancel:false, showCancel: false,
success: function(res) {
if (res.confirm) {
// console.log('用户点击确定');
that.clear()
}
}
}) })
}, },
// 获取用户详情 // 获取用户详情
getUserInfo(){ getUserInfo() {
// 用户详情 // 用户详情
if (this.userInfo.id != undefined) { if (this.userInfo.id != undefined) {
this.$http this.$http
.post('book/user/info/' + this.userInfo.id) .post('book/user/info/' + this.userInfo.id)
.then(res => { .then(res => {
this.userMes = res.user this.userMes = res.user
console.log(this.userMes,'呼呼') this.getCateList()
console.log(this.userMes, '呼呼')
}); });
} }
}, },
// 穴位详情 // 穴位详情
gotoDetail(item){ gotoDetail(item) {
// this.showNoRights()
uni.navigateTo({ if (this.userMes.pointPower == 0 && this.oneCateList[this.curOneCateIndex].id == 3 || this.userMes
url:"./acupointDetail?id=" + item.id .pointPower == 0 && this.oneCateList[this.curOneCateIndex].id == 6) { // 等于0 就是没有权限
}) this.showNoRights()
} else {
// 等于1 就是有权限
uni.navigateTo({
url: "./acupointDetail?id=" + item.id
})
}
}, },
// 获取穴位名称 // 获取穴位名称
getTitles(id){ getTitles(id) {
$http.request({ $http.request({
url: "book/point/getPointsByCategoryId", url: "book/point/getPointsByCategoryId",
method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档 method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档
@@ -130,27 +159,27 @@
}).then(res => { }).then(res => {
console.log(res, '内容获取成功') console.log(res, '内容获取成功')
if (res.code == 0 && res.points.length > 0) { if (res.code == 0 && res.points.length > 0) {
this.titleList = res.points this.titleList = res.points
} else { } else {
this.titleList = [] this.titleList = []
} }
}).catch(e => { }).catch(e => {
this.titleList = [] this.titleList = []
console.log(e) console.log(e)
}) })
}, },
setTwoCateIndex(item, index){ setTwoCateIndex(item, index) {
let id = item.id let id = item.id
this.curTwoCateIndex = index this.curTwoCateIndex = index
this.getTitles(id) this.getTitles(id)
}, },
setOneCateIndex(item, index){ setOneCateIndex(item, index) {
let id = item.id let id = item.id
this.curOneCateIndex = index this.curOneCateIndex = index
this.curTwoCateIndex = 0 this.curTwoCateIndex = 0
this.getTowCateList(id) this.getTowCateList(id)
}, },
getTowCateList(id){ getTowCateList(id) {
$http.request({ $http.request({
url: "book/point/getPointCategoryByPid", url: "book/point/getPointCategoryByPid",
method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档 method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档
@@ -169,16 +198,16 @@
} else { } else {
this.twoCateList = [] this.twoCateList = []
this.titleList = [] this.titleList = []
} }
}).catch(e => { }).catch(e => {
this.twoCateList = [] this.twoCateList = []
this.titleList = [] this.titleList = []
console.log(e) console.log(e)
}) })
}, },
getCateList(id) { getCateList(id) {
id ? '' : id = 0 id ? '' : id = 0
this.twoCateList = [] this.twoCateList = []
this.curTwoCateIndex = 0 this.curTwoCateIndex = 0
// 0为获取顶级分类其他为搜索下级分类目前的逻辑顶级是写死的所以可能只会涉及到搜索第二级 // 0为获取顶级分类其他为搜索下级分类目前的逻辑顶级是写死的所以可能只会涉及到搜索第二级
$http.request({ $http.request({
@@ -197,14 +226,14 @@
this.oneCateList = res.category this.oneCateList = res.category
this.getTowCateList(this.oneCateList[0].id) this.getTowCateList(this.oneCateList[0].id)
} else { } else {
this.oneCateList = [] this.oneCateList = []
} }
}).catch(e => { }).catch(e => {
this.oneCateList = [] this.oneCateList = []
console.log(e) console.log(e)
}) })
}, },
getSearch(){ getSearch() {
$http.request({ $http.request({
url: "book/point/searchPointList", url: "book/point/searchPointList",
method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档 method: "POST", // POST、GET、PUT、DELETE具体说明查看官方文档
@@ -218,7 +247,7 @@
}).then(res => { }).then(res => {
console.log(res, '搜索结果') console.log(res, '搜索结果')
if (res.code == 0 && res.points.length > 0) { if (res.code == 0 && res.points.length > 0) {
this.searchList = res.points this.searchList = res.points
} }
}).catch(e => { }).catch(e => {
// this.titleList = [] // this.titleList = []
@@ -227,19 +256,19 @@
}) })
}, },
search(res) { search(res) {
console.log(res,'res') console.log(res, 'res')
// uni.showToast({ // uni.showToast({
// title: '搜索:' + res, // title: '搜索:' + res,
// icon: 'none' // icon: 'none'
// }) // })
}, },
input(res) { input(res) {
console.log('----input:', res) console.log('----input:', res)
if(res == ''){ if (res == '') {
this.searchList = [] this.searchList = []
}else{ } else {
this.getSearch() this.getSearch()
} }
}, },
clear(res) { clear(res) {
@@ -247,14 +276,15 @@
// title: 'clear事件清除值为', // title: 'clear事件清除值为',
// icon: 'none' // icon: 'none'
// }) // })
this.searchValue = ''
this.showSearchList = false this.showSearchList = false
}, },
blur(res) { blur(res) {
if(res == ''){ if (res == '') {
this.showSearchList = false this.showSearchList = false
this.searchList = [] this.searchList = []
}else{ } else {
this.getSearch() this.getSearch()
} }
}, },
focus(e) { focus(e) {
@@ -262,8 +292,9 @@
// title: 'focus事件输出值为' + e.value, // title: 'focus事件输出值为' + e.value,
// icon: 'none' // icon: 'none'
// }) // })
// this.showNoRights() // 等于1 就是有权限
this.showSearchList = true this.showSearchList = true
}, },
// cancel(res) { // cancel(res) {
// uni.showToast({ // uni.showToast({
@@ -284,39 +315,78 @@
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.searchList{ .searchList {
.item{font-size: 28rpx; padding: 20rpx; border-bottom: 1px solid #dadbde; } .item {
} font-size: 28rpx;
.scroll-view_H{background-color: #fff;white-space: nowrap; padding: 20rpx;
padding:10rpx ; } border-bottom: 1px solid #dadbde;
.contentBox {
.oneCateList{ justify-content: space-between;
text{ text-align: center;
display: inline-block; width: 32%; padding: 20rpx 0; font-size: 34rpx; border-radius: 10rpx;
}
.cur{background-color:#55aa7f; color: #fff; }
} }
.twoCateList{ }
font-size: 28rpx; margin-top: 20rpx;
.grid-text{padding:30rpx 20rpx; text-align: center; } .scroll-view_H {
.cur{ background-color: #fff;
white-space: nowrap;
padding: 10rpx;
}
.contentBox {
.oneCateList {
justify-content: space-between;
text {
text-align: center;
display: inline-block;
width: 32%;
padding: 20rpx 0;
font-size: 34rpx;
border-radius: 10rpx;
}
.cur {
background-color: #55aa7f;
color: #fff;
}
}
.twoCateList {
font-size: 28rpx;
margin-top: 20rpx;
.grid-text {
padding: 30rpx 20rpx;
text-align: center;
}
.cur {
color: #55aa7f; color: #55aa7f;
} }
// .u-grid-list{border: 0.5px solid #dadbde;} // .u-grid-list{border: 0.5px solid #dadbde;}
} }
.titleList{font-size: 26rpx; margin-top: 20rpx; padding: 10rpx; border-radius: 10rpx; background-color: #f8f9fa;
.titleItem{padding: 20rpx 0; } .titleList {
font-size: 26rpx;
margin-top: 20rpx;
padding: 10rpx;
border-radius: 10rpx;
background-color: #f8f9fa;
.titleItem {
padding: 20rpx 0;
}
} }
} }
.container { .container {
padding: 10rpx; height: 100vh; padding: 10rpx;
height: 100vh;
background-color: #fff; background-color: #fff;
} }
.search_box { .search_box {
margin: 0 auto; overflow: hidden; margin: 0 auto;
overflow: hidden;
margin-top: 20rpx; margin-top: 20rpx;
align-items: center; align-items: center;
width: calc(100% - 10px); width: calc(100% - 10px);