老狐\25396 4 lat temu
rodzic
commit
6f61b3366b

+ 71 - 3
pages.json

xqd xqd
@@ -124,6 +124,74 @@
 			"style": {
 				"navigationBarTitleText": "优惠券详情"
 			}
+		},
+		/*		common_tools文件夹		常用工具*/
+		/*****help_feedback帮助和卡反馈文件夹*****/
+		//帮助和卡反馈
+		{
+			"path": "pages/common_tools/help_feedback/help_feedback",
+			"style": {
+				"navigationBarTitleText": "帮助与反馈"
+			}
+		},
+		//意见反馈1
+		{
+			"path": "pages/common_tools/help_feedback/opinion1",
+			"style": {
+				"navigationBarTitleText": "意见反馈"
+			}
+		},
+		/*****collection收藏文章文件夹*****/
+		// 收藏文章
+		{
+			"path": "pages/common_tools/collection/collection",
+			"style": {
+				"navigationBarTitleText": "收藏文章"
+			}
+		},
+		//文章详情
+		{
+			"path": "pages/common_tools/collection/collection_details",
+			"style": {
+				"navigationBarTitleText": "文章标题"
+			}
+		},
+		/*****me_order我的保单文件夹*****/
+		//我的保单
+		{
+			"path": "pages/common_tools/me_order/me_order",
+			"style": {
+				"navigationBarTitleText": "我的保单"
+			}
+		},
+		//保单详情
+		{
+			"path": "pages/common_tools/me_order/order_details",
+			"style": {
+				"navigationBarTitleText": "保单详情"
+			}
+		},
+
+		//家庭医生
+		{
+			"path": "pages/common_tools/home_doctor",
+			"style": {
+				"navigationBarTitleText": "家庭医生"
+			}
+		},
+		//我的关注
+		{
+			"path": "pages/common_tools/me_follow",
+			"style": {
+				"navigationBarTitleText": "我的关注"
+			}
+		},
+		//我的评价
+		{
+			"path": "pages/common_tools/me_evaluate",
+			"style": {
+				"navigationBarTitleText": "优惠券详情"
+			}
 		}
 
 
@@ -163,9 +231,9 @@
 	"condition": {
 		"current": 0,
 		"list": [{
-			"name": "介绍",
-			"path": "pages/service_packs/introduce"
-			// "path": "pages/service_packs/packs_details"
+			"name": "工具",
+			"path": "pages/index/mine"
+			// "path": "pages/service_packs/packs_details"//服务包
 		}]
 	}
 }

+ 8 - 0
pages/common_tools/collection/collection.vue

xqd
@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages/common_tools/collection/collection_details.vue

xqd
@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 107 - 0
pages/common_tools/help_feedback/help_feedback.vue

xqd
@@ -0,0 +1,107 @@
+<template style="background-color:#F6F6F6 ;">
+	<view style="margin-top: 20rpx;background-color: #FFFFFF;">
+		<!-- 标题 -->
+		<view class="title">常见问题</view>
+		<!-- 线 -->
+		<u-line color="#EFEFEF" />
+		<!-- 问题列表 -->
+		<view class="list">
+			<u-collapse>
+				<u-collapse-item :title="item.head" v-for="(item, index) in itemList" :key="index" head-style="font-size: 28rpx;">
+					<view class="body">{{item.body}}</view>
+				</u-collapse-item>
+			</u-collapse>
+		</view>
+		<view class="footer">
+			<view class="cu-bar bg-white tabbar border shop" style="width: 100%;">
+				<view class="submit" @click="next" style="background-color: #0B73B9; color: #FFFFFF; font-size: 32rpx;">添加意见反馈</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				itemList: [{
+					head: "赏识在于角度的转换",
+					body: "11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111",
+					open: true,
+					disabled: true
+				}, {
+					head: "生活中不是缺少美,而是缺少发现美的眼睛",
+					body: "学会欣赏,实际是一种积极生活的态度,是生活的调味品,会在欣赏中发现生活的美",
+					open: false,
+				}, {
+					head: "周围一些不起眼的人、事、物,或许都隐藏着不同凡响的智慧",
+					body: "但是据说雕刻大卫像所用的这块大理石,曾被多位雕刻家批评得一无是处,有些人认为这块大理石采凿得不好,有些人嫌它的纹路不够美",
+					open: false,
+				}, {
+					head: "赏识在于角度的转换",
+					body: "只要我们正确择取一个合适的参照物乃至稍降一格去看待他人,值得赏识的东西便会扑面而来",
+					open: true,
+					disabled: true
+				}, {
+					head: "生活中不是缺少美,而是缺少发现美的眼睛",
+					body: "学会欣赏,实际是一种积极生活的态度,是生活的调味品,会在欣赏中发现生活的美",
+					open: false,
+				}, {
+					head: "周围一些不起眼的人、事、物,或许都隐藏着不同凡响的智慧",
+					body: "但是据说雕刻大卫像所用的这块大理石,曾被多位雕刻家批评得一无是处,有些人认为这块大理石采凿得不好,有些人嫌它的纹路不够美",
+					open: false,
+				}, {
+					head: "赏识在于角度的转换",
+					body: "只要我们正确择取一个合适的参照物乃至稍降一格去看待他人,值得赏识的东西便会扑面而来",
+					open: true,
+					disabled: true
+				}, {
+					head: "生活中不是缺少美,而是缺少发现美的眼睛",
+					body: "学会欣赏,实际是一种积极生活的态度,是生活的调味品,会在欣赏中发现生活的美",
+					open: false,
+				}, {
+					head: "周围一些不起眼的人、事、物,或许都隐藏着不同凡响的智慧",
+					body: "但是据说雕刻大卫像所用的这块大理石,曾被多位雕刻家批评得一无是处,有些人认为这块大理石采凿得不好,有些人嫌它的纹路不够美",
+					open: false,
+				}],
+			}
+		},
+		methods:{
+			next(e){
+				uni.navigateTo({
+					url:'/pages/common_tools/help_feedback/opinion1'
+				})
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+	.title {
+		height: auto;
+		display: flex;
+		align-items: center;
+		padding: 30rpx 0 30rpx 30rpx;
+		font-size: 30rpx;
+		font-weight: bold;
+	}
+
+	.list {
+		height: auto;
+		width: 100%;
+		padding: 0 30rpx;
+
+		.body {
+			padding: 20rpx 30rpx 20rpx 20rpx;
+			word-break: break-all;
+			word-wrap: break-word
+		}
+	}
+	.footer {
+		width: 100%;
+		height: auto;
+		display: flex;
+		position: fixed;
+		bottom: 0;
+	}
+</style>

+ 8 - 0
pages/common_tools/help_feedback/opinion1.vue

xqd
@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages/common_tools/home_doctor.vue

xqd
@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages/common_tools/me_evaluate.vue

xqd
@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages/common_tools/me_follow.vue

xqd
@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages/common_tools/me_order/me_order.vue

xqd
@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages/common_tools/me_order/order_details.vue

xqd
@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 7 - 7
pages/index/mine.vue

xqd xqd
@@ -2,7 +2,7 @@
 	<view class="main">
 		<view class="pr">
 			<view class="header-content">
-				<image src="../../static/img/mybanner.png" style="width:100%;height:260rpx;"></image>
+				<image src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/img/mybanner.png" style="width:100%;height:260rpx;"></image>
 			</view>
 			<view class="pr" style="z-index:2">
 				<view class="plr15">
@@ -97,30 +97,30 @@
 			<view class="fb f18 plr20 pt40">常用工具</view>
 			<view class="bg-white margin-lr-sm margin-top-sm" style="border-radius: 16rpx;box-shadow: 0 0 50rpx 0 rgba(0, 0, 0, 0.1);">
 				<view class="plr10 m-dpflex m-justify-start m-align-center overflow pt30 pb30">
-					<navigator class="width25 m-ycenter overflow pr" hoverClass="none">
+					<navigator class="width25 m-ycenter overflow pr" hoverClass="none" url="/pages/common_tools/home_doctor">
 						<image style="width: 42rpx;height: 42rpx;" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/toolimg/mydoctor.png"></image>
 						<view class="f14 m-gray-small mt10 line1">家庭医生</view>
 					</navigator>
-					<navigator class="width25 m-ycenter overflow pr" hoverClass="none">
+					<navigator class="width25 m-ycenter overflow pr" hoverClass="none" url="/pages/common_tools/me_follow">
 						<image style="width: 42rpx;height: 42rpx;" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/toolimg/myguanzhu.png"></image>
 						<view class="f14 m-gray-small mt10 line1">我的关注</view>
 					</navigator>
-					<navigator class="width25 m-ycenter overflow pr" hoverClass="none">
+					<navigator class="width25 m-ycenter overflow pr" hoverClass="none" url="/pages/common_tools/collection/collection">
 						<image style="width: 42rpx;height: 42rpx;" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/toolimg/wenzhang.png"></image>
 						<view class="f14 m-gray-small mt10 line1">收藏文章</view>
 					</navigator>
-					<navigator class="width25 m-ycenter overflow pr" hoverClass="none">
+					<navigator class="width25 m-ycenter overflow pr" hoverClass="none" url="/pages/common_tools/me_order/me_order">
 						<image style="width: 42rpx;height: 42rpx;" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/toolimg/baodan.png"></image>
 						<view class="tip"></view>
 						<view class="f14 m-gray-small mt10 line1">我的保单</view>
 					</navigator>
 				</view>
 				<view class="plr10 m-dpflex m-justify-start m-align-center overflow pb30">
-					<navigator class="width25 m-ycenter overflow pr" hoverClass="none">
+					<navigator class="width25 m-ycenter overflow pr" hoverClass="none" url="/pages/common_tools/me_evaluate">
 						<image style="width: 42rpx;height: 42rpx;" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/toolimg/pinjia.png"></image>
 						<view class="f14 m-gray-small mt10 line1">我的评价</view>
 					</navigator>
-					<navigator class="width25 m-ycenter overflow pr" hoverClass="none">
+					<navigator class="width25 m-ycenter overflow pr" hoverClass="none" url="/pages/common_tools/help_feedback/help_feedback">
 						<image style="width: 42rpx;height: 42rpx;" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/toolimg/myhple.png"></image>
 						<view class="f14 m-gray-small mt10 line1">帮助反馈</view>
 					</navigator>

+ 7 - 7
pages/order/order.vue

xqd
@@ -4,13 +4,13 @@
 		<view class="card">
 			<!-- 图片 -->
 			<view class="card_img">
-				<image v-if="product_type=='1'" class="img" src="../../static/order/1.png"></image>
-				<image v-else-if="product_type=='2'" class="img" src="../../static/order/2.png"></image>
-				<image v-else-if="product_type=='3'" class="img" src="../../static/order/3.png"></image>
-				<image v-else-if="product_type=='4'" class="img" src="../../static/order/4.png"></image>
-				<image v-else-if="product_type=='5'" class="img" src="../../static/order/5.png"></image>
-				<image v-else-if="product_type=='6'" class="img" src="../../static/order/6.png"></image>
-				<image v-else-if="product_type=='7'" class="img" src="../../static/order/7.png"></image>
+				<image v-if="product_type=='1'" class="img" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/order/1.png"></image>
+				<image v-else-if="product_type=='2'" class="img" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/order/2.png"></image>
+				<image v-else-if="product_type=='3'" class="img" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/order/3.png"></image>
+				<image v-else-if="product_type=='4'" class="img" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/order/4.png"></image>
+				<image v-else-if="product_type=='5'" class="img" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/order/5.png"></image>
+				<image v-else-if="product_type=='6'" class="img" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/order/6.png"></image>
+				<image v-else-if="product_type=='7'" class="img" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/order/7.png"></image>
 			</view>
 			<!-- 黑字 -->
 			<view class="card_text">

+ 1 - 1
pages/order/payment.vue

xqd
@@ -37,7 +37,7 @@
 		</u-popup>
 
 		<uni-list :border="false">
-			<image src="../../static/caixian.png" style="width: 100%; height: 5rpx; background-color: #FFFFFF;"></image>
+			<image src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/caixian.png" style="width: 100%; height: 5rpx; background-color: #FFFFFF;"></image>
 			<uni-list-item :border="false">
 				<view slot="header" style="color:#666666 ; font-size: 28rpx;">
 					<text v-if="product_type == '1' ">{{doctorName}} 电话咨询</text>

+ 1 - 1
pages/service_packs/introduce.vue

xqd
@@ -1,7 +1,7 @@
 <template>
 	<view class="container">
 		<view class="body">
-			<image src="../../static/竖占位图.png" class="img"></image>
+			<image src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/竖占位图.png" class="img"></image>
 		</view>
 		<view class="footer">
 			<view class="cu-bar bg-white tabbar border shop" style="width: 100%;">

+ 5 - 5
pages/service_packs/packs_details.vue

xqd xqd xqd xqd
@@ -5,7 +5,7 @@
 			<view class="card_view">
 				<!-- 放图片 标题 -->
 				<view class="title">
-					<image src="../../static/横占位图.png" class="img"></image>
+					<image src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/横占位图.png" class="img"></image>
 				</view>
 				<!-- 放描述 -->
 				<view class="describe">
@@ -23,7 +23,7 @@
 						<!-- 头像 -->
 						<view class="portrait">
 							<view style="padding-top: 20rpx;">
-								<image class="img" src="../../static/头像.png"></image>
+								<image class="img" src="https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/头像.png"></image>
 								<view class="bun" @click="follow">关注</view>
 							</view>
 						</view>
@@ -87,7 +87,7 @@
 				num: 1,
 				imgitem: {
 					istrue: false,
-					name: "../../static/img/xieyi.png"
+					name: "https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/img/xieyi.png"
 				},
 				tcID: '套餐一', //ID
 				tcTime: '一年', //套餐有效期
@@ -172,11 +172,11 @@
 			isqueren() {
 				this.num++
 				if (this.num % 2 == 0) {
-					this.imgitem.name = "../../static/img/xieyixuan.png"
+					this.imgitem.name = "https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/img/xieyixuan.png"
 					this.imgitem.istrue = true
 
 				} else {
-					this.imgitem.name = "../../static/img/xieyi.png"
+					this.imgitem.name = "https://zhengda.oss-cn-chengdu.aliyuncs.com/baoma/static/img/xieyi.png"
 					this.imgitem.istrue = false
 				}
 			},