monthlyIntroduce.vue 3.63 KB
Newer Older
王建威's avatar
王建威 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<template>
	<view class="main">
		<view class="top_bar">
			<text class="eosfont" @click="$backup">&#xe743;</text>
			包月说明
		</view>
		<view class="content_view">
			<view class="content_title">
				<text class="circle_num">1</text>包月是什么?
			</view>
			<view class="content_main">谛宝多多会根据医院的拿货周期,起订量给医院下发一个折扣,包月期间,医院购买参与包月的商品时可享受折扣,单品最低5折。</view>
			<view class="content_title">
				<text class="circle_num">1</text>怎么包月?
			</view>
王建威's avatar
王建威 committed
15
			<view class="content_main">点击下方选择起订量,选择拿货周期和起订量,签署合同,缴纳押金,则完成包月,合同有效期内,购买包月产品,立享折扣。</view>
王建威's avatar
王建威 committed
16
			<view class="content_title">
王建威's avatar
王建威 committed
17
				<text class="circle_num">1</text>关于押金
王建威's avatar
王建威 committed
18
			</view>
王建威's avatar
王建威 committed
19
			<view class="content_main">合同有效期内,包月产品消费总额(折扣价)达到起订量,自合同结束日期5个工作日内,全额退还押金,否则不予以退还。</view>
王建威's avatar
王建威 committed
20
			<view class="content_title">
王建威's avatar
王建威 committed
21
				<text class="circle_num">1</text>缴纳押金与不缴纳押金的区别
王建威's avatar
王建威 committed
22
			</view>
王建威's avatar
王建威 committed
23
			<view class="content_main">缴纳押金,合同有效期内购买包月产品可立享全额折扣;不缴纳押金,合同有效期内购买包月产品,统一享受8.5折,合同有效期内,包月产品消费总额(折扣价)达到起订量,自合同结束日期5个工作日内,按差价返现至账户余额,可提现,(例如全额折扣为6折,则返现消费总额的25%)反之不予以返现。</view>
王建威's avatar
王建威 committed
24
			<view class="content_title" style="margin-bottom: 0;">有任何问题</view>
王建威's avatar
王建威 committed
25 26
			<view class="content_title">烦请点击页面上的消息按钮进行咨询</view>
			<view class="join_btn" @click="joinMonthly">加入包年计划</view>
王建威's avatar
王建威 committed
27 28 29 30 31
		</view>
	</view>
</template>

<script>
王建威's avatar
王建威 committed
32
	import { login } from '@/common/util.js';
王建威's avatar
王建威 committed
33 34 35
	export default {
		data() {
			return {
王建威's avatar
王建威 committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49
				login_flg: 0
			}
		},
		onLoad(options) {
			this.login_flg = options.login_flg - 0;
		},
		methods: {
			// 加入计划
			joinMonthly() {
				if(!this.login_flg) {
					login();
					return
				}
				this.$jump('/pages/monthlyJoin/monthlyJoin',2)
王建威's avatar
王建威 committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
			}
		}
	}
</script>

<style lang="scss" scoped>
	.main {
		background-color: #FFFCF6;
		.top_bar {
			height: 80rpx;
			line-height: 80rpx;
			text-align: center;
			background:linear-gradient(135deg,rgba(255,232,199,1) 0%,rgba(214,163,93,1) 100%);
			border-radius: 0 0 24rpx 24rpx;
			position: fixed;
			width: 100%;
			box-sizing: border-box;
			.eosfont {
				font-size: 56rpx;
				position: absolute;
				left: 20rpx;
				top: 2rpx;
			}
		}
		.content_view {
王建威's avatar
王建威 committed
75
			padding: 130rpx 40rpx 134rpx;
王建威's avatar
王建威 committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
			.content_title {
				margin-bottom: 20rpx;
				font-size: 32rpx;
				font-family:PingFangSC-Medium,PingFang SC;
				font-weight:500;
				height: 44rpx;
				line-height: 44rpx;
				display: flex;
				align-items: center;
				.circle_num {
					width: 28rpx;
					height: 28rpx;
					border-radius: 50%;
					background-color: #DCAD6C;
					color: #fff;
					line-height: 28rpx;
					text-align: center;
					font-size: 22rpx;
					display: inline-block;
					margin-right: 10rpx;
				}
			}
		}
		.content_main {
			font-size: 28rpx;
			color: #807B74;
			line-height: 40rpx;
			margin-bottom: 30rpx;
		}
		.join_btn {
			height: 88rpx;
			line-height: 88rpx;
			background:linear-gradient(314deg,rgba(238,190,114,1) 0%,rgba(255,224,176,1) 100%);
			box-shadow:0px 4rpx 40rpx 0px rgba(242,199,130,0.5);
			border-radius: 20rpx;
			text-align: center;
			font-size: 32rpx;
			position: fixed;
			left: 24rpx;
			bottom: 24rpx;
			width: 702rpx;
		}
	}
</style>