完善
This commit is contained in:
		
							parent
							
								
									71fb824b9c
								
							
						
					
					
						commit
						58eb28c680
					
				@ -14,7 +14,6 @@
 | 
				
			|||||||
        :text="item.articlecontent"
 | 
					        :text="item.articlecontent"
 | 
				
			||||||
        :comment="item.comment"
 | 
					        :comment="item.comment"
 | 
				
			||||||
        :num="item.islike"
 | 
					        :num="item.islike"
 | 
				
			||||||
        
 | 
					 | 
				
			||||||
      ></follow>
 | 
					      ></follow>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -54,7 +53,6 @@
 | 
				
			|||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
      <div class="bodys">
 | 
					      <div class="bodys">
 | 
				
			||||||
        <comment v-for="(item,index) in plist" :key="index"></comment>
 | 
					        <comment v-for="(item,index) in plist" :key="index"></comment>
 | 
				
			||||||
       
 | 
					 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
      <div class="reply">
 | 
					      <div class="reply">
 | 
				
			||||||
        <img @click="biaoqing = !biaoqing" src="./assets/baoqing.png" alt srcset />
 | 
					        <img @click="biaoqing = !biaoqing" src="./assets/baoqing.png" alt srcset />
 | 
				
			||||||
@ -85,8 +83,8 @@ export default {
 | 
				
			|||||||
      biaoqing: false,
 | 
					      biaoqing: false,
 | 
				
			||||||
      list: {},
 | 
					      list: {},
 | 
				
			||||||
      huida: [],
 | 
					      huida: [],
 | 
				
			||||||
      plist:[],
 | 
					      plist: [],
 | 
				
			||||||
      pid:0
 | 
					      pid: 0
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  components: {
 | 
					  components: {
 | 
				
			||||||
@ -99,27 +97,34 @@ export default {
 | 
				
			|||||||
    Emotion
 | 
					    Emotion
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  methods: {
 | 
					  methods: {
 | 
				
			||||||
    pfb(){
 | 
					    pfb() {
 | 
				
			||||||
      window.console.log(this.content)
 | 
					      if (localStorage.getItem("token") == "") {
 | 
				
			||||||
      this.axios.post("http://lawpro.earnest.pro/api/login_main/appendComment",{
 | 
					        this.$router.push("/login");
 | 
				
			||||||
        text:this.content,
 | 
					      } else {
 | 
				
			||||||
        token:localStorage.getItem('token'),
 | 
					        window.console.log(this.content);
 | 
				
			||||||
        type_id:this.pid,
 | 
					        if (this.content != "") {
 | 
				
			||||||
        type:3
 | 
					          this.axios
 | 
				
			||||||
      }).then((res)=>{
 | 
					            .post("http://lawpro.earnest.pro/api/login_main/appendComment", {
 | 
				
			||||||
        if(res.data.code == 200){
 | 
					              text: this.content,
 | 
				
			||||||
this.pinglu(this.pid);
 | 
					              token: localStorage.getItem("token"),
 | 
				
			||||||
 | 
					              type_id: this.pid,
 | 
				
			||||||
 | 
					              type: 3
 | 
				
			||||||
 | 
					            })
 | 
				
			||||||
 | 
					            .then(res => {
 | 
				
			||||||
 | 
					              if (res.data.code == 200) {
 | 
				
			||||||
 | 
					                this.pinglu(this.pid);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        this.content = ""
 | 
					                this.content = "";
 | 
				
			||||||
 | 
					              }
 | 
				
			||||||
 | 
					            });
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        
 | 
					      }
 | 
				
			||||||
      })
 | 
					 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    handleEmotion(i) {
 | 
					    handleEmotion(i) {
 | 
				
			||||||
      this.content += i;
 | 
					      this.content += i;
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    pinglu(id) {
 | 
					    pinglu(id) {
 | 
				
			||||||
      this.pid= id
 | 
					      this.pid = id;
 | 
				
			||||||
      this.axios
 | 
					      this.axios
 | 
				
			||||||
        .post("http://lawpro.earnest.pro/api/login_main/CommentList", {
 | 
					        .post("http://lawpro.earnest.pro/api/login_main/CommentList", {
 | 
				
			||||||
          token: localStorage.getItem("token"),
 | 
					          token: localStorage.getItem("token"),
 | 
				
			||||||
@ -127,10 +132,10 @@ this.pinglu(this.pid);
 | 
				
			|||||||
          type_id: id
 | 
					          type_id: id
 | 
				
			||||||
        })
 | 
					        })
 | 
				
			||||||
        .then(res => {
 | 
					        .then(res => {
 | 
				
			||||||
          window.console.log(res)
 | 
					          window.console.log(res);
 | 
				
			||||||
          this.plist = res.data.data.data
 | 
					          this.plist = res.data.data.data;
 | 
				
			||||||
          // this.list = res.data.data;
 | 
					          // this.list = res.data.data;
 | 
				
			||||||
          this.show = true
 | 
					          this.show = true;
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
@ -139,7 +144,7 @@ this.pinglu(this.pid);
 | 
				
			|||||||
      .post("http://lawpro.earnest.pro/api/login_main/mainDetails", {
 | 
					      .post("http://lawpro.earnest.pro/api/login_main/mainDetails", {
 | 
				
			||||||
        token: localStorage.getItem("token"),
 | 
					        token: localStorage.getItem("token"),
 | 
				
			||||||
        type: 2,
 | 
					        type: 2,
 | 
				
			||||||
        id: this. $route.query.id
 | 
					        id: this.$route.query.id
 | 
				
			||||||
      })
 | 
					      })
 | 
				
			||||||
      .then(res => {
 | 
					      .then(res => {
 | 
				
			||||||
        // window.console.log(res)
 | 
					        // window.console.log(res)
 | 
				
			||||||
@ -161,164 +166,163 @@ this.pinglu(this.pid);
 | 
				
			|||||||
</script>
 | 
					</script>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<style lang="scss">
 | 
					<style lang="scss">
 | 
				
			||||||
.box{
 | 
					.box {
 | 
				
			||||||
.linshi {
 | 
					  .linshi {
 | 
				
			||||||
  z-index: 999999 !important;
 | 
					    z-index: 999999 !important;
 | 
				
			||||||
  .top {
 | 
					    .top {
 | 
				
			||||||
    background-color: #fff;
 | 
					      background-color: #fff;
 | 
				
			||||||
    position: absolute;
 | 
					      position: absolute;
 | 
				
			||||||
    top: 0;
 | 
					      top: 0;
 | 
				
			||||||
    width: 100%;
 | 
					      width: 100%;
 | 
				
			||||||
    height: 98px;
 | 
					      height: 98px;
 | 
				
			||||||
    border-bottom: #f6f6f6 solid 1px;
 | 
					      border-bottom: #f6f6f6 solid 1px;
 | 
				
			||||||
    display: flex;
 | 
					 | 
				
			||||||
    align-items: center;
 | 
					 | 
				
			||||||
    .tiao {
 | 
					 | 
				
			||||||
      font-size: 30px;
 | 
					 | 
				
			||||||
      color: #000;
 | 
					 | 
				
			||||||
      font-weight: 500;
 | 
					 | 
				
			||||||
      margin-left: 31px;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    .qie {
 | 
					 | 
				
			||||||
      font-size: 28px;
 | 
					 | 
				
			||||||
      color: #95998f;
 | 
					 | 
				
			||||||
      margin-left: 208px;
 | 
					 | 
				
			||||||
      padding-right: 28px;
 | 
					 | 
				
			||||||
      border-right: #f6f6f6 solid 2px;
 | 
					 | 
				
			||||||
      height: 42px;
 | 
					 | 
				
			||||||
      line-height: 42px;
 | 
					 | 
				
			||||||
      display: flex;
 | 
					      display: flex;
 | 
				
			||||||
      align-items: center;
 | 
					      align-items: center;
 | 
				
			||||||
      .qiehuan {
 | 
					      .tiao {
 | 
				
			||||||
        width: 26px;
 | 
					        font-size: 30px;
 | 
				
			||||||
        height: 22px;
 | 
					        color: #000;
 | 
				
			||||||
        display: block;
 | 
					        font-weight: 500;
 | 
				
			||||||
        margin-right: 9px;
 | 
					        margin-left: 31px;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      .qie {
 | 
				
			||||||
 | 
					        font-size: 28px;
 | 
				
			||||||
 | 
					        color: #95998f;
 | 
				
			||||||
 | 
					        margin-left: 208px;
 | 
				
			||||||
 | 
					        padding-right: 28px;
 | 
				
			||||||
 | 
					        border-right: #f6f6f6 solid 2px;
 | 
				
			||||||
 | 
					        height: 42px;
 | 
				
			||||||
 | 
					        line-height: 42px;
 | 
				
			||||||
 | 
					        display: flex;
 | 
				
			||||||
 | 
					        align-items: center;
 | 
				
			||||||
 | 
					        .qiehuan {
 | 
				
			||||||
 | 
					          width: 26px;
 | 
				
			||||||
 | 
					          height: 22px;
 | 
				
			||||||
 | 
					          display: block;
 | 
				
			||||||
 | 
					          margin-right: 9px;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      .quit {
 | 
				
			||||||
 | 
					        width: 28px;
 | 
				
			||||||
 | 
					        height: 29px;
 | 
				
			||||||
 | 
					        font-size: 29px;
 | 
				
			||||||
 | 
					        margin-left: 34px;
 | 
				
			||||||
 | 
					        display: flex;
 | 
				
			||||||
 | 
					        > img {
 | 
				
			||||||
 | 
					          width: 33px;
 | 
				
			||||||
 | 
					          height: 33px;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					        // background-image: url("./assets/quit.png")
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    .quit {
 | 
					    .bodys {
 | 
				
			||||||
      width: 28px;
 | 
					      width: 100%;
 | 
				
			||||||
      height: 29px;
 | 
					      height: 100%;
 | 
				
			||||||
      font-size: 29px;
 | 
					      // background-color: #000;
 | 
				
			||||||
      margin-left: 34px;
 | 
					      overflow: hidden;
 | 
				
			||||||
 | 
					      overflow-y: auto;
 | 
				
			||||||
 | 
					      padding: 98px 0;
 | 
				
			||||||
 | 
					      box-sizing: border-box;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    .reply {
 | 
				
			||||||
 | 
					      width: 100%;
 | 
				
			||||||
 | 
					      height: 98px;
 | 
				
			||||||
 | 
					      position: absolute;
 | 
				
			||||||
 | 
					      bottom: 0;
 | 
				
			||||||
 | 
					      background-color: #fff;
 | 
				
			||||||
      display: flex;
 | 
					      display: flex;
 | 
				
			||||||
 | 
					      align-items: center;
 | 
				
			||||||
      > img {
 | 
					      > img {
 | 
				
			||||||
        width: 33px;
 | 
					        width: 33px;
 | 
				
			||||||
        height: 33px;
 | 
					        height: 33px;
 | 
				
			||||||
 | 
					        margin-left: 30px;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      > textarea {
 | 
				
			||||||
 | 
					        margin-left: 21px;
 | 
				
			||||||
 | 
					        border: none;
 | 
				
			||||||
 | 
					        font-size: 30px;
 | 
				
			||||||
 | 
					        height: 35px;
 | 
				
			||||||
 | 
					        width: 550px;
 | 
				
			||||||
 | 
					        // word-break: break-all;
 | 
				
			||||||
 | 
					        // text-align: center;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      > p {
 | 
				
			||||||
 | 
					        margin-left: 30px;
 | 
				
			||||||
 | 
					        font-size: 30px;
 | 
				
			||||||
 | 
					        color: #6b9147;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					      > div {
 | 
				
			||||||
 | 
					        position: absolute;
 | 
				
			||||||
 | 
					        bottom: 98px;
 | 
				
			||||||
 | 
					        background-color: #fff;
 | 
				
			||||||
 | 
					        width: 100%;
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
      // background-image: url("./assets/quit.png")
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  .bodys {
 | 
					  .line {
 | 
				
			||||||
 | 
					    height: 0.2rem;
 | 
				
			||||||
    width: 100%;
 | 
					    width: 100%;
 | 
				
			||||||
    height: 100%;
 | 
					    background-color: #f6f6f6;
 | 
				
			||||||
    // background-color: #000;
 | 
					  }
 | 
				
			||||||
    overflow: hidden;
 | 
					  .question {
 | 
				
			||||||
    overflow-y: auto;
 | 
					    height: auto;
 | 
				
			||||||
    padding: 98px 0;
 | 
					    width: 100%;
 | 
				
			||||||
 | 
					    color: #333333;
 | 
				
			||||||
 | 
					    font-size: 0.36rem;
 | 
				
			||||||
 | 
					    text-indent: 0.3rem;
 | 
				
			||||||
 | 
					    line-height: 0.5rem;
 | 
				
			||||||
 | 
					    padding: 0.25rem;
 | 
				
			||||||
    box-sizing: border-box;
 | 
					    box-sizing: border-box;
 | 
				
			||||||
 | 
					    font-weight: 500;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  .reply {
 | 
					  .title {
 | 
				
			||||||
    width: 100%;
 | 
					 | 
				
			||||||
    height: 98px;
 | 
					 | 
				
			||||||
    position: absolute;
 | 
					 | 
				
			||||||
    bottom: 0;
 | 
					 | 
				
			||||||
    background-color: #fff;
 | 
					 | 
				
			||||||
    display: flex;
 | 
					 | 
				
			||||||
    align-items: center;
 | 
					 | 
				
			||||||
    > img {
 | 
					 | 
				
			||||||
      width: 33px;
 | 
					 | 
				
			||||||
      height: 33px;
 | 
					 | 
				
			||||||
      margin-left: 30px;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    > textarea {
 | 
					 | 
				
			||||||
      margin-left: 21px;
 | 
					 | 
				
			||||||
      border: none;
 | 
					 | 
				
			||||||
      font-size: 30px;
 | 
					 | 
				
			||||||
      height: 35px;
 | 
					 | 
				
			||||||
      width: 550px;
 | 
					 | 
				
			||||||
      // word-break: break-all;
 | 
					 | 
				
			||||||
      // text-align: center;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    > p {
 | 
					 | 
				
			||||||
      margin-left: 30px;
 | 
					 | 
				
			||||||
      font-size: 30px;
 | 
					 | 
				
			||||||
      color: #6b9147;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    > div {
 | 
					 | 
				
			||||||
      position: absolute;
 | 
					 | 
				
			||||||
      bottom: 98px;
 | 
					 | 
				
			||||||
      background-color: #fff;
 | 
					 | 
				
			||||||
      width: 100%;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.line {
 | 
					 | 
				
			||||||
  height: 0.2rem;
 | 
					 | 
				
			||||||
  width: 100%;
 | 
					 | 
				
			||||||
  background-color: #f6f6f6;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.question {
 | 
					 | 
				
			||||||
  height: auto;
 | 
					 | 
				
			||||||
  width: 100%;
 | 
					 | 
				
			||||||
  color: #333333;
 | 
					 | 
				
			||||||
  font-size: 0.36rem;
 | 
					 | 
				
			||||||
  text-indent: 0.3rem;
 | 
					 | 
				
			||||||
  line-height: 0.5rem;
 | 
					 | 
				
			||||||
  padding: 0.25rem;
 | 
					 | 
				
			||||||
  box-sizing: border-box;
 | 
					 | 
				
			||||||
  font-weight: 500;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.title {
 | 
					 | 
				
			||||||
  color: #333333;
 | 
					 | 
				
			||||||
  font-size: 0.34rem;
 | 
					 | 
				
			||||||
  margin-top: 0.48rem;
 | 
					 | 
				
			||||||
  text-indent: 0.31rem;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.recommend {
 | 
					 | 
				
			||||||
  width: 6.9rem;
 | 
					 | 
				
			||||||
  margin-top: 0.13rem;
 | 
					 | 
				
			||||||
  margin: 0 auto;
 | 
					 | 
				
			||||||
  border-bottom: 0.01rem solid #95998f;
 | 
					 | 
				
			||||||
  display: flex;
 | 
					 | 
				
			||||||
  justify-content: space-between;
 | 
					 | 
				
			||||||
  .articlename {
 | 
					 | 
				
			||||||
    color: #333333;
 | 
					    color: #333333;
 | 
				
			||||||
    font-size: 0.3rem;
 | 
					    font-size: 0.34rem;
 | 
				
			||||||
    line-height: 0.4rem;
 | 
					    margin-top: 0.48rem;
 | 
				
			||||||
    width: 4.65rem;
 | 
					    text-indent: 0.31rem;
 | 
				
			||||||
    margin-top: 0.4rem;
 | 
					 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  .articlecontent {
 | 
					  .recommend {
 | 
				
			||||||
    color: #333333;
 | 
					    width: 6.9rem;
 | 
				
			||||||
    font-size: 0.26rem;
 | 
					    margin-top: 0.13rem;
 | 
				
			||||||
    margin-top: 0.15rem;
 | 
					 | 
				
			||||||
    margin-bottom: 0.14rem;
 | 
					 | 
				
			||||||
    width: 6.74rem;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  .author {
 | 
					 | 
				
			||||||
    color: #999999;
 | 
					 | 
				
			||||||
    font-size: 0.22rem;
 | 
					 | 
				
			||||||
    margin: 0 auto;
 | 
					    margin: 0 auto;
 | 
				
			||||||
    margin-top: 0.14rem;
 | 
					    border-bottom: 0.01rem solid #95998f;
 | 
				
			||||||
    margin-bottom: 0.35rem;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  .pic {
 | 
					 | 
				
			||||||
    width: 1.82rem;
 | 
					 | 
				
			||||||
    height: 1.2rem;
 | 
					 | 
				
			||||||
    margin: auto 0;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  .pics {
 | 
					 | 
				
			||||||
    display: flex;
 | 
					    display: flex;
 | 
				
			||||||
    justify-content: center;
 | 
					    justify-content: space-between;
 | 
				
			||||||
    margin-bottom: 0.31rem;
 | 
					    .articlename {
 | 
				
			||||||
    > img {
 | 
					      color: #333333;
 | 
				
			||||||
      width: 2.23rem;
 | 
					      font-size: 0.3rem;
 | 
				
			||||||
      height: 1.47rem;
 | 
					      line-height: 0.4rem;
 | 
				
			||||||
      margin-right: 0.1rem;
 | 
					      width: 4.65rem;
 | 
				
			||||||
 | 
					      margin-top: 0.4rem;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    .articlecontent {
 | 
				
			||||||
 | 
					      color: #333333;
 | 
				
			||||||
 | 
					      font-size: 0.26rem;
 | 
				
			||||||
 | 
					      margin-top: 0.15rem;
 | 
				
			||||||
 | 
					      margin-bottom: 0.14rem;
 | 
				
			||||||
 | 
					      width: 6.74rem;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    .author {
 | 
				
			||||||
 | 
					      color: #999999;
 | 
				
			||||||
 | 
					      font-size: 0.22rem;
 | 
				
			||||||
 | 
					      margin: 0 auto;
 | 
				
			||||||
 | 
					      margin-top: 0.14rem;
 | 
				
			||||||
 | 
					      margin-bottom: 0.35rem;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    .pic {
 | 
				
			||||||
 | 
					      width: 1.82rem;
 | 
				
			||||||
 | 
					      height: 1.2rem;
 | 
				
			||||||
 | 
					      margin: auto 0;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    .pics {
 | 
				
			||||||
 | 
					      display: flex;
 | 
				
			||||||
 | 
					      justify-content: center;
 | 
				
			||||||
 | 
					      margin-bottom: 0.31rem;
 | 
				
			||||||
 | 
					      > img {
 | 
				
			||||||
 | 
					        width: 2.23rem;
 | 
				
			||||||
 | 
					        height: 1.47rem;
 | 
				
			||||||
 | 
					        margin-right: 0.1rem;
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
</style>
 | 
					</style>
 | 
				
			||||||
@ -196,7 +196,9 @@ export default {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  mounted(){
 | 
					  mounted(){
 | 
				
			||||||
    
 | 
					    if(localStorage.getItem('token') == ""){
 | 
				
			||||||
 | 
					      this.$router.push("/login")
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
    this.axios.post('http://lawpro.earnest.pro/api/login_main/getUserDetails',{
 | 
					    this.axios.post('http://lawpro.earnest.pro/api/login_main/getUserDetails',{
 | 
				
			||||||
      token:localStorage.getItem("token")
 | 
					      token:localStorage.getItem("token")
 | 
				
			||||||
    }).then((res)=>{
 | 
					    }).then((res)=>{
 | 
				
			||||||
 | 
				
			|||||||
@ -57,7 +57,7 @@
 | 
				
			|||||||
  .logo {
 | 
					  .logo {
 | 
				
			||||||
    width: 115px;
 | 
					    width: 115px;
 | 
				
			||||||
    height: 37px;
 | 
					    height: 37px;
 | 
				
			||||||
    background-color: #000;
 | 
					    // background-color: #000;
 | 
				
			||||||
    display: block;
 | 
					    display: block;
 | 
				
			||||||
    margin-left: 30px;
 | 
					    margin-left: 30px;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
				
			|||||||
@ -12,7 +12,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    <div class="tel yzm">
 | 
					    <div class="tel yzm">
 | 
				
			||||||
      <input type="text" class="shuru tel1" placeholder="输入6位验证码" v-model="yzm" />
 | 
					      <input type="text" class="shuru tel1" placeholder="输入6位验证码" v-model="yzm" />
 | 
				
			||||||
      <button class="getyzm" @click="yz">发送验证码</button>
 | 
					      <button class="getyzm" @click="yz">{{yzs}}</button>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
    <div class="ale">
 | 
					    <div class="ale">
 | 
				
			||||||
      <p class="alert">未注册手机验证后自动登录</p>
 | 
					      <p class="alert">未注册手机验证后自动登录</p>
 | 
				
			||||||
@ -37,8 +37,8 @@
 | 
				
			|||||||
        <div>
 | 
					        <div>
 | 
				
			||||||
          <!-- <a
 | 
					          <!-- <a
 | 
				
			||||||
            href="https://open.weixin.qq.com/connect/qrconnect?appid=wxfe6e5d36322af62f&redirect_uri=http%3a%2f%2fwww.lawpro.cn%2f&response_type=code&scope=snsapi_login&state=lawpro#wechat_redirect"
 | 
					            href="https://open.weixin.qq.com/connect/qrconnect?appid=wxfe6e5d36322af62f&redirect_uri=http%3a%2f%2fwww.lawpro.cn%2f&response_type=code&scope=snsapi_login&state=lawpro#wechat_redirect"
 | 
				
			||||||
          > -->
 | 
					          >-->
 | 
				
			||||||
                <a
 | 
					          <a
 | 
				
			||||||
            href="https://open.weixin.qq.com/connect/qrconnect?appid=wxfe6e5d36322af62f&redirect_uri=http%3a%2f%2fwww.lawpro.cn%2f&response_type=code&scope=snsapi_login&state=lawpro#wechat_redirect"
 | 
					            href="https://open.weixin.qq.com/connect/qrconnect?appid=wxfe6e5d36322af62f&redirect_uri=http%3a%2f%2fwww.lawpro.cn%2f&response_type=code&scope=snsapi_login&state=lawpro#wechat_redirect"
 | 
				
			||||||
          >
 | 
					          >
 | 
				
			||||||
            <!-- <i class="icon-wechatl"></i>微信 -->
 | 
					            <!-- <i class="icon-wechatl"></i>微信 -->
 | 
				
			||||||
@ -69,7 +69,9 @@ export default {
 | 
				
			|||||||
      yzm: "",
 | 
					      yzm: "",
 | 
				
			||||||
      yztoken: "",
 | 
					      yztoken: "",
 | 
				
			||||||
      Verification: "",
 | 
					      Verification: "",
 | 
				
			||||||
      ifsign: false
 | 
					      ifsign: false,
 | 
				
			||||||
 | 
					      yzs: "获取验证码",
 | 
				
			||||||
 | 
					      miao: 60
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  methods: {
 | 
					  methods: {
 | 
				
			||||||
@ -86,7 +88,22 @@ export default {
 | 
				
			|||||||
    },
 | 
					    },
 | 
				
			||||||
    yz() {
 | 
					    yz() {
 | 
				
			||||||
      let yz = "";
 | 
					      let yz = "";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      if (this.tel != "") {
 | 
					      if (this.tel != "") {
 | 
				
			||||||
 | 
					        if (this.yzs != "获取验证码") {
 | 
				
			||||||
 | 
					          return;
 | 
				
			||||||
 | 
					        } else {
 | 
				
			||||||
 | 
					          let t = this;
 | 
				
			||||||
 | 
					          let a = setInterval(() => {
 | 
				
			||||||
 | 
					            t.yzs = t.miao + "秒";
 | 
				
			||||||
 | 
					            t.miao = t.miao - 1;
 | 
				
			||||||
 | 
					            if (t.miao < 0) {
 | 
				
			||||||
 | 
					              t.miao = 5;
 | 
				
			||||||
 | 
					              t.yzs = "获取验证码";
 | 
				
			||||||
 | 
					              clearInterval(a);
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					          }, 1000);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
        window.console.log("aaaa");
 | 
					        window.console.log("aaaa");
 | 
				
			||||||
        var t = this;
 | 
					        var t = this;
 | 
				
			||||||
        this.axios
 | 
					        this.axios
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user