傅豪杰 1 year ago
parent
commit
aa04db25e2
3 changed files with 151 additions and 145 deletions
  1. 2 1
      config/index.js
  2. 148 143
      src/pages/setting.vue
  3. 1 1
      src/store/store.js

+ 2 - 1
config/index.js

@@ -12,7 +12,8 @@ module.exports = {
     proxyTable: {
       '/':{
         target:'http://192.168.31.201:8080/tianzong',
-        changeOrigin:true
+        changeOrigin:true,
+        logLevel:'debug'
       }
     },
 

+ 148 - 143
src/pages/setting.vue

@@ -1,161 +1,166 @@
 <template>
-	<div class="body">
-		<!-- 选择类型 -->
-		<back :title="titlename"></back>
-		<div class="list">
-			<router-link to="/Forgetpassword">
-				<span>修改密码</span>
-			</router-link>
-			<router-link to="">
-				<span>关于</span>
-			</router-link>
-			<router-link to="/Sytk">
-				<span>使用条款</span>
-			</router-link>
-
-		</div>
-		<div class="btn">
-			<van-button color="#00c4b8" @click="loginout">退出登录</van-button>
-		</div>
-		
-	</div>
-
+  <div class="body">
+    <!-- 选择类型 -->
+    <back :title="titlename"></back>
+    <div class="list">
+      <router-link to="/Forgetpassword">
+        <span>修改密码</span>
+      </router-link>
+      <router-link to="">
+        <span>关于</span>
+      </router-link>
+      <router-link to="/Sytk">
+        <span>使用条款</span>
+      </router-link>
+    </div>
+    <div class="btn">
+      <van-button color="#00c4b8" @click="loginout">退出登录</van-button>
+    </div>
+  </div>
 </template>
 
 <script>
-	export default {
-		data() {
-			return {
-				titlename: "设置",
-				userId: "",
-				user: []
-			};
-		},
-		created: function() {
-			this.isLogin();
-			this.userId = localStorage.getItem("userId");
-			//this.openid = '123'
-		},
-		methods: {
-			//跳转
-			getUser() {
-				this.$http.post(this.$store.state.host + "/interface/getUser", {
-						userId: this.userId
-					}, {
-						emulateJSON: true
-					})
-					.then(res => {
-						//发送成功
-						if (res.body.code == 0) {
-							this.user = res.body.userPd;
-							console.log(this.user);
-						}
+export default {
+  data() {
+    return {
+      titlename: "设置",
+      userId: "",
+      user: [],
+    };
+  },
+  created: function () {
+    this.isLogin();
+    this.userId = localStorage.getItem("userId");
+    //this.openid = '123'
+  },
+  methods: {
+    //跳转
+    getUser() {
+      this.$http
+        .post(
+          this.$store.state.host + "/interface/getUser",
+          {
+            userId: this.userId,
+          },
+          {
+            emulateJSON: true,
+          }
+        )
+        .then(
+          (res) => {
+            //发送成功
+            if (res.body.code == 0) {
+              this.user = res.body.userPd;
+              console.log(this.user);
+            }
 
-						//if()
-					}, res => {
-						//发送失败
-					})
-			},
-			//退出登录
-			loginout(){
-				localStorage.removeItem("userId");
-				localStorage.removeItem("openid");
-				window.location.href ='http://47.101.145.23/wuliu/';
-			}
-		}
-	};
+            //if()
+          },
+          (res) => {
+            //发送失败
+          }
+        );
+    },
+    // 退出登录
+    loginout() {
+      localStorage.removeItem("userId");
+      localStorage.removeItem("openid");
+      window.location.href = "http://47.101.145.23/wuliu/";
+    },
+  },
+};
 </script>
 
 <style lang="less" scoped>
-	body {
-		background: #fbfbfb;
-	}
+body {
+  background: #fbfbfb;
+}
 
-	.body {
-		.head {
-			padding: .43rem .38rem;
-			font-size: .24rem;
-			color: #999;
-			display: flex;
-			background: white;
-			flex-wrap: wrap;
-			position: relative;
+.body {
+  .head {
+    padding: 0.43rem 0.38rem;
+    font-size: 0.24rem;
+    color: #999;
+    display: flex;
+    background: white;
+    flex-wrap: wrap;
+    position: relative;
 
-			img {
-				width: 1.48rem;
-				height: 1.48rem;
-				border-radius: 50%;
-				margin-right: .4rem;
-			}
+    img {
+      width: 1.48rem;
+      height: 1.48rem;
+      border-radius: 50%;
+      margin-right: 0.4rem;
+    }
 
-			div {
-				p:nth-of-type(1) {
-					font-size: .36rem;
-					font-weight: bold;
-					color: #333;
-					margin-bottom: .2rem;
-					padding-top: .3rem;
-				}
-			}
+    div {
+      p:nth-of-type(1) {
+        font-size: 0.36rem;
+        font-weight: bold;
+        color: #333;
+        margin-bottom: 0.2rem;
+        padding-top: 0.3rem;
+      }
+    }
 
-			div:after {
-				content: "";
-				display: block;
-				width: .2rem;
-				height: .2rem;
-				border-left: .01rem solid #333;
-				border-top: .01rem solid #333;
-				transform: rotate(135deg);
-				position: absolute;
-				right: .38rem;
-				top: 1rem;
-			}
-		}
+    div:after {
+      content: "";
+      display: block;
+      width: 0.2rem;
+      height: 0.2rem;
+      border-left: 0.01rem solid #333;
+      border-top: 0.01rem solid #333;
+      transform: rotate(135deg);
+      position: absolute;
+      right: 0.38rem;
+      top: 1rem;
+    }
+  }
 
-		.list {
-			background: white;
-			margin-top: .36rem;
-			border-radius: .05rem;
+  .list {
+    background: white;
+    margin-top: 0.36rem;
+    border-radius: 0.05rem;
 
-			a {
-				font-size: .3rem;
-				display: block;
-				color: #333;
-				padding: .3rem .4rem;
-				border-bottom: 1px solid #f4f3f3;
-				position: relative;
+    a {
+      font-size: 0.3rem;
+      display: block;
+      color: #333;
+      padding: 0.3rem 0.4rem;
+      border-bottom: 1px solid #f4f3f3;
+      position: relative;
 
-				img {
-					width: .4rem;
-					height: .4rem;
-				}
+      img {
+        width: 0.4rem;
+        height: 0.4rem;
+      }
 
-				span {
-					position: relative;
-					top: -.075rem;
-					margin-left: 0rem;
-				}
-			}
+      span {
+        position: relative;
+        top: -0.075rem;
+        margin-left: 0rem;
+      }
+    }
 
-			a:after {
-				content: "";
-				display: block;
-				width: .2rem;
-				height: .2rem;
-				border-left: .01rem solid #b8b8b8;
-				border-top: .01rem solid #b8b8b8;
-				transform: rotate(135deg);
-				position: absolute;
-				right: .4rem;
-				top: .4rem;
-			}
-		}
-		.btn{
-			padding: 0px .37rem;
-			button{
-				width: 100%;
-				color: white;
-			}
-		}
-	}
+    a:after {
+      content: "";
+      display: block;
+      width: 0.2rem;
+      height: 0.2rem;
+      border-left: 0.01rem solid #b8b8b8;
+      border-top: 0.01rem solid #b8b8b8;
+      transform: rotate(135deg);
+      position: absolute;
+      right: 0.4rem;
+      top: 0.4rem;
+    }
+  }
+  .btn {
+    padding: 0px 0.37rem;
+    button {
+      width: 100%;
+      color: white;
+    }
+  }
+}
 </style>

+ 1 - 1
src/store/store.js

@@ -8,7 +8,7 @@ const store = new Vuex.Store({
     openId: localStorage.getItem('openid'),
     // 服务器用
     // host: "http://www.kzmos.com/tianzong",
-    host: '',
+    host: '/tianzong',
     // 本地用
     // host:"http://localhost:8080/tianzong",
     regEmail: '^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$',