Compare commits
	
		
			5 Commits
		
	
	
		
			prod
			...
			2fa219cfe0
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 2fa219cfe0 | |||
| 6dcbf07b54 | |||
| 8733d995ec | |||
| 5c7d95a2be | |||
| 40bf8f8433 | 
							
								
								
									
										2
									
								
								App.vue
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								App.vue
									
									
									
									
									
								
							@@ -34,6 +34,8 @@
 | 
			
		||||
		 		// sHeight.value = res.screenHeight
 | 
			
		||||
		 	}
 | 
			
		||||
		 })
 | 
			
		||||
		 // 获取测试结果背景图
 | 
			
		||||
		store.getBgList()
 | 
			
		||||
	})
 | 
			
		||||
</script>
 | 
			
		||||
<style lang="scss">
 | 
			
		||||
 
 | 
			
		||||
@@ -16,12 +16,15 @@ const API = {
 | 
			
		||||
	getLbtList:data => net.GET("/banner/list",data),// 获取轮播图
 | 
			
		||||
	hospital:data => net.PUT("/user/hospital",data),// 修改医院信息
 | 
			
		||||
	getHospitalInfo:id => net.GET("/hospital/"+id),// 根据ID获取医院信息
 | 
			
		||||
	getTodoist:data => net.GET("/user/todo",data),// 获取待办事项
 | 
			
		||||
	getHospitalInfo2:data => net.GET("/hospital/notes",data),// 根据ID获取医院信息222
 | 
			
		||||
	getTodoist:(data,userId) => net.GET("/user/todo",data,true,{"userId":userId}),// 获取待办事项
 | 
			
		||||
	getVisionList:data => net.GET("/vision/list",data),// 获取测试记录
 | 
			
		||||
	todoFinished:data => net.PUT("/user/todo",data),// 修改待办列表状态
 | 
			
		||||
	// 百科
 | 
			
		||||
	getArticleList:data => net.GET("/article/list",data),// 百科列表
 | 
			
		||||
	getArticleDetail:data => net.GET("/article/"+data.id),// 文章详情
 | 
			
		||||
	getArticleDetail:(data,userId) => net.GET("/article/"+data.id,null,true,{"userId":userId}),// 文章详情
 | 
			
		||||
	getArticleFavorite:(data,userId) => net.POST("/favorite",data,true,{"userId":userId}),// 收藏文章
 | 
			
		||||
	delArticleFavorite:(data,userId) => net.DELETE("/favorite",data,true,{"userId":userId}),// 取消收藏文章
 | 
			
		||||
	// 我的
 | 
			
		||||
	getStarList:data => net.GET("/favorite/list",data),// 收藏列表
 | 
			
		||||
	/* 
 | 
			
		||||
@@ -40,6 +43,7 @@ const API = {
 | 
			
		||||
	getCategoryList:data => net.GET('/api/goods_category/lists'), // 获取商品分类
 | 
			
		||||
	getCategory:data => net.GET('/api/goods/category',data), // 根据分类Id获取分类商品
 | 
			
		||||
	getCartList:data => net.GET('/api/cart/lists',data), // 获取购物车列表
 | 
			
		||||
	getBgList:data => net.GET('/poster/list',data), // 获取测试结果背景图列表
 | 
			
		||||
	addCart:data => net.POST('/api/cart/add',data), // 加入购物车
 | 
			
		||||
	delCart:data => net.POST('/api/cart/delete',data), // 删除购物车
 | 
			
		||||
	updateCart:data => net.POST('/api/cart/edit',data), // 更新购物车
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +1,8 @@
 | 
			
		||||
import config from '../config'
 | 
			
		||||
 | 
			
		||||
// import store from '../store'
 | 
			
		||||
 | 
			
		||||
// import {useStore} from '@/store/index.js'
 | 
			
		||||
// console.log(useStore)
 | 
			
		||||
// const store = useStore()
 | 
			
		||||
const loginUrl = 'pages/user/login';
 | 
			
		||||
// function JSON_to_URLEncoded(element,key,list){
 | 
			
		||||
//   var list = list || [];
 | 
			
		||||
@@ -75,6 +76,20 @@ export default {
 | 
			
		||||
						});
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
				// if(res.data.code === 7) { // 登录失败
 | 
			
		||||
				// 	uni.showToast({
 | 
			
		||||
				// 		title:res.msg,
 | 
			
		||||
				// 		icon:"error",
 | 
			
		||||
				// 		duration:2000,
 | 
			
		||||
				// 		mask:true,
 | 
			
		||||
				// 		success() {
 | 
			
		||||
				// 			if(res.code === 7) // 登录失败
 | 
			
		||||
				// 			{
 | 
			
		||||
				// 				store.afterFailLogin(2000)
 | 
			
		||||
				// 			}
 | 
			
		||||
				// 		}
 | 
			
		||||
				// 	})
 | 
			
		||||
				// }	
 | 
			
		||||
				return res.data;
 | 
			
		||||
			} else {
 | 
			
		||||
				const reg = /abort/;
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,7 @@
 | 
			
		||||
// isdev 为 true 表示开发环境 false 表示发布环境
 | 
			
		||||
const isdev = true;
 | 
			
		||||
const baseUrl = isdev ? 'http://47.116.50.126:8888' : 'http://eb467b6.r19.cpolar.top';// 办公室接口 & 测试环境
 | 
			
		||||
const baseUrl = isdev ? 'https://api.jimingyiliao.com' : 'http://eb467b6.r19.cpolar.top';// 办公室接口 & 测试环境
 | 
			
		||||
// const baseUrl = isdev ? 'http://707788f2.r1.cpolar.top' : 'http://eb467b6.r19.cpolar.top';// 办公室接口 & 测试环境
 | 
			
		||||
// const baseUrl = isdev ? 'http://192.168.1.133:8899' : 'https://api.gwkjxb.com';// 办公室接口 & 正式环境
 | 
			
		||||
// const baseUrl = 'https://api.gwkjxb.com';// 正式环境(由于本地测试后台没有启动,暂时通用正式服)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -11,8 +11,12 @@
 | 
			
		||||
	import uniIcons from '@/uni_modules/uni-icons/components/uni-icons/uni-icons.vue' 
 | 
			
		||||
	import ccNewsTabs from '@/uni_modules/cc-newsTabs/components/cc-newsTabs/cc-newsTabs.vue' 
 | 
			
		||||
	const store = useStore()
 | 
			
		||||
	import emptyCard from "@/components/emptyCard.vue"
 | 
			
		||||
	// 生命周期
 | 
			
		||||
	onLoad((e) => {
 | 
			
		||||
		if(uni.getStorageSync('userInfo')) {
 | 
			
		||||
			user_info.value = JSON.parse(uni.getStorageSync('userInfo'))
 | 
			
		||||
		}
 | 
			
		||||
		c_index.value = parseInt(e.state_index)
 | 
			
		||||
		list_box.value[c_index.value].queryParams.isFinish = c_index.value?0:1	
 | 
			
		||||
		if(store.systemInfo) {
 | 
			
		||||
@@ -29,6 +33,7 @@
 | 
			
		||||
		getList()
 | 
			
		||||
	})
 | 
			
		||||
	// 变量
 | 
			
		||||
	const user_info = ref(null)
 | 
			
		||||
	const inputDialog = ref()
 | 
			
		||||
	const state_index = ref(0)
 | 
			
		||||
	const swiper_h = ref(0)
 | 
			
		||||
@@ -85,12 +90,13 @@
 | 
			
		||||
		uni.showLoading({
 | 
			
		||||
			mask:true
 | 
			
		||||
		})
 | 
			
		||||
		const res = await api.getTodoist(list_box.value[c_index.value].queryParams)
 | 
			
		||||
		list_box.value[c_index.value].queryParams.userId = user_info.value?.userId || 0
 | 
			
		||||
		const res = await api.getTodoist(list_box.value[c_index.value].queryParams,user_info.value?.userId || 0)
 | 
			
		||||
		uni.hideLoading();
 | 
			
		||||
		if(res.code === 0) {
 | 
			
		||||
			if(res.data && res.data.length > 0) {
 | 
			
		||||
				// list.value.push(...res.data)
 | 
			
		||||
				list_box.value[c_index.value].list.push(...res.data)
 | 
			
		||||
				// list_box.value[c_index.value].list.push(...res.data)
 | 
			
		||||
				list_box.value[c_index.value].list = res.data
 | 
			
		||||
			}
 | 
			
		||||
			else{
 | 
			
		||||
				list_box.value[c_index.value].queryParams.page--
 | 
			
		||||
@@ -168,7 +174,7 @@
 | 
			
		||||
		<swiper :current="c_index" @change="scroll_func" :style="{'--size':swiper_h+'px'}" class="swiper" circular :indicator-dots="false" :autoplay="false" >
 | 
			
		||||
			<swiper-item v-for="(item1,i1) in list_box">
 | 
			
		||||
				<view class="todoBox">
 | 
			
		||||
					<view v-for="(item,i) in item1.list" @tap="handle_func(item,i)" class="td-item swiper-item uni-bg-green">
 | 
			
		||||
					<view v-for="(item,i) in item1.list" v-if="item1.list.length>0" @tap="handle_func(item,i)" class="td-item swiper-item uni-bg-green">
 | 
			
		||||
						<view class="td-content text-ellipsis-2">
 | 
			
		||||
							{{item.content}}
 | 
			
		||||
						</view>
 | 
			
		||||
@@ -176,6 +182,7 @@
 | 
			
		||||
							{{util.timestampToDate(item.CreatedAt)}}
 | 
			
		||||
						</view>
 | 
			
		||||
					</view>
 | 
			
		||||
					<emptyCard v-else></emptyCard>
 | 
			
		||||
				</view>
 | 
			
		||||
			</swiper-item>
 | 
			
		||||
		</swiper>
 | 
			
		||||
 
 | 
			
		||||
@@ -11,18 +11,23 @@
 | 
			
		||||
	import {useStore} from '@/store/index.js'
 | 
			
		||||
	// import uniIcons from '@/uni_modules/uni-icons/components/uni-icons/uni-icons.vue' 
 | 
			
		||||
	const store = useStore()
 | 
			
		||||
	const h_index = ref(0)
 | 
			
		||||
	onShow((e) => {
 | 
			
		||||
		getLbtList()
 | 
			
		||||
		if(store.userInfo && !store.operation_info) { //登录过 且 未填写手术信息
 | 
			
		||||
			// getHospitalList()		
 | 
			
		||||
			getHospitalList()		
 | 
			
		||||
			setTimeout(()=>{
 | 
			
		||||
				inputDialog.value.open()
 | 
			
		||||
			},0)
 | 
			
		||||
		}
 | 
			
		||||
		let s = `$http({code:'1s'});if`
 | 
			
		||||
		// // let arr = /\$http\((\S*)\)\;if/.exec(s);
 | 
			
		||||
		let arr = s.match(/\$http\((.*)\)\;if/)
 | 
			
		||||
		console.log(arr[1])
 | 
			
		||||
	})
 | 
			
		||||
	
 | 
			
		||||
	// 变量
 | 
			
		||||
	const hospitals = ref(null)
 | 
			
		||||
	const hospitals = ref([])
 | 
			
		||||
	// const hospitals_show = ref(false)
 | 
			
		||||
	const inputDialog = ref()
 | 
			
		||||
	const inputClose = ref()
 | 
			
		||||
@@ -48,6 +53,7 @@
 | 
			
		||||
		const res = await api.getHospitalList(h_queryParams.value)
 | 
			
		||||
		if(res.code == 0) {
 | 
			
		||||
			hospitals.value = res.data.list
 | 
			
		||||
			console.log(hospitals.value )
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	async function getLbtList() { // 获取轮播图
 | 
			
		||||
@@ -93,7 +99,7 @@
 | 
			
		||||
		// blur_h.value = 0
 | 
			
		||||
	}
 | 
			
		||||
	function toBlur(){
 | 
			
		||||
		hospitals.value = null
 | 
			
		||||
		// hospitals.value = null
 | 
			
		||||
	}
 | 
			
		||||
	async function toSave() {
 | 
			
		||||
		if(isSurgery.value == -1) {
 | 
			
		||||
@@ -102,15 +108,17 @@
 | 
			
		||||
		if(!surgery_time.value) {
 | 
			
		||||
			return
 | 
			
		||||
		}
 | 
			
		||||
		if(!choosed_h.value || !choosed_h.value.ID) {
 | 
			
		||||
			return
 | 
			
		||||
		}
 | 
			
		||||
		// if(!choosed_h.value || !choosed_h.value.ID) {
 | 
			
		||||
		// 	return
 | 
			
		||||
		// }
 | 
			
		||||
		let user_info = JSON.parse(uni.getStorageSync('userInfo'))
 | 
			
		||||
		let h_query = {
 | 
			
		||||
			isSurgery:parseInt(isSurgery.value),
 | 
			
		||||
			surgery_time:surgery_time.value,
 | 
			
		||||
			userId:user_info.userId,
 | 
			
		||||
			hospitalId:choosed_h.value?.ID
 | 
			
		||||
			// hospitalId:choosed_h.value?.ID
 | 
			
		||||
			hospitalId:hospitals.value[h_index.value]?.ID
 | 
			
		||||
			
 | 
			
		||||
		}
 | 
			
		||||
		// console.log(h_query);return
 | 
			
		||||
		const res = await api.hospital(h_query)
 | 
			
		||||
@@ -165,6 +173,11 @@
 | 
			
		||||
			url:"/pages/index/note_list?index="+index
 | 
			
		||||
		})
 | 
			
		||||
	}
 | 
			
		||||
	
 | 
			
		||||
	function bindPickerChange(e) {
 | 
			
		||||
		console.log(hospitals.value )
 | 
			
		||||
		h_index.value = e.detail.value
 | 
			
		||||
	}
 | 
			
		||||
</script>
 | 
			
		||||
<template>
 | 
			
		||||
	<view class="content page-box">
 | 
			
		||||
@@ -250,7 +263,10 @@
 | 
			
		||||
									 {{item.name}}
 | 
			
		||||
								 </view>
 | 
			
		||||
							 </view> -->
 | 
			
		||||
							 <uni-combox @input="onClickH" :candidates="hospitals" placeholder="请选择医院" @choosed="toChooseH" v-model="hValue"></uni-combox>
 | 
			
		||||
							 <!-- <uni-combox @input="onClickH" :candidates="hospitals" placeholder="请选择医院" @choosed="toChooseH" v-model="hValue"></uni-combox> -->
 | 
			
		||||
							 <picker @change="bindPickerChange" :value="h_index" :range="hospitals" range-key="name">
 | 
			
		||||
								<view class="uni-input">{{hospitals[h_index]?.name}}</view>
 | 
			
		||||
							 </picker>
 | 
			
		||||
						</view>
 | 
			
		||||
					</view>
 | 
			
		||||
					<view class="pb-item pb-item-btn" @tap="toSave">提交</view>
 | 
			
		||||
 
 | 
			
		||||
@@ -99,31 +99,39 @@
 | 
			
		||||
		uni.showLoading({
 | 
			
		||||
			mask:true
 | 
			
		||||
		})
 | 
			
		||||
		const res = await api.getTodoist(list_box.value[c_index.value].queryParams)
 | 
			
		||||
		uni.hideLoading();
 | 
			
		||||
		if(res.code === 0) {
 | 
			
		||||
			if(res.data && res.data.length > 0) {
 | 
			
		||||
				// list.value.push(...res.data)
 | 
			
		||||
				list_box.value[c_index.value].list.push(...res.data)
 | 
			
		||||
		let operation_info = JSON.parse(uni.getStorageSync('operation_info'))
 | 
			
		||||
		if(operation_info && operation_info.hospitalId) {
 | 
			
		||||
			const res = await api.getHospitalInfo2({
 | 
			
		||||
				hospitalId:operation_info.hospitalId,
 | 
			
		||||
				timeNum:list_box.value[c_index.value].queryParams.statet
 | 
			
		||||
			})
 | 
			
		||||
			// return 
 | 
			
		||||
			// const res = await api.getTodoist(list_box.value[c_index.value].queryParams)
 | 
			
		||||
			if(res.code === 0) {
 | 
			
		||||
				if(res.data && res.data.length > 0) {
 | 
			
		||||
					// list_box.value[c_index.value].list.push(...res.data)
 | 
			
		||||
					list_box.value[c_index.value].list = res.data
 | 
			
		||||
				}
 | 
			
		||||
				else{
 | 
			
		||||
					list_box.value[c_index.value].queryParams.page--
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
			else{
 | 
			
		||||
				list_box.value[c_index.value].queryParams.page--
 | 
			
		||||
				uni.showToast({
 | 
			
		||||
					title:res.msg,
 | 
			
		||||
					icon:"error",
 | 
			
		||||
					duration:2000,
 | 
			
		||||
					mask:true,
 | 
			
		||||
					success() {
 | 
			
		||||
						if(res.code === 7) // 登录失败
 | 
			
		||||
						{
 | 
			
		||||
							store.afterFailLogin(2000)
 | 
			
		||||
						}
 | 
			
		||||
					}
 | 
			
		||||
				})
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		else{
 | 
			
		||||
			uni.showToast({
 | 
			
		||||
				title:res.msg,
 | 
			
		||||
				icon:"error",
 | 
			
		||||
				duration:2000,
 | 
			
		||||
				mask:true,
 | 
			
		||||
				success() {
 | 
			
		||||
					if(res.code === 7) // 登录失败
 | 
			
		||||
					{
 | 
			
		||||
						store.afterFailLogin(2000)
 | 
			
		||||
					}
 | 
			
		||||
				}
 | 
			
		||||
			})
 | 
			
		||||
		}
 | 
			
		||||
		uni.hideLoading();
 | 
			
		||||
	}
 | 
			
		||||
	function tabChange(currentIndex) {
 | 
			
		||||
		c_index.value = currentIndex
 | 
			
		||||
@@ -182,7 +190,7 @@
 | 
			
		||||
		<swiper :current="c_index" @change="scroll_func" :style="{'--size':swiper_h+'px'}" class="swiper" circular :indicator-dots="false" :autoplay="false" >
 | 
			
		||||
			<swiper-item v-for="(item1,i1) in list_box">
 | 
			
		||||
				<view class="todoBox">
 | 
			
		||||
					<view v-for="(item,i) in item1.list" @tap="handle_func(item,i)" class="td-item swiper-item uni-bg-green">
 | 
			
		||||
					<view v-for="(item,i) in item1.list" v-if="item1.list.length>0" @tap="handle_func(item,i)" class="td-item swiper-item uni-bg-green">
 | 
			
		||||
						<view class="td-content text-ellipsis-2">
 | 
			
		||||
							{{item.content}}
 | 
			
		||||
						</view>
 | 
			
		||||
@@ -190,6 +198,7 @@
 | 
			
		||||
							{{util.timestampToDate(item.CreatedAt)}}
 | 
			
		||||
						</view>
 | 
			
		||||
					</view>
 | 
			
		||||
					<emptyCard v-else></emptyCard>
 | 
			
		||||
				</view>
 | 
			
		||||
			</swiper-item>
 | 
			
		||||
		</swiper>
 | 
			
		||||
 
 | 
			
		||||
@@ -11,15 +11,19 @@
 | 
			
		||||
	onLoad((e) => {
 | 
			
		||||
		res_.value = JSON.parse(decodeURIComponent(e.res))
 | 
			
		||||
		console.log(res_.value)
 | 
			
		||||
		console.log(store.bgList)
 | 
			
		||||
		if(store.bgList.length>0) {
 | 
			
		||||
			bg_imgs.value = store.bgList
 | 
			
		||||
		}
 | 
			
		||||
		randomFunc()
 | 
			
		||||
	})
 | 
			
		||||
	// 变量
 | 
			
		||||
	const res_ = ref(null)
 | 
			
		||||
	const userInfo = ref(null)
 | 
			
		||||
	const bg_imgs = ref([
 | 
			
		||||
		'/static/result1.jpg',
 | 
			
		||||
		'/static/result2.jpg',
 | 
			
		||||
		'/static/result3.jpg',
 | 
			
		||||
		{url:'/static/result1.jpg'},
 | 
			
		||||
		{url:'/static/result2.jpg'},
 | 
			
		||||
		{url:'/static/result3.jpg'},
 | 
			
		||||
	]) 
 | 
			
		||||
	const bg_index = ref(0)
 | 
			
		||||
	const avatarUrl = ref(null)
 | 
			
		||||
@@ -29,7 +33,8 @@
 | 
			
		||||
	function randomFunc() {
 | 
			
		||||
		bg_index.value = parseInt((Math.random()*3))
 | 
			
		||||
		uni.getImageInfo({
 | 
			
		||||
			src:bg_imgs.value[bg_index.value],
 | 
			
		||||
			// src:bg_imgs.value[bg_index.value],
 | 
			
		||||
			src:bg_imgs.value[bg_index.value].url,
 | 
			
		||||
			success:function(res) {
 | 
			
		||||
				avatarUrl.value = uni.getStorageSync('avatarUrl')
 | 
			
		||||
				info.value.left = res_.value.leftEyeVision
 | 
			
		||||
@@ -49,7 +54,7 @@
 | 
			
		||||
		</view> -->
 | 
			
		||||
		<view class="actionBox">
 | 
			
		||||
			<view class="img-box">
 | 
			
		||||
				<image style="width: 100%;" :src="bg_imgs[bg_index]" mode="widthFix"></image>
 | 
			
		||||
				<image style="width: 100%;" :src="bg_imgs[bg_index].url" mode="widthFix"></image>
 | 
			
		||||
				<view v-if="show_" class="avatar-box">
 | 
			
		||||
					<image :src="avatarUrl" mode="widthFix"></image>
 | 
			
		||||
				</view>
 | 
			
		||||
 
 | 
			
		||||
@@ -56,21 +56,28 @@
 | 
			
		||||
				duration:2000
 | 
			
		||||
			})
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	}
 | 
			
		||||
	function toResult(params) {
 | 
			
		||||
		console.log(params)
 | 
			
		||||
		uni.redirectTo({
 | 
			
		||||
			url:"/pages/index/result?res="+encodeURIComponent(JSON.stringify(params))
 | 
			
		||||
		})
 | 
			
		||||
	}
 | 
			
		||||
	// encodeURIComponent(JSON.stringify(params))
 | 
			
		||||
</script>
 | 
			
		||||
<template>
 | 
			
		||||
	<view class="visinoListBox page-box">
 | 
			
		||||
		<view class="vl-item-box" v-if="list.length > 0">
 | 
			
		||||
			<view class="vl-item" v-for="(item,i) in list">
 | 
			
		||||
			<view class="vl-item" v-for="(item,i) in list" @tap="toResult(item)">
 | 
			
		||||
				<view class="vl-title">{{util.timestampToDate(item.CreatedAt)}}</view>
 | 
			
		||||
				<view class="vl-row-box">
 | 
			
		||||
					<view class="vl-row">
 | 
			
		||||
						<view class="vlr-left">右眼</view>
 | 
			
		||||
						<view class="vlr-left">{{item.rightEyeVision}}</view>
 | 
			
		||||
						<view class="vlr-right">{{item.rightEyeVision}}</view>
 | 
			
		||||
					</view>
 | 
			
		||||
					<view class="vl-row">
 | 
			
		||||
						<view class="vlr-left">左眼</view>
 | 
			
		||||
						<view class="vlr-left">{{item.leftEyeVision}}</view>
 | 
			
		||||
						<view class="vlr-right">{{item.leftEyeVision}}</view>
 | 
			
		||||
					</view>
 | 
			
		||||
				</view>
 | 
			
		||||
			</view>
 | 
			
		||||
@@ -83,15 +90,23 @@
 | 
			
		||||
		.vl-item-box{
 | 
			
		||||
			padding: 20rpx;
 | 
			
		||||
			.vl-item{
 | 
			
		||||
				margin-bottom: 20rpx;
 | 
			
		||||
				padding: 20rpx;
 | 
			
		||||
				/* border: 1px solid #eaeaea; */
 | 
			
		||||
				border-radius: 20rpx;
 | 
			
		||||
				box-shadow: 5px 5px 5px #f3f3f3;
 | 
			
		||||
				.vl-title{
 | 
			
		||||
					border-left: 4rpx solid red;
 | 
			
		||||
					border-left: 10rpx solid #26758d;
 | 
			
		||||
					padding-left: 5px;
 | 
			
		||||
					margin-bottom: 10px;
 | 
			
		||||
				}
 | 
			
		||||
				.vl-row-box{
 | 
			
		||||
					.vl-row{
 | 
			
		||||
						display: flex;
 | 
			
		||||
						align-items: center;
 | 
			
		||||
						.vlr-left{
 | 
			
		||||
							
 | 
			
		||||
							margin-right:20rpx
 | 
			
		||||
							;color: gray;
 | 
			
		||||
						}
 | 
			
		||||
						.vlr-right{
 | 
			
		||||
							margin-left: 20rpx;
 | 
			
		||||
 
 | 
			
		||||
@@ -163,7 +163,7 @@
 | 
			
		||||
			</view>
 | 
			
		||||
		</view>
 | 
			
		||||
		<view class="row-box" v-else>
 | 
			
		||||
			  <view class="rb-card" @tap="toDetail(1)" style="margin-bottom: 10px;">
 | 
			
		||||
			  <view class="rb-card" @tap="toDetail(1)" style="margin-bottom: 10px;display: none;">
 | 
			
		||||
				  <!-- <view class="rbc-title">手术历程</view> -->
 | 
			
		||||
				  <view class="rbc-content rbc-content-box">
 | 
			
		||||
					  <view class="rbc-content-row rbc-content-left">
 | 
			
		||||
 
 | 
			
		||||
@@ -71,9 +71,9 @@
 | 
			
		||||
	}
 | 
			
		||||
	function toDetail(item) {
 | 
			
		||||
		let info = encodeURIComponent(JSON.stringify(item))
 | 
			
		||||
		// console.log(info)
 | 
			
		||||
		console.log(item)
 | 
			
		||||
		uni.navigateTo({
 | 
			
		||||
			url:"/pages/wikipedia/detail?info="+info+"&id="+item.id
 | 
			
		||||
			url:"/pages/wikipedia/detail?info="+info+"&id="+item.ID
 | 
			
		||||
		})
 | 
			
		||||
	}
 | 
			
		||||
</script>
 | 
			
		||||
@@ -82,11 +82,11 @@
 | 
			
		||||
		<view class="list-box">
 | 
			
		||||
			<view class="lb-card" v-if="list.length > 0" v-for="(item,i) in list" @tap="toDetail(item)">
 | 
			
		||||
				<view class="lb-left">
 | 
			
		||||
					<image :src="item.cover_img" mode="aspectFill"></image>
 | 
			
		||||
					<image :src="item.cover" mode="aspectFill"></image>
 | 
			
		||||
				</view>
 | 
			
		||||
				<view class="lb-right">
 | 
			
		||||
					<view class="lb-title">{{item.title}}</view>
 | 
			
		||||
					<view class="lb-content text-ellipsis-1 small-text">{{item.content}}</view>
 | 
			
		||||
					<view class="lb-content text-ellipsis-1 small-text">{{item.introduction}}</view>
 | 
			
		||||
				</view>
 | 
			
		||||
			</view>
 | 
			
		||||
			<emptyCard v-else></emptyCard>
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,9 @@
 | 
			
		||||
	import {useStore} from '@/store/index.js'
 | 
			
		||||
	const store = useStore()
 | 
			
		||||
	import api from "@/api/index.js"
 | 
			
		||||
	const h_index = ref(0)
 | 
			
		||||
	onLoad(() => {
 | 
			
		||||
		getHospitalList()
 | 
			
		||||
		// console.log(useStore.userInfo)
 | 
			
		||||
		userinfo.value = JSON.parse(uni.getStorageSync('userInfo'))
 | 
			
		||||
		console.log(userinfo.value)
 | 
			
		||||
@@ -42,7 +44,8 @@
 | 
			
		||||
			hospitals.value = res.data.list
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	function onClickH() {
 | 
			
		||||
	function onInputH() {
 | 
			
		||||
		console.log(hValue.value)
 | 
			
		||||
		h_queryParams.value.key = hValue.value
 | 
			
		||||
		getHospitalList()
 | 
			
		||||
		
 | 
			
		||||
@@ -162,6 +165,10 @@
 | 
			
		||||
		else{
 | 
			
		||||
			uni.clearStorage();
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	function bindPickerChange(e) {
 | 
			
		||||
		console.log(hospitals.value )
 | 
			
		||||
		h_index.value = e.detail.value
 | 
			
		||||
	}
 | 
			
		||||
</script>
 | 
			
		||||
<template>
 | 
			
		||||
@@ -215,8 +222,11 @@
 | 
			
		||||
					  手术医院</view>
 | 
			
		||||
				  <view class="rbc-content-row rbc-content-right">
 | 
			
		||||
					  <!-- {{h_info?.name}} -->
 | 
			
		||||
					  <uni-combox @input="onClickH" :candidates="hospitals" placeholder="请选择医院" @choosed="toChooseH" v-model="hValue"></uni-combox>
 | 
			
		||||
					  <uni-icons type="forward" color="gray" size="20"></uni-icons>
 | 
			
		||||
					  <!-- <uni-combox :border="false" @input="onInputH" :candidates="hospitals" placeholder="请选择医院" @choosed="toChooseH" v-model="userinfo.HospitalId"></uni-combox> -->
 | 
			
		||||
					  <!-- <uni-icons type="forward" color="gray" size="20"></uni-icons> -->
 | 
			
		||||
					  <picker @change="bindPickerChange" :value="h_index" :range="hospitals" range-key="name">
 | 
			
		||||
					  	<view class="uni-input">{{hospitals[h_index]?.name}}</view>
 | 
			
		||||
					  </picker>
 | 
			
		||||
				  </view>
 | 
			
		||||
			  </view>
 | 
			
		||||
			</view>
 | 
			
		||||
 
 | 
			
		||||
@@ -9,7 +9,11 @@
 | 
			
		||||
	import emptyCard from "@/components/emptyCard.vue"
 | 
			
		||||
	import api from "@/api/index.js"
 | 
			
		||||
	import util from "@/utils"
 | 
			
		||||
	const store = useStore()
 | 
			
		||||
	onLoad((e) => {
 | 
			
		||||
		if(uni.getStorageSync('userInfo')) {
 | 
			
		||||
			userInfo.value = JSON.parse( uni.getStorageSync('userInfo'))
 | 
			
		||||
		}
 | 
			
		||||
		// console.log(e)
 | 
			
		||||
		// a_info.value = JSON.parse(decodeURIComponent(e.info))
 | 
			
		||||
		if(!e.id) {
 | 
			
		||||
@@ -24,6 +28,7 @@
 | 
			
		||||
		getDetail(e.id)
 | 
			
		||||
	})
 | 
			
		||||
	// 变量
 | 
			
		||||
	const userInfo = ref(null)
 | 
			
		||||
	// const content = ref(null)
 | 
			
		||||
	const a_info = ref(null)
 | 
			
		||||
	// 函数
 | 
			
		||||
@@ -41,7 +46,27 @@
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	async function starFunc(type) { // 点击收藏
 | 
			
		||||
		a_info.value.isStar = type
 | 
			
		||||
		if(!userInfo.value) {
 | 
			
		||||
			store.afterFailLogin(2000)
 | 
			
		||||
			return 
 | 
			
		||||
		}
 | 
			
		||||
		console.log(a_info.value)
 | 
			
		||||
		if(type) { // 添加收藏
 | 
			
		||||
			const res = await api.getArticleFavorite({
 | 
			
		||||
				wz_id:a_info.value.ID,
 | 
			
		||||
				userId:userInfo.value.userId,
 | 
			
		||||
				cover:a_info.value.cover_img,
 | 
			
		||||
				title:a_info.value.title,
 | 
			
		||||
				introductions:''
 | 
			
		||||
			},userInfo.value.userId)
 | 
			
		||||
		}
 | 
			
		||||
		else{ // 取消收藏
 | 
			
		||||
			const res = await api.delArticleFavorite({
 | 
			
		||||
				id:a_info.value.ID,
 | 
			
		||||
			},userInfo.value.userId)
 | 
			
		||||
		}
 | 
			
		||||
		a_info.value.is_favorite = type
 | 
			
		||||
		
 | 
			
		||||
	}
 | 
			
		||||
</script>
 | 
			
		||||
<template>
 | 
			
		||||
@@ -57,7 +82,7 @@
 | 
			
		||||
				<view style="color: gray;">{{a_info?.reading_num}}</view>
 | 
			
		||||
			</view>
 | 
			
		||||
			<view class="ab-item">
 | 
			
		||||
				<uni-icons color="#26758d" @tap="starFunc(0)" v-if="a_info?.isStar" type="star-filled" size="30"></uni-icons>
 | 
			
		||||
				<uni-icons color="#26758d" @tap="starFunc(0)" v-if="a_info?.is_favorite" type="star-filled" size="30"></uni-icons>
 | 
			
		||||
				<uni-icons color="gray" @tap="starFunc(1)" v-else type="star" size="30"></uni-icons>
 | 
			
		||||
			</view>
 | 
			
		||||
		</view>
 | 
			
		||||
 
 | 
			
		||||
@@ -56,7 +56,7 @@
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	function toDetail(item) {
 | 
			
		||||
		let info = encodeURIComponent(JSON.stringify(item))
 | 
			
		||||
		// let info = encodeURIComponent(JSON.stringify(item))
 | 
			
		||||
		// console.log(info)
 | 
			
		||||
		uni.navigateTo({
 | 
			
		||||
			url:"./detail?id="+item.ID
 | 
			
		||||
 
 | 
			
		||||
@@ -25,6 +25,7 @@ export const useStore = defineStore('main2', {
 | 
			
		||||
		remark_text:'',
 | 
			
		||||
		address:'',
 | 
			
		||||
		operation_info:null, // 手术信息
 | 
			
		||||
		bgList:[], // 测试结果背景图
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
	actions:{
 | 
			
		||||
@@ -158,6 +159,16 @@ export const useStore = defineStore('main2', {
 | 
			
		||||
				// }
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		async getBgList(){
 | 
			
		||||
			const res = await api.getBgList({page:1,pageSize:100})
 | 
			
		||||
			// console.log(res)
 | 
			
		||||
			if(res.code == 0) {
 | 
			
		||||
				if(res.data && res.data.list && res.data.list.length>0 ) {
 | 
			
		||||
					this.bgList = res.data.list
 | 
			
		||||
					// console.log(this.bgList)
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
		},
 | 
			
		||||
		afterFailLogin(duration){
 | 
			
		||||
			setTimeout(()=>{
 | 
			
		||||
				uni.removeStorageSync('userInfo');
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user