zhanghui 1 vuosi sitten
vanhempi
commit
55ecf780d5

+ 1 - 1
api/api.js

@@ -430,4 +430,4 @@ export function getCrmebCopyRight() {
 	return request.get('copyright', {}, {
 		noAuth: true
 	})
-}
+}

+ 13 - 293
pages/groupbuying/aboutUs/index.vue

@@ -18,7 +18,7 @@
 
 					<u-cell isLink>
 
-						<view slot="title" class="u-slot-title">
+						<view slot="title" class="u-slot-title" @click="toUserAgreement">
 							<text class="u-cell-text">用户协议</text>
 						</view>
 
@@ -26,7 +26,7 @@
 
 					<u-cell isLink>
 
-						<view slot="title" class="u-slot-title">
+						<view slot="title" class="u-slot-title" @click="toPrivacyAgreement">
 							<text class="u-cell-text">隐私协议</text>
 						</view>
 
@@ -39,310 +39,30 @@
 </template>
 
 <script>
-import {
-	getUserInfo,
-	userEdit,
-	getLogout
-} from '@/api/user.js';
-import {
-	switchH5Login
-} from '@/api/api.js';
-import {
-	toLogin
-} from '@/libs/login.js';
-import {
-	mapGetters
-} from "vuex";
-import dayjs from "@/plugin/dayjs/dayjs.min.js";
-// #ifdef MP
-import authorize from '@/components/Authorize';
-// #endif
-import colors from '@/mixins/color.js';
 export default {
-	components: {
-		// #ifdef APP-PLUS
-		appUpdate,
-		// #endif
-		// #ifdef MP
-		authorize
-		// #endif
-	},
-	mixins: [colors],
+
 	data () {
 		return {
 		};
 	},
-	computed: mapGetters(['isLogin']),
-	watch: {
-		isLogin: {
-			handler: function (newV, oldV) {
-				if (newV) {
-					this.getUserInfo();
-				}
-			},
-			deep: true
-		}
-	},
+
 	onLoad () {
-		if (this.isLogin) {
-			this.getUserInfo();
-			// #ifdef APP-PLUS
-			this.formatSize()
-			// 获取版本号
-			plus.runtime.getProperty(plus.runtime.appid, (inf) => {
-				console.log(inf.version)
-				this.version = inf.version;
-			});
-			// #endif 
-			this.setLang();
-		} else {
-			toLogin();
-		}
+
 	},
 	methods: {
-		isNew () {
-			this.$util.Tips({
-				title: this.$t(`当前为最新版本`)
-			});
-		},
-		setLang () {
-			this.array.map((item, i) => {
-				if (this.$i18n.locale == item.value) {
-					this.setIndex = i
-				}
-			})
-		},
-		bindPickerChange (e, item) {
-			this.setIndex = e.detail.value
-			this.$i18n.locale = this.array[this.setIndex].value;
-			uni.setStorageSync('locale', this.array[this.setIndex].value);
-		},
 
-		updateApp () {
-			this.$refs.appUpdate.update(); //调用子组件 检查更新
-		},
-		formatSize () {
-			let that = this;
-			plus.cache.calculate(function (size) {
-				let sizeCache = parseInt(size);
-				if (sizeCache == 0) {
-					that.fileSizeString = "0B";
-				} else if (sizeCache < 1024) {
-					that.fileSizeString = sizeCache + "B";
-				} else if (sizeCache < 1048576) {
-					that.fileSizeString = (sizeCache / 1024).toFixed(2) + "KB";
-				} else if (sizeCache < 1073741824) {
-					that.fileSizeString = (sizeCache / 1048576).toFixed(2) + "MB";
-				} else {
-					that.fileSizeString = (sizeCache / 1073741824).toFixed(2) + "GB";
-				}
-			});
+		toPrivacyAgreement(){
+			uni.navigateTo({
+				url:'/pages/groupbuying/privacyAgreement/privacyAgreement'
+			})
 		},
 
-		initData () {
-			uni.showModal({
-				title: this.$t(`清除缓存`),
-				content: this.$t(`确定清楚本地缓存数据吗`),
-				success: (res) => {
-					if (res.confirm) {
-						this.clearCache()
-						this.formatSize()
-					} else if (res.cancel) {
-						return that.$util.Tips({
-							title: that.$t(`取消`)
-						});
-					}
-				}
-			});
-		},
-		clearCache () {
-			let that = this;
-			let os = plus.os.name;
-			if (os == 'Android') {
-				let main = plus.android.runtimeMainActivity();
-				let sdRoot = main.getCacheDir();
-				let files = plus.android.invoke(sdRoot, "listFiles");
-				let len = files.length;
-				for (let i = 0; i < len; i++) {
-					let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径  
-					plus.io.resolveLocalFileSystemURL(filePath, function (entry) {
-						if (entry.isDirectory) {
-							entry.removeRecursively(function (entry) { //递归删除其下的所有文件及子目录  
-								uni.showToast({
-									title: that.$t(`缓存清理完成`),
-									duration: 2000
-								});
-								that.formatSize(); // 重新计算缓存  
-							}, function (e) {
-								console.log(e.message)
-							});
-						} else {
-							entry.remove();
-						}
-					}, function (e) { });
-				}
-			} else { // ios暂时未找到清理缓存的方法,以下是官方提供的方法,但是无效,会报错  
-				plus.cache.clear(function () {
-					uni.showToast({
-						title: that.$t(`缓存清理完成`),
-						duration: 2000
-					});
-					that.formatSize();
-				});
-			}
-		},
-		/**
-		 * 授权回调
-		 */
-		onLoadFun: function () {
-			this.getUserInfo();
-		},
-		// 授权关闭
-		authColse: function (e) {
-			this.isShowAuth = e
-		},
-		/**
-		 * 小程序设置
-		 */
-		Setting: function () {
-			uni.openSetting({
-				success: function (res) { }
-			});
-		},
-		switchAccounts: function (index) {
-			let userInfo = this.switchUserInfo[index],
-				that = this;
-			that.userIndex = index;
-			if (that.switchUserInfo.length <= 1) return true;
-			if (userInfo === undefined) return that.$util.Tips({
-				title: that.$t(`切换的账号不存在`)
-			});
-			if (userInfo.user_type === 'h5') {
-				uni.showLoading({
-					title: that.$t(`正在切换中`)
-				});
-				switchH5Login().then(res => {
-					uni.hideLoading();
-					that.$store.commit("LOGIN", {
-						'token': res.data.token,
-						'time': this.$Cache.strTotime(res.data.expires_time) - this.$Cache.time()
-					});
-					that.getUserInfo();
-
-				}).catch(err => {
-					uni.hideLoading();
-					return that.$util.Tips({
-						title: err
-					});
-				})
-			} else {
-				that.$store.commit("LOGOUT");
-				uni.showLoading({
-					title: that.$t(`正在切换中`)
-				});
-				toLogin();
-			}
-		},
-		/**
-		 * 退出登录
-		 * 
-		 */
-		outLogin: function () {
-			let that = this;
-			if (that.loginType == 'h5') {
-				uni.showModal({
-					title: that.$t(`提示`),
-					content: that.$t(`确认退出登录`),
-					success: function (res) {
-						if (res.confirm) {
-							getLogout()
-								.then(res => {
-									// uni.clearStorage()
-									that.$store.commit("LOGOUT");
-									uni.reLaunch({
-										url: '/pages/index/index'
-									})
-								})
-								.catch(err => { });
-						} else if (res.cancel) { }
-					}
-				});
-			}
-		},
-		/**
-		 * 获取用户详情
-		 */
-		getUserInfo: function () {
-			let that = this;
-			getUserInfo().then(res => {
-				that.$set(that, 'userInfo', res.data);
-				let switchUserInfo = res.data.switchUserInfo || [];
-				for (let i = 0; i < switchUserInfo.length; i++) {
-					if (switchUserInfo[i].uid == that.userInfo.uid) that.userIndex = i;
-					// 切割h5用户;user_type状态:h5、routine(小程序)、wechat(公众号);注:只有h5未注册手机号时,h5才可和小程序或是公众号数据想通;
-					//#ifdef H5
-					if (
-						!that.$wechat.isWeixin() &&
-						switchUserInfo[i].user_type != "h5" &&
-						switchUserInfo[i].phone === ""
-					)
-						switchUserInfo.splice(i, 1);
-					//#endif
-				}
-				that.$set(that, "switchUserInfo", switchUserInfo);
-			});
-		},
-		/**
-		 * 上传文件
-		 * 
-		 */
-		uploadpic: function () {
-			let that = this;
-			this.canvasStatus = true
-			that.$util.uploadImageChange('upload/image', (res) => {
-				let userInfo = that.switchUserInfo[that.userIndex];
-				if (userInfo !== undefined) {
-					that.userInfo.avatar = res.data.url;
-				}
-				that.switchUserInfo[that.userIndex] = userInfo;
-				that.$set(that, 'switchUserInfo', that.switchUserInfo);
-				this.canvasStatus = false
-			}, (res) => {
-				this.canvasStatus = false
-			}, (res) => {
-				this.canvasWidth = res.w
-				this.canvasHeight = res.h
-			});
+		toUserAgreement(){
+			uni.navigateTo({
+				url:'/pages/groupbuying/userAgreement/userAgreement'
+			})
 		},
 
-		/**
-		 * 提交修改
-		 */
-		formSubmit: function (e) {
-			let that = this,
-				value = e.detail.value,
-				userInfo = that.switchUserInfo[that.userIndex];
-			if (!value.nickname) return that.$util.Tips({
-				title: that.$t(`请输入姓名`)
-			});
-			value.avatar = this.userInfo.avatar;
-			userEdit(value).then(res => {
-				return that.$util.Tips({
-					title: res.msg,
-					icon: 'success'
-				}, {
-					tab: 3,
-					url: 1
-				});
-			}).catch(msg => {
-				return that.$util.Tips({
-					title: msg || that.$t(`保存失败`)
-				}, {
-					tab: 3,
-					url: 1
-				});
-			});
-		}
 	}
 }
 </script>

+ 21 - 0
pages/groupbuying/privacyAgreement/index.rpx.css

@@ -0,0 +1,21 @@
+.scroll-y{
+    height: 100%;
+    overflow: hidden;
+
+}
+.content-box {
+    height: 100%;
+    width: 100%;
+    text-indent:2rem;
+    padding: 20rpx 30rpx 20rpx 30rpx;
+}
+.text_5 {
+    width: 686rpx;
+    height: 100%;
+    overflow-wrap: break-word;
+    color: rgba(51, 51, 51, 1);
+    font-size: 28rpx;
+    font-weight: NaN;
+    text-align: left;
+    line-height: 44rpx;
+}

+ 101 - 0
pages/groupbuying/privacyAgreement/privacyAgreement.vue

@@ -0,0 +1,101 @@
+<template>
+	<view class="page   flex-col" :style="{'height':height}">
+		<scroll-view scroll-y="true" class="scroll-y" >
+			<view class="content-box  flex-col">
+				<rich-text class="text_5">我也不知道这个是哪呀我也不知道我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀</rich-text>
+			</view>
+		</scroll-view>
+	</view>
+</template>
+
+<script>
+	import { getNotice } from '@/api/api.js'
+	export default {
+		data() {
+			return {
+				height:"",
+				notice:{}
+			};
+		},
+		created(){
+			let sysInfo=uni.getSystemInfoSync();
+			this.height= sysInfo.windowHeight - sysInfo.statusBarHeight +'px';
+			console.log("获取到的高度",this.height)
+			this.getNotice();
+		},
+		methods: {
+			getNotice(){
+				getNotice({type:1}).then(res =>{
+					console.log(res)
+					this.notice = res.data
+				});
+			}
+
+
+
+		},
+	};
+</script>
+
+<style>
+	@import '/static/css/common.css';
+	@import './index.rpx.css';
+
+</style>

+ 21 - 0
pages/groupbuying/userAgreement/index.rpx.css

@@ -0,0 +1,21 @@
+.scroll-y{
+    height: 100%;
+    overflow: hidden;
+
+}
+.content-box {
+    height: 100%;
+    width: 100%;
+    text-indent:2rem;
+    padding: 20rpx 30rpx 20rpx 30rpx;
+}
+.text_5 {
+    width: 686rpx;
+    height: 100%;
+    overflow-wrap: break-word;
+    color: rgba(51, 51, 51, 1);
+    font-size: 28rpx;
+    font-weight: NaN;
+    text-align: left;
+    line-height: 44rpx;
+}

+ 94 - 0
pages/groupbuying/userAgreement/userAgreement.vue

@@ -0,0 +1,94 @@
+<template>
+	<view class="page   flex-col" :style="{'height':height}">
+		<scroll-view scroll-y="true" class="scroll-y" >
+			<view class="content-box  flex-col">
+				<rich-text class="text_5">我也不知道这个是哪呀我也不知道我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					我也不知道这个是哪呀
+					这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀我也不知道这个是哪呀</rich-text>
+			</view>
+		</scroll-view>
+	</view>
+</template>
+
+<script>
+	import { getNotice } from '@/api/api.js'
+	export default {
+		data() {
+			return {
+				height:"",
+				notice:{}
+			};
+		},
+		created(){
+			let sysInfo=uni.getSystemInfoSync();
+			this.height= sysInfo.windowHeight - sysInfo.statusBarHeight +'px';
+			console.log("获取到的高度",this.height)
+		},
+		methods: {
+
+
+
+		},
+	};
+</script>
+
+<style>
+	@import '/static/css/common.css';
+	@import './index.rpx.css';
+
+</style>