tangqiang 6 éve%!(EXTRA string=óta)
szülő
commit
2a84862e90
39 módosított fájl, 130 hozzáadás és 9093 törlés
  1. 1 1
      .gitignore
  2. 3 2
      App.vue
  3. 124 16
      pages/index/index.vue
  4. 2 1
      pages/selfInfo/selfInfo.vue
  5. 0 1
      unpackage/dist/dev/.sourcemap/mp-weixin/common/main.js.map
  6. 0 1
      unpackage/dist/dev/.sourcemap/mp-weixin/common/runtime.js.map
  7. 0 1
      unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map
  8. 0 1
      unpackage/dist/dev/.sourcemap/mp-weixin/pages/chat/chat.js.map
  9. 0 1
      unpackage/dist/dev/.sourcemap/mp-weixin/pages/chat/chatDetail/chatDetail.js.map
  10. 0 1
      unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
  11. 0 1
      unpackage/dist/dev/.sourcemap/mp-weixin/pages/selfInfo/selfDetail/selfDetail.js.map
  12. 0 1
      unpackage/dist/dev/.sourcemap/mp-weixin/pages/selfInfo/selfInfo.js.map
  13. 0 4
      unpackage/dist/dev/mp-weixin/app.js
  14. 0 18
      unpackage/dist/dev/mp-weixin/app.json
  15. 0 1
      unpackage/dist/dev/mp-weixin/app.wxss
  16. 0 107
      unpackage/dist/dev/mp-weixin/common/main.js
  17. 0 17
      unpackage/dist/dev/mp-weixin/common/main.wxss
  18. 0 268
      unpackage/dist/dev/mp-weixin/common/runtime.js
  19. 0 7688
      unpackage/dist/dev/mp-weixin/common/vendor.js
  20. 0 114
      unpackage/dist/dev/mp-weixin/pages/chat/chat.js
  21. 0 3
      unpackage/dist/dev/mp-weixin/pages/chat/chat.json
  22. 0 1
      unpackage/dist/dev/mp-weixin/pages/chat/chat.wxml
  23. 0 124
      unpackage/dist/dev/mp-weixin/pages/chat/chatDetail/chatDetail.js
  24. 0 3
      unpackage/dist/dev/mp-weixin/pages/chat/chatDetail/chatDetail.json
  25. 0 1
      unpackage/dist/dev/mp-weixin/pages/chat/chatDetail/chatDetail.wxml
  26. 0 253
      unpackage/dist/dev/mp-weixin/pages/index/index.js
  27. 0 7
      unpackage/dist/dev/mp-weixin/pages/index/index.json
  28. 0 1
      unpackage/dist/dev/mp-weixin/pages/index/index.wxml
  29. 0 124
      unpackage/dist/dev/mp-weixin/pages/index/index.wxss
  30. 0 124
      unpackage/dist/dev/mp-weixin/pages/selfInfo/selfDetail/selfDetail.js
  31. 0 3
      unpackage/dist/dev/mp-weixin/pages/selfInfo/selfDetail/selfDetail.json
  32. 0 1
      unpackage/dist/dev/mp-weixin/pages/selfInfo/selfDetail/selfDetail.wxml
  33. 0 159
      unpackage/dist/dev/mp-weixin/pages/selfInfo/selfInfo.js
  34. 0 3
      unpackage/dist/dev/mp-weixin/pages/selfInfo/selfInfo.json
  35. 0 1
      unpackage/dist/dev/mp-weixin/pages/selfInfo/selfInfo.wxml
  36. 0 33
      unpackage/dist/dev/mp-weixin/project.config.json
  37. 0 7
      unpackage/dist/dev/mp-weixin/sitemap.json
  38. BIN
      unpackage/dist/dev/mp-weixin/static/alienware.png
  39. BIN
      unpackage/dist/dev/mp-weixin/static/logo.png

+ 1 - 1
.gitignore

@@ -1 +1 @@
-/unpackage
+unpackage

+ 3 - 2
App.vue

@@ -1,8 +1,9 @@
 <script>
 	var md5 = require("./common/md5.js");
 	export default {
-		globalData: {  //https://stock.xazhima.com/
-			shareUrl: 'https://guolu.xazhima.com/api/api.php', //开发环境全局接口域名 线上:https://guolu.xazhima.com/
+		globalData: {  //https://stock.xazhima.com/
+		    shareUrl:'https://stock.xazhima.com/api/api.php',
+			//shareUrl: 'https://guolu.xazhima.com/api/api.php', //开发环境全局接口域名 线上:https://guolu.xazhima.com/
 			glbalHeight:'',
 			globalTimestamp: (Date.now()).toString(),
 			user_id: '',

+ 124 - 16
pages/index/index.vue

@@ -2,7 +2,11 @@
 	<view class="content">
 		<!-- <navigation-custom :config="config" :scrollTop="scrollTopNav" @customConduct="customConduct" :scrollMaxHeight="scrollMaxHeight" /> -->
 		<scroll-view id="scrollview" class='chat-box' :style="{height: style.contentViewHeight + 'px'}" scroll-y="true"
-		 :scroll-with-animation="false" :scroll-top="scrollTop" @scrolltoupper="lower()">
+		 :scroll-with-animation="false" :scroll-top="scrollTop" @scrolltoupper="lower()">
+		    <view class="auth" v-if="!isAuth">
+				<text>对不起,您还未登录!请</text>
+				<button open-type="getUserInfo" @getuserinfo="getUserInfo">授权登录</button>
+			</view>
 			<!-- <view class="tips-box">
 				{{nowTime}}
 			</view> -->
@@ -96,7 +100,8 @@
 					contentViewHeight: 0,
 					footViewHeight: 90,
 					mitemHeight: 0
-				},
+				},
+				isAuth:true,
 			}
 		},
 		components: {
@@ -111,7 +116,8 @@
 		},
 		onShow() {
 			this.getNowTime();
-			this.userHeadUrl = getApp().globalData.user_headUrl || '../../static/userDefault.png'
+			this.userHeadUrl = getApp().globalData.user_headUrl || '../../static/userDefault.png',
+			this.isAuth = getApp().globalData.isAuth;
 		},
 		methods: {
 			userLogin(){
@@ -121,7 +127,58 @@
 				        this.getCodeRabot(res)
 					}
 				});
-			},
+			},
+			
+			// 获取用户信息
+			getUserInfo(e) {
+				console.log(e);
+				if (e.detail.errMsg == "getUserInfo:ok") {
+					
+					this.iv = e.detail.iv;
+					this.encryptedData = e.detail.encryptedData;
+					
+					this.loginUserInfo()
+				} else {
+					console.log("用户信息授权失败");
+					this.isShowAuthBtn = true;
+				}
+			},
+			
+			loginUserInfo(){
+				let that = this;
+				uni.request({
+					url:getApp().globalData.shareUrl, //需要设置为全局
+					method: 'POST',
+					header: {
+						'content-type': 'application/x-www-form-urlencoded'
+					},
+					data: {
+						method: 'auth',
+						timestamp: getApp().globalData.globalTimestamp, //Date.now()
+						uid:getApp().globalData.user_id,
+						sign: md5('auth' + getApp().globalData.globalTimestamp),
+						nickname:getApp().globalData.user_name,
+						headimg:getApp().globalData.user_headUrl,
+						iv:that.iv,
+						session_key:that.session_key,
+						encryptedData:that.encryptedData
+						
+					},
+					success: res => {
+						that.isAuth = true;
+						getApp().globalData.user_id = res.data.msg.id;
+						getApp().globalData.open_id = res.data.msg.openid;
+						getApp().globalData.isAuth = that.isAuth;
+						getApp().globalData.times = res.data.msg.times;
+						getApp().globalData.total_times = res.data.msg.total_times;
+						getApp().globalData.user_headUrl = res.data.msg.headimg;
+						getApp().globalData.user_name = res.data.msg.name;
+						that.userHeadUrl = res.data.msg.headimg || '../../static/userDefault.png';
+						that.getHistory();
+					} 
+				});
+			},
+			
 			getCodeRabot(res){
 				let that = this;
 				uni.request({
@@ -139,15 +196,36 @@
 					},
 					success: res => {
 						// 通过openid发起会员登录
-						 getApp().globalData.user_id = res.data.msg.id;
-						 getApp().globalData.open_id = res.data.msg.openid;
-						 getApp().globalData.isAuth = res.data.msg.isauth === '0';
-						 getApp().globalData.times = res.data.msg.times;
-						 getApp().globalData.total_times = res.data.msg.total_times;
-						 getApp().globalData.user_headUrl = res.data.msg.headimg;
-						 getApp().globalData.user_name = res.data.msg.name;
-						 that.userHeadUrl = res.data.msg.headimg || '../../static/userDefault.png';
-						 that.getHistory();	
+						 // getApp().globalData.user_id = res.data.msg.id;
+						 // getApp().globalData.open_id = res.data.msg.openid;
+						 // getApp().globalData.isAuth = res.data.msg.isauth === '0';
+						 // getApp().globalData.times = res.data.msg.times;
+						 // getApp().globalData.total_times = res.data.msg.total_times;
+						 // getApp().globalData.user_headUrl = res.data.msg.headimg;
+						 // getApp().globalData.user_name = res.data.msg.name;
+						 // that.userHeadUrl = res.data.msg.headimg || '../../static/userDefault.png';
+						// that.getHistory();
+							
+						var isAuth = res.data.msg.isauth === 1;
+						
+						
+						if(isAuth){
+							 getApp().globalData.user_id = res.data.msg.id;
+							 getApp().globalData.open_id = res.data.msg.openid;
+					         getApp().globalData.isAuth = isAuth;
+							 getApp().globalData.times = res.data.msg.times;
+							 getApp().globalData.total_times = res.data.msg.total_times;
+							 getApp().globalData.user_headUrl = res.data.msg.headimg;
+							 getApp().globalData.user_name = res.data.msg.name;
+							 that.userHeadUrl = res.data.msg.headimg || '../../static/userDefault.png';
+							 that.getHistory();
+						}else{
+							getApp().globalData.session_key = res.data.msg.session_key;
+							that.isAuth = isAuth;
+							wx.hideLoading();
+							
+						}
+					    
 					} 
 				});
 			},
@@ -236,7 +314,9 @@
 							url: '../selfInfo/payList/payList'
 						})
 					},
-			sendMsgRequest(msg) {
+			sendMsgRequest(msg) {
+				
+				        if(getApp().globalData.user_id=='') return false;
 						let that = this;
 						uni.request({
 							url: getApp().globalData.shareUrl, //需要设置为全局
@@ -316,7 +396,11 @@
 				          // 需要在 popup 组件,指定 ref 为 popup
 				     this.$refs.popup.close();
 			  }
-			},
+			},
+			
+			onShareAppMessage(){
+				
+			}
 		}
 </script>
 
@@ -523,5 +607,29 @@
 	}
 	/* .placeHolder {
 		padding:2px
-	} */
+	} */
+	
+	
+	.auth{
+		display: flex;
+		flex-direction: row;
+		font-size: 14px;
+		justify-content: center;
+		align-items: center;
+		background-color: #eee;
+	}
+	
+	.auth button{
+		font-size: 14px;
+		padding:0px;
+		margin:0px;
+		color:#007AFF;
+		background-color: #eee;
+		
+		
+	}
+	
+	.auth button:after{
+		border: 0px;
+	}
 </style>

+ 2 - 1
pages/selfInfo/selfInfo.vue

@@ -76,7 +76,8 @@
 		},
 		methods: {
 			// 获取用户信息
-			getUserInfo(e) {
+			getUserInfo(e) {
+				console.log(e);
 				if (e.detail.errMsg == "getUserInfo:ok") {
 					this.userHeadUrl = e.detail.userInfo.avatarUrl;
 					this.userName = e.detail.userInfo.nickName;

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/common/main.js.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/common/runtime.js.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/chat/chat.js.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/chat/chatDetail/chatDetail.js.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/selfInfo/selfDetail/selfDetail.js.map


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/selfInfo/selfInfo.js.map


+ 0 - 4
unpackage/dist/dev/mp-weixin/app.js

@@ -1,4 +0,0 @@
-
-require('./common/runtime.js')
-require('./common/vendor.js')
-require('./common/main.js')

+ 0 - 18
unpackage/dist/dev/mp-weixin/app.json

@@ -1,18 +0,0 @@
-{
-  "pages": [
-    "pages/index/index",
-    "pages/chat/chat",
-    "pages/chat/chatDetail/chatDetail",
-    "pages/selfInfo/selfInfo",
-    "pages/selfInfo/selfDetail/selfDetail"
-  ],
-  "subPackages": [],
-  "window": {
-    "navigationBarTextStyle": "black",
-    "navigationBarTitleText": "mini_rabot",
-    "navigationBarBackgroundColor": "#F8F8F8",
-    "backgroundColor": "#F8F8F8"
-  },
-  "usingComponents": {},
-  "sitemapLocation": "sitemap35.json"
-}

+ 0 - 1
unpackage/dist/dev/mp-weixin/app.wxss

@@ -1 +0,0 @@
-@import './common/main.wxss';

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 107
unpackage/dist/dev/mp-weixin/common/main.js


+ 0 - 17
unpackage/dist/dev/mp-weixin/common/main.wxss

@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/*每个页面公共css */
-

+ 0 - 268
unpackage/dist/dev/mp-weixin/common/runtime.js

@@ -1,268 +0,0 @@
-
-  !function(){try{var r=Function("return this")();r&&!r.Math&&Object.assign(r,{Array:Array,Date:Date,Error:Error,Function:Function,Math:Math,Object:Object,RegExp:RegExp,String:String,TypeError:TypeError,setTimeout:setTimeout,clearTimeout:clearTimeout,setInterval:setInterval,clearInterval:clearInterval})}catch(r){}}();
-  /******/ (function(modules) { // webpackBootstrap
-/******/ 	// install a JSONP callback for chunk loading
-/******/ 	function webpackJsonpCallback(data) {
-/******/ 		var chunkIds = data[0];
-/******/ 		var moreModules = data[1];
-/******/ 		var executeModules = data[2];
-/******/
-/******/ 		// add "moreModules" to the modules object,
-/******/ 		// then flag all "chunkIds" as loaded and fire callback
-/******/ 		var moduleId, chunkId, i = 0, resolves = [];
-/******/ 		for(;i < chunkIds.length; i++) {
-/******/ 			chunkId = chunkIds[i];
-/******/ 			if(installedChunks[chunkId]) {
-/******/ 				resolves.push(installedChunks[chunkId][0]);
-/******/ 			}
-/******/ 			installedChunks[chunkId] = 0;
-/******/ 		}
-/******/ 		for(moduleId in moreModules) {
-/******/ 			if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
-/******/ 				modules[moduleId] = moreModules[moduleId];
-/******/ 			}
-/******/ 		}
-/******/ 		if(parentJsonpFunction) parentJsonpFunction(data);
-/******/
-/******/ 		while(resolves.length) {
-/******/ 			resolves.shift()();
-/******/ 		}
-/******/
-/******/ 		// add entry modules from loaded chunk to deferred list
-/******/ 		deferredModules.push.apply(deferredModules, executeModules || []);
-/******/
-/******/ 		// run deferred modules when all chunks ready
-/******/ 		return checkDeferredModules();
-/******/ 	};
-/******/ 	function checkDeferredModules() {
-/******/ 		var result;
-/******/ 		for(var i = 0; i < deferredModules.length; i++) {
-/******/ 			var deferredModule = deferredModules[i];
-/******/ 			var fulfilled = true;
-/******/ 			for(var j = 1; j < deferredModule.length; j++) {
-/******/ 				var depId = deferredModule[j];
-/******/ 				if(installedChunks[depId] !== 0) fulfilled = false;
-/******/ 			}
-/******/ 			if(fulfilled) {
-/******/ 				deferredModules.splice(i--, 1);
-/******/ 				result = __webpack_require__(__webpack_require__.s = deferredModule[0]);
-/******/ 			}
-/******/ 		}
-/******/ 		return result;
-/******/ 	}
-/******/
-/******/ 	// The module cache
-/******/ 	var installedModules = {};
-/******/
-/******/ 	// object to store loaded CSS chunks
-/******/ 	var installedCssChunks = {
-/******/ 		"common/runtime": 0
-/******/ 	}
-/******/
-/******/ 	// object to store loaded and loading chunks
-/******/ 	// undefined = chunk not loaded, null = chunk preloaded/prefetched
-/******/ 	// Promise = chunk loading, 0 = chunk loaded
-/******/ 	var installedChunks = {
-/******/ 		"common/runtime": 0
-/******/ 	};
-/******/
-/******/ 	var deferredModules = [];
-/******/
-/******/ 	// script path function
-/******/ 	function jsonpScriptSrc(chunkId) {
-/******/ 		return __webpack_require__.p + "" + chunkId + ".js"
-/******/ 	}
-/******/
-/******/ 	// The require function
-/******/ 	function __webpack_require__(moduleId) {
-/******/
-/******/ 		// Check if module is in cache
-/******/ 		if(installedModules[moduleId]) {
-/******/ 			return installedModules[moduleId].exports;
-/******/ 		}
-/******/ 		// Create a new module (and put it into the cache)
-/******/ 		var module = installedModules[moduleId] = {
-/******/ 			i: moduleId,
-/******/ 			l: false,
-/******/ 			exports: {}
-/******/ 		};
-/******/
-/******/ 		// Execute the module function
-/******/ 		modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
-/******/
-/******/ 		// Flag the module as loaded
-/******/ 		module.l = true;
-/******/
-/******/ 		// Return the exports of the module
-/******/ 		return module.exports;
-/******/ 	}
-/******/
-/******/ 	// This file contains only the entry chunk.
-/******/ 	// The chunk loading function for additional chunks
-/******/ 	__webpack_require__.e = function requireEnsure(chunkId) {
-/******/ 		var promises = [];
-/******/
-/******/
-/******/ 		// mini-css-extract-plugin CSS loading
-/******/ 		var cssChunks = {"components/struggler-navigationCustom/navigation-custom":1};
-/******/ 		if(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);
-/******/ 		else if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {
-/******/ 			promises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) {
-/******/ 				var href = "" + ({"components/struggler-navigationCustom/navigation-custom":"components/struggler-navigationCustom/navigation-custom"}[chunkId]||chunkId) + ".wxss";
-/******/ 				var fullhref = __webpack_require__.p + href;
-/******/ 				var existingLinkTags = document.getElementsByTagName("link");
-/******/ 				for(var i = 0; i < existingLinkTags.length; i++) {
-/******/ 					var tag = existingLinkTags[i];
-/******/ 					var dataHref = tag.getAttribute("data-href") || tag.getAttribute("href");
-/******/ 					if(tag.rel === "stylesheet" && (dataHref === href || dataHref === fullhref)) return resolve();
-/******/ 				}
-/******/ 				var existingStyleTags = document.getElementsByTagName("style");
-/******/ 				for(var i = 0; i < existingStyleTags.length; i++) {
-/******/ 					var tag = existingStyleTags[i];
-/******/ 					var dataHref = tag.getAttribute("data-href");
-/******/ 					if(dataHref === href || dataHref === fullhref) return resolve();
-/******/ 				}
-/******/ 				var linkTag = document.createElement("link");
-/******/ 				linkTag.rel = "stylesheet";
-/******/ 				linkTag.type = "text/css";
-/******/ 				linkTag.onload = resolve;
-/******/ 				linkTag.onerror = function(event) {
-/******/ 					var request = event && event.target && event.target.src || fullhref;
-/******/ 					var err = new Error("Loading CSS chunk " + chunkId + " failed.\n(" + request + ")");
-/******/ 					err.request = request;
-/******/ 					delete installedCssChunks[chunkId]
-/******/ 					linkTag.parentNode.removeChild(linkTag)
-/******/ 					reject(err);
-/******/ 				};
-/******/ 				linkTag.href = fullhref;
-/******/
-/******/ 				var head = document.getElementsByTagName("head")[0];
-/******/ 				head.appendChild(linkTag);
-/******/ 			}).then(function() {
-/******/ 				installedCssChunks[chunkId] = 0;
-/******/ 			}));
-/******/ 		}
-/******/
-/******/ 		// JSONP chunk loading for javascript
-/******/
-/******/ 		var installedChunkData = installedChunks[chunkId];
-/******/ 		if(installedChunkData !== 0) { // 0 means "already installed".
-/******/
-/******/ 			// a Promise means "currently loading".
-/******/ 			if(installedChunkData) {
-/******/ 				promises.push(installedChunkData[2]);
-/******/ 			} else {
-/******/ 				// setup Promise in chunk cache
-/******/ 				var promise = new Promise(function(resolve, reject) {
-/******/ 					installedChunkData = installedChunks[chunkId] = [resolve, reject];
-/******/ 				});
-/******/ 				promises.push(installedChunkData[2] = promise);
-/******/
-/******/ 				// start chunk loading
-/******/ 				var script = document.createElement('script');
-/******/ 				var onScriptComplete;
-/******/
-/******/ 				script.charset = 'utf-8';
-/******/ 				script.timeout = 120;
-/******/ 				if (__webpack_require__.nc) {
-/******/ 					script.setAttribute("nonce", __webpack_require__.nc);
-/******/ 				}
-/******/ 				script.src = jsonpScriptSrc(chunkId);
-/******/
-/******/ 				onScriptComplete = function (event) {
-/******/ 					// avoid mem leaks in IE.
-/******/ 					script.onerror = script.onload = null;
-/******/ 					clearTimeout(timeout);
-/******/ 					var chunk = installedChunks[chunkId];
-/******/ 					if(chunk !== 0) {
-/******/ 						if(chunk) {
-/******/ 							var errorType = event && (event.type === 'load' ? 'missing' : event.type);
-/******/ 							var realSrc = event && event.target && event.target.src;
-/******/ 							var error = new Error('Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')');
-/******/ 							error.type = errorType;
-/******/ 							error.request = realSrc;
-/******/ 							chunk[1](error);
-/******/ 						}
-/******/ 						installedChunks[chunkId] = undefined;
-/******/ 					}
-/******/ 				};
-/******/ 				var timeout = setTimeout(function(){
-/******/ 					onScriptComplete({ type: 'timeout', target: script });
-/******/ 				}, 120000);
-/******/ 				script.onerror = script.onload = onScriptComplete;
-/******/ 				document.head.appendChild(script);
-/******/ 			}
-/******/ 		}
-/******/ 		return Promise.all(promises);
-/******/ 	};
-/******/
-/******/ 	// expose the modules object (__webpack_modules__)
-/******/ 	__webpack_require__.m = modules;
-/******/
-/******/ 	// expose the module cache
-/******/ 	__webpack_require__.c = installedModules;
-/******/
-/******/ 	// define getter function for harmony exports
-/******/ 	__webpack_require__.d = function(exports, name, getter) {
-/******/ 		if(!__webpack_require__.o(exports, name)) {
-/******/ 			Object.defineProperty(exports, name, { enumerable: true, get: getter });
-/******/ 		}
-/******/ 	};
-/******/
-/******/ 	// define __esModule on exports
-/******/ 	__webpack_require__.r = function(exports) {
-/******/ 		if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
-/******/ 			Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
-/******/ 		}
-/******/ 		Object.defineProperty(exports, '__esModule', { value: true });
-/******/ 	};
-/******/
-/******/ 	// create a fake namespace object
-/******/ 	// mode & 1: value is a module id, require it
-/******/ 	// mode & 2: merge all properties of value into the ns
-/******/ 	// mode & 4: return value when already ns object
-/******/ 	// mode & 8|1: behave like require
-/******/ 	__webpack_require__.t = function(value, mode) {
-/******/ 		if(mode & 1) value = __webpack_require__(value);
-/******/ 		if(mode & 8) return value;
-/******/ 		if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
-/******/ 		var ns = Object.create(null);
-/******/ 		__webpack_require__.r(ns);
-/******/ 		Object.defineProperty(ns, 'default', { enumerable: true, value: value });
-/******/ 		if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
-/******/ 		return ns;
-/******/ 	};
-/******/
-/******/ 	// getDefaultExport function for compatibility with non-harmony modules
-/******/ 	__webpack_require__.n = function(module) {
-/******/ 		var getter = module && module.__esModule ?
-/******/ 			function getDefault() { return module['default']; } :
-/******/ 			function getModuleExports() { return module; };
-/******/ 		__webpack_require__.d(getter, 'a', getter);
-/******/ 		return getter;
-/******/ 	};
-/******/
-/******/ 	// Object.prototype.hasOwnProperty.call
-/******/ 	__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
-/******/
-/******/ 	// __webpack_public_path__
-/******/ 	__webpack_require__.p = "/";
-/******/
-/******/ 	// on error function for async loading
-/******/ 	__webpack_require__.oe = function(err) { console.error(err); throw err; };
-/******/
-/******/ 	var jsonpArray = global["webpackJsonp"] = global["webpackJsonp"] || [];
-/******/ 	var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
-/******/ 	jsonpArray.push = webpackJsonpCallback;
-/******/ 	jsonpArray = jsonpArray.slice();
-/******/ 	for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);
-/******/ 	var parentJsonpFunction = oldJsonpFunction;
-/******/
-/******/
-/******/ 	// run deferred modules from other chunks
-/******/ 	checkDeferredModules();
-/******/ })
-/************************************************************************/
-/******/ ([]);
-//# sourceMappingURL=../../.sourcemap/mp-weixin/common/runtime.js.map
-  

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 7688
unpackage/dist/dev/mp-weixin/common/vendor.js


A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 114
unpackage/dist/dev/mp-weixin/pages/chat/chat.js


+ 0 - 3
unpackage/dist/dev/mp-weixin/pages/chat/chat.json

@@ -1,3 +0,0 @@
-{
-  "usingComponents": {}
-}

+ 0 - 1
unpackage/dist/dev/mp-weixin/pages/chat/chat.wxml

@@ -1 +0,0 @@
-<view class="_div"></view>

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 124
unpackage/dist/dev/mp-weixin/pages/chat/chatDetail/chatDetail.js


+ 0 - 3
unpackage/dist/dev/mp-weixin/pages/chat/chatDetail/chatDetail.json

@@ -1,3 +0,0 @@
-{
-  "usingComponents": {}
-}

+ 0 - 1
unpackage/dist/dev/mp-weixin/pages/chat/chatDetail/chatDetail.wxml

@@ -1 +0,0 @@
-<view></view>

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 253
unpackage/dist/dev/mp-weixin/pages/index/index.js


+ 0 - 7
unpackage/dist/dev/mp-weixin/pages/index/index.json

@@ -1,7 +0,0 @@
-{
-  "navigationBarTitleText": "阿拉丁神灯",
-  "navigationStyle": "custom",
-  "usingComponents": {
-    "navigation-custom": "/components/struggler-navigationCustom/navigation-custom"
-  }
-}

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 1
unpackage/dist/dev/mp-weixin/pages/index/index.wxml


+ 0 - 124
unpackage/dist/dev/mp-weixin/pages/index/index.wxss

@@ -1,124 +0,0 @@
-
-.content {
-		text-align: center;
-}
-.chat-box {
-		background: #f4f5f7;
-		padding-top: 3%;
-		padding-bottom:100rpx;
-}
-.tips-box {
-		background:#D5D5DA;
-		font-size: 28rpx;
-		color: #fff;
-		border-radius: 30rpx;
-		width: 50%;
-		margin: 0 auto;
-		height: 50rpx;
-		line-height: 50rpx
-}
-.tips-title{
-		width: 70%;
-		margin-top: 5%;
-		font-size: 30rpx;
-		height: 70rpx;
-		line-height: 70rpx
-}
-.send-box {
-		width: 100%;
-		height: 90rpx;
-		position: fixed;
-		bottom: 0;
-		background: #F4F0ED;
-		display: -webkit-box;
-		display: -webkit-flex;
-		display: -ms-flexbox;
-		display: flex;
-		-webkit-box-align: center;
-		-webkit-align-items: center;
-		    -ms-flex-align: center;
-		        align-items: center;
-}
-.talk-box {
-		display: -webkit-box;
-		display: -webkit-flex;
-		display: -ms-flexbox;
-		display: flex;
-		-webkit-box-pack: start;
-		-webkit-justify-content: flex-start;
-		    -ms-flex-pack: start;
-		        justify-content: flex-start;
-		-webkit-box-align: center;
-		-webkit-align-items: center;
-		    -ms-flex-align: center;
-		        align-items: center;
-		margin-top: 3%;
-}
-.talk-box-end{
-		-webkit-box-pack: end;
-		-webkit-justify-content: flex-end;
-		    -ms-flex-pack: end;
-		        justify-content: flex-end;
-}
-.talk-head-box {
-		width: 80rpx;
-		height:80rpx;
-		border-radius: 30rpx;
-		margin-left: 2%;
-        margin-right: 2%;
-}
-.talk-head {
-		width: 100%;
-		height: 100%;
-		border-radius: 50%;
-}
-.talk-content {
-		padding: 2%;
-		background: #fff;
-	/* 	height:50rpx;
-		line-height: 50rpx; */
-		font-size: 28rpx;
-		border-top-right-radius: 20rpx;
-		border-bottom-left-radius: 20rpx;
-		border-bottom-right-radius:20rpx;
-		text-align: left;
-		max-width: 70%;
-}
-.enter-box {
-		width: 78%;
-		height: 70rpx;
-		margin-left: 5px;
-		background: #fff;
-		border-radius: 1%;
-}
-.submit-message {
-		width: 18%;
-		height: 70rpx;
-		font-size: 28rpx;
-		line-height: 70rpx;
-		color: #fff;
-		background-color: #0A98D5!important;
-}
-.logo {
-		height: 200rpx;
-		width: 200rpx;
-		margin-top: 200rpx;
-		margin-left: auto;
-		margin-right: auto;
-		margin-bottom: 50rpx;
-}
-.text-area {
-		display: -webkit-box;
-		display: -webkit-flex;
-		display: -ms-flexbox;
-		display: flex;
-		-webkit-box-pack: center;
-		-webkit-justify-content: center;
-		    -ms-flex-pack: center;
-		        justify-content: center;
-}
-.title {
-		font-size: 36rpx;
-		color: #8f8f94;
-}
-

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 124
unpackage/dist/dev/mp-weixin/pages/selfInfo/selfDetail/selfDetail.js


+ 0 - 3
unpackage/dist/dev/mp-weixin/pages/selfInfo/selfDetail/selfDetail.json

@@ -1,3 +0,0 @@
-{
-  "usingComponents": {}
-}

+ 0 - 1
unpackage/dist/dev/mp-weixin/pages/selfInfo/selfDetail/selfDetail.wxml

@@ -1 +0,0 @@
-<view></view>

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 0 - 159
unpackage/dist/dev/mp-weixin/pages/selfInfo/selfInfo.js


+ 0 - 3
unpackage/dist/dev/mp-weixin/pages/selfInfo/selfInfo.json

@@ -1,3 +0,0 @@
-{
-  "usingComponents": {}
-}

+ 0 - 1
unpackage/dist/dev/mp-weixin/pages/selfInfo/selfInfo.wxml

@@ -1 +0,0 @@
-<view class="content"><image class="logo" src="/static/logo.png" mode="aspectFit"></image><view class="text-area"><text class="title">{{title}}</text></view></view>

+ 0 - 33
unpackage/dist/dev/mp-weixin/project.config.json

@@ -1,33 +0,0 @@
-{
-	"description": "项目配置文件。",
-	"packOptions": {
-		"ignore": []
-	},
-	"setting": {
-		"urlCheck": false
-	},
-	"compileType": "miniprogram",
-	"libVersion": "2.7.0",
-	"appid": "touristappid",
-	"projectname": "mini_rabot",
-	"simulatorType": "wechat",
-	"simulatorPluginLibVersion": {},
-	"condition": {
-		"search": {
-			"current": -1,
-			"list": []
-		},
-		"conversation": {
-			"current": -1,
-			"list": []
-		},
-		"game": {
-			"current": -1,
-			"list": []
-		},
-		"miniprogram": {
-			"current": -1,
-			"list": []
-		}
-	}
-}

+ 0 - 7
unpackage/dist/dev/mp-weixin/sitemap.json

@@ -1,7 +0,0 @@
-{
-  "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
-  "rules": [{
-  "action": "allow",
-  "page": "*"
-  }]
-}

BIN
unpackage/dist/dev/mp-weixin/static/alienware.png


BIN
unpackage/dist/dev/mp-weixin/static/logo.png