forked from bailichen/vue-weixin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bailichen#2 from bailichen/master
sdasd
- Loading branch information
Showing
35 changed files
with
535 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
<template> | ||
<section class="child_page"> | ||
<head-top crossover="聊天信息"></head-top> | ||
<section class="groupchat"> | ||
<ul class="groupchat_ul clear"> | ||
<li> | ||
<img src="../../../images/a.jpg" alt=""> | ||
<span class="ellipsis">百里辰</span> | ||
</li> | ||
</ul> | ||
</section> | ||
<section class="chat"> | ||
<ul> | ||
<li> | ||
<div>使用听筒播放语音</div> | ||
<div class="push-button"> | ||
<input class='tgl tgl-light' id='new' type='checkbox'> | ||
<label class='tgl-btn' for='new'></label> | ||
</div> | ||
</li> | ||
<li> | ||
<div>回车键发送信息</div> | ||
<div class="push-button"> | ||
<input class='tgl tgl-light' id='video' type='checkbox' checked="checked"> | ||
<label class='tgl-btn' for='video'></label> | ||
</div> | ||
</li> | ||
<li> | ||
<div>聊天背景</div> | ||
</li> | ||
<li> | ||
<div>表情管理</div> | ||
</li> | ||
</ul> | ||
<h1 class="chatrecord">聊天记录</h1> | ||
<ul> | ||
<li> | ||
<div>聊天记录迁移</div> | ||
</li> | ||
<li> | ||
<div>清空聊天记录</div> | ||
</li> | ||
</ul> | ||
</section> | ||
<transition name="router-show"> | ||
<router-view></router-view> | ||
</transition> | ||
</section> | ||
</template> | ||
|
||
<script> | ||
import headTop from 'src/components/header/head' | ||
export default{ | ||
data(){ | ||
return{ | ||
} | ||
}, | ||
created(){ | ||
}, | ||
mounted(){ | ||
}, | ||
components:{ | ||
headTop, | ||
}, | ||
computed:{ | ||
}, | ||
methods:{ | ||
} | ||
} | ||
</script> | ||
<style lang="scss" scoped> | ||
@import "src/style/public"; | ||
.router-show-enter-active,.router-show-leave-active{ | ||
transition: all .4s; | ||
} | ||
.router-show-enter,.router-show-leave{ | ||
transform:translateX(100%) | ||
} | ||
.child_page{ | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
z-index: 203; | ||
background-color: #ebebeb; | ||
} | ||
.groupchat{ | ||
padding-top: 2.9rem; | ||
background:#fff; | ||
padding:2.9rem 0.8533333333rem 0; | ||
ul{ | ||
box-sizing:border-box; | ||
li{ | ||
float:left; | ||
margin-right:0.8533333333rem; | ||
margin-bottom:0.4266666667rem; | ||
width:2.048rem; | ||
img{ | ||
display:block; | ||
width:2.048rem; | ||
width:2.048rem; | ||
} | ||
span{ | ||
display:block; | ||
width:2.048rem; | ||
font-size:0.5333333333rem; | ||
color:#666; | ||
text-align:center; | ||
margin-top:10px; | ||
} | ||
} | ||
li:nth-of-type(5n+5){ | ||
margin-right:0; | ||
} | ||
} | ||
} | ||
.chat{ | ||
margin-top:0.8533333333rem; | ||
.chatrecord{ | ||
padding-left:0.64rem; | ||
padding-bottom:0.2133333333rem; | ||
@include sizeColor(0.6rem,#888); | ||
} | ||
ul{ | ||
background:#fff; | ||
padding:0 0.64rem; | ||
margin-bottom:1rem; | ||
li{ | ||
border-bottom:1px solid #f1f1f1; | ||
padding:0.4266666667rem 0; | ||
@include sizeColor(0.64rem,#333); | ||
@include justify; | ||
align-items:center; | ||
.push-button{ | ||
} | ||
.voice-music{ | ||
@include sizeColor(0.512rem,#9c9c9c); | ||
} | ||
} | ||
li:last-child{ | ||
border:0; | ||
} | ||
} | ||
.newshow{ | ||
li{ | ||
display: inherit; | ||
.newshow_choose{ | ||
@include justify; | ||
align-items:center; | ||
} | ||
.newshow_text{ | ||
@include sizeColor(0.5546666667rem,#909090); | ||
margin-top:0.2133333333rem; | ||
} | ||
} | ||
} | ||
} | ||
</style> |
Oops, something went wrong.