小程序(三)

七亿傅、自定義組件2

1. mixin

//導(dǎo)出一個(gè)混入對(duì)象exportdefaultBehavior({//組件公共的數(shù)據(jù)data:{name:"我是一個(gè)自定義組件..."},//組件公共的方法methods:{sayHi(){console.log('hi...');}}})

2. tabBox組件

<viewclass="tab_box"><!-- 組件中的slot標(biāo)簽,用于定義插槽。使用組件時(shí)英岭,兩個(gè)組件標(biāo)簽中間的內(nèi)容都會(huì)放到插槽中 --><slot></slot><viewclass="flex"><viewclass="tab {{active===index?'active':''}}"wx:key="index"wx:for="{{data}}"bindtap="click"data-i="{{index}}">{{item.title}}</view></view><viewclass="list"><viewclass="item {{active===index?'show':''}}"wx:key="index"wx:for="{{data}}">{{item.content}}</view></view></view>

@import'../../app.wxss';.tab_box{margin:10rpx;padding:10rpx;border:1pxsolid#eeeeee}.tab{padding:10rpx20rpx;border:1pxsolid#eeeeee;margin:02px;}.tab.active{background:orangered;color:#ffffff;}.list{border:1pxsolid#eeeeee;margin-top:10rpx;padding:10rpx;}.item{display:none;}.item.show{display:block;}

//導(dǎo)入混入對(duì)象importmixinfrom'../mixin'Component({//behaviors檩禾,用于給當(dāng)前組件混入公共的內(nèi)容behaviors:[mixin],//組件的生命周期lifetimes:{attached:function(){// 在組件實(shí)例進(jìn)入頁(yè)面節(jié)點(diǎn)樹時(shí)執(zhí)行console.log('加載該組件...');console.log(this.data.version);console.log(this.data.name);this.sayHi()},detached:function(){// 在組件實(shí)例被從頁(yè)面節(jié)點(diǎn)樹移除時(shí)執(zhí)行console.log('移除該組件...');},},

//監(jiān)聽器:可以監(jiān)聽組件中的數(shù)據(jù)是否發(fā)生變化observers:{//這里根據(jù)數(shù)據(jù)的名稱适袜,定義同名的方法堪侯,用于監(jiān)聽該數(shù)據(jù)是否發(fā)生變化//該方法的參數(shù)埃碱,返回的是數(shù)據(jù)的最新值//當(dāng)前數(shù)據(jù)的值發(fā)生變化時(shí)猖辫,需要做些什么的時(shí)候,通常會(huì)使用監(jiān)聽器乃正。active(val){console.log(val);}},/**

? * 組件的屬性列表

? */properties:{data:{type:Array},active:{type:Number,value:0}},/**

? * 組件的初始數(shù)據(jù)

? */data:{version:'1.0'},/**

? * 組件的方法列表

? */methods:{click(e){let{i}=wx.$key(e)this.setData({active:i})//組件內(nèi)部觸發(fā)事件this.triggerEvent("change",i)},}})

3. table組件

<viewclass="table"><viewclass="header"><viewclass="item"wx:key="index"wx:for="{{column}}">{{item.title}}</view></view><viewclass="content"wx:key="index"wx:for="{{data}}"><viewclass="item"wx:key="index1"wx:for="{{column}}"wx:for-index="index1"wx:for-item="item1">{{item[item1.key]}}</view></view></view>

.table{margin:10rpx0;}.header,.content{display:flex;}.header.item,.content.item{padding:2px0;flex:1;text-align:center;border:1pxsolid#eeeeee;}

/**

? * 組件的屬性列表

? */properties:{//表格的列信息column:{type:Array},//表格的數(shù)據(jù)信息data:{type:Array}},

4. 頁(yè)面中使用

"usingComponents":{"tabBox":"../../components/tabBox/tabBox","table":"../../components/table/table"},

{{country_active}}--{{goods_active}}<tabBoxdata-key="country_active"data="{{country_data}}"active="{{country_active}}"bind:change="$syncData"><viewstyle="text-align:center;color:red;padding:5rpx0">國(guó)家信息</view></tabBox><tabBoxdata-key="goods_active"data="{{goods_data}}"active="{{goods_active}}"bind:change="$syncData"><buttonstyle="width:200rpx">商品信息</button></tabBox><tablecolumn="{{table_column}}"data="{{table_data}}"></table><tablecolumn="{{column2}}"data="{{table2}}"></table>

/**

? ? * 頁(yè)面的初始數(shù)據(jù)

? ? */data:{//ajax請(qǐng)求住册,獲取一份數(shù)據(jù)country_data:[{title:"中國(guó)",content:"中國(guó)的乒乓球很厲害"},{title:"美國(guó)",content:"中國(guó)的籃球很厲害"},{title:"日本",content:"中國(guó)的動(dòng)漫很厲害"}],country_active:0,goods_data:[{title:"薯?xiàng)l",content:"薯?xiàng)l屬于油炸食品,長(zhǎng)期食用瓮具,可能會(huì)引發(fā)疾病"},{title:"餅干",content:"餅干很脆"},{title:"吐司",content:"吐司其實(shí)就是一種面包"}],

goods_active:1,//定義表格的列數(shù)據(jù)table_column:[{title:"學(xué)號(hào)",key:"no"},{title:"姓名",key:"name"},{title:"年齡",key:"age"},{title:"性別",key:"gender"}],//定義表單的數(shù)據(jù)table_data:[{no:"1001",name:"王俊凱",age:"22",gender:"男"},{no:"1002",name:"易烊千璽",age:"21",gender:"男",},{no:"1003",name:"王源",age:"22",gender:"男",}],column2:[{title:"城市",key:"city",},{title:"地址",key:"address"}],table2:[{city:"北京",address:"長(zhǎng)安街108號(hào)"},{city:"上海",address:"南京路108號(hào)"}]}

八荧飞、ECharts

1. 引入ECharts

第一步:下載ecomfe/echarts-for-weixin 項(xiàng)目

第二步:拷貝 ec-canvas 目錄

第三步:

"usingComponents":{"ec-canvas":"../../components/ec-canvas/ec-canvas"}

2. 在頁(yè)面中使用ECharts

<viewclass="container"><ec-canvasid="mychart-dom-line"canvas-id="mychart-line"ec="{{ ec }}"></ec-canvas></view>

.container{width:95vw;height:400rpx;border:1pxsolidred;margin:2pxauto;}ec-canvas{width:100%;height:100%;}

//導(dǎo)入echarts對(duì)象import*asechartsfrom'../../components/ec-canvas/echarts';//初始化echarts的方法functioninitChart(canvas,width,height,devicePixelRatio){//初始化echarts對(duì)象constchart=echarts.init(canvas,null,{width,height,devicePixelRatio});//在畫布中設(shè)置echarts對(duì)象canvas.setChart(chart);//ajax請(qǐng)求,獲取一份數(shù)據(jù)letdata=[{year:'2015',cost:200,sale:400,},{year:'2016',cost:300,sale:500,},{year:'2017',cost:500,sale:400,},{year:'2018',cost:300,sale:400,},{year:'2019',cost:600,sale:700,},{year:'2020',cost:500,sale:400,}]//定義echarts的選項(xiàng)varoption={//標(biāo)題/* title: {

? ? ? //標(biāo)題文本

? ? ? text: '我的echarts圖表',

? ? ? //副標(biāo)題

? ? ? subtext:'2021-2-2',

? ? ? //對(duì)齊方式

? ? ? left: 'center'

? ? }, *///顏色列表color:["#c04851","#2486b9","#10aec2","#5dbe8a"],// 圖例組件/*? legend: {

? ? ? data: ['A', 'B', 'C'],

? ? ? top: 50,

? ? ? left: 'center',

? ? ? backgroundColor: 'red',

? ? ? z: 100

? ? }, */// 設(shè)置邊距grid:{top:10,left:10,right:20,bottom:10,//是否包含LabelcontainLabel:true},//提示框tooltip:{show:true,trigger:'axis',//格式化提示框formatter:function(val){letstr="? ? "+val[0].name+" 年";val.forEach(({seriesName,value,seriesIndex})=>{str+=`\n{marker${seriesIndex}at0|} `+seriesName+":"+value+" 萬元";})returnstr}},//X軸xAxis:{type:'category',boundaryGap:false,//X軸的數(shù)據(jù)// data: ['2015','2016','2017','2018','2019','2020'],data:data.map(r=>r.year)// show: false},//y軸yAxis:{x:'center',type:'value',//分隔線splitLine:{//分隔線類型lineStyle:{type:'dashed'//虛線}}// show: false},//系列series:[{name:'成本',//類型:line名党,bar叹阔,pietype:'line',// 設(shè)置面積折線圖樣式// areaStyle:{},//潤(rùn)滑曲線smooth:true,//系列數(shù)據(jù)// data: [18, 36, 65, 30, 78, 40, 33]data:data.map(r=>r.cost)},{name:'銷售',type:'line',smooth:true,// areaStyle:{},// data: [12, 50, 51, 35, 70, 30, 20]data:data.map(r=>r.sale)}]};//設(shè)置echarts的選項(xiàng)chart.setOption(option);//返回echarts對(duì)象returnchart;}Page({/**

? * 頁(yè)面的初始數(shù)據(jù)

? */data:{//定義頁(yè)面中渲染的數(shù)據(jù)ec:{onInit:initChart}},/**

? * 生命周期函數(shù)--監(jiān)聽頁(yè)面加載

? */onLoad:function(options){},})

3. ECharts配合選擇器

<van-fieldvalue="{{ value }}"placeholder="請(qǐng)選擇城市"border="{{ true }}"bindtap="showPopup"readonly/><viewclass="container"><ec-canvasid="mychart-dom-line"canvas-id="mychart-line"ec="{{ ec }}"></ec-canvas></view><van-popupshow="{{ show }}"bind:close="onClose"position="bottom"><van-pickershow-toolbartitle="請(qǐng)選擇城市"columns="{{ columns }}"bind:cancel="onClose"bind:confirm="onConfirm"/></van-popup>

//導(dǎo)入echarts對(duì)象import*asechartsfrom'../../components/ec-canvas/echarts';//定義echarts對(duì)象letchart=nullPage({//選擇器確定按鈕點(diǎn)擊方法onConfirm(event){const{value}=event.detail;this.setData({value,show:false})//調(diào)用設(shè)置echarts選項(xiàng)的方法this.setChartOptions(value)},//顯示彈出層showPopup(){this.setData({show:true});},//關(guān)閉彈出層onClose(){this.setData({show:false});},/** * 頁(yè)面的初始數(shù)據(jù)

? */data:{//獲取的城市名稱value:'北京',//選擇器顯示的數(shù)據(jù)columns:['北京','上海','深圳','廣州','成都','重慶','南京','杭州'],//設(shè)置彈出層是否顯示show:false,//定義頁(yè)面中渲染的數(shù)據(jù)ec:null},/**

? * 生命周期函數(shù)--監(jiān)聽頁(yè)面加載

? */onLoad:function(options){this.setData({//頁(yè)面加載時(shí),給ec賦值ec:{//初始化echarts的方法onInit:(canvas,width,height,devicePixelRatio)=>{//初始化echarts對(duì)象chart=echarts.init(canvas,null,{width,height,devicePixelRatio});//在畫布中設(shè)置echarts對(duì)象canvas.setChart(chart);//調(diào)用設(shè)置echarts選項(xiàng)的方法this.setChartOptions('默認(rèn)城市')//返回echarts對(duì)象returnchart;}}})},//設(shè)置echarts選項(xiàng)的方法setChartOptions(val){//根據(jù)val的值传睹,發(fā)送ajax請(qǐng)求耳幢,獲取對(duì)應(yīng)的數(shù)據(jù)letdata=[{year:'2015',cost:Math.random()*200,sale:Math.random()*400,},{year:'2016',cost:Math.random()*300,sale:Math.random()*500,},{year:'2017',cost:Math.random()*500,sale:Math.random()*400,},{year:'2018',cost:Math.random()*300,sale:Math.random()*400,},{year:'2019',cost:Math.random()*600,sale:Math.random()*700,},{year:'2020',cost:Math.random()*500,sale:Math.random()*400,}]//定義echarts的選項(xiàng)varoption={//顏色列表color:["#c04851","#2486b9","#10aec2","#5dbe8a"],// 設(shè)置邊距grid:{top:10,left:10,right:20,bottom:10,//是否包含LabelcontainLabel:true},//提示框tooltip:{show:true,trigger:'axis',//格式化提示框formatter:function(val){letstr="? ? "+val[0].name+" 年";val.forEach(({seriesName,value,seriesIndex})=>{str+=`\n{marker${seriesIndex}at0|} `+seriesName+":"+value+" 萬元";})returnstr}},//X軸xAxis:{type:'category',boundaryGap:false,//X軸的數(shù)據(jù)data:data.map(r=>r.year)},//y軸yAxis:{x:'center',type:'value',//分隔線splitLine:{//分隔線類型lineStyle:{type:'dashed'//虛線}}// show: false},//系列series:[{name:'成本',type:'line',//潤(rùn)滑曲線smooth:true,//系列數(shù)據(jù)data:data.map(r=>r.cost)},{name:'銷售',type:'line',smooth:true,data:data.map(r=>r.sale)}]};//設(shè)置echarts的選項(xiàng)chart.setOption(option);}})

九、位置API

1. 頁(yè)面

<van-fieldtitle-width="80rpx"model:value="{{ address }}"centerclearablelabel="位置"placeholder="請(qǐng)輸入位置"border="{{ true }}"type="textarea"autosize><van-buttonwx:if="{{show}}"bindtap="choose"icon="location-o"slot="button"size="small"type="primary"></van-button><van-buttonwx:elsebindtap="choose1"icon="location-o"slot="button"size="small"type="primary"></van-button></van-field><van-fieldtitle-width="80rpx"model:value="{{ address2 }}"centerclearablelabel="位置"placeholder="請(qǐng)輸入位置"border="{{ true }}"type="textarea"autosize><van-buttonbindtap="choose2"icon="location-o"slot="button"size="small"type="primary"></van-button></van-field>

2. 后臺(tái)

//選擇方法choose(){//獲取當(dāng)前位置/* wx.getLocation({

? ? ? success:({latitude,longitude})=>{

? ? ? ? console.log(latitude,longitude);

? ? ? }

? ? }) *///選擇位置wx.chooseLocation({//成功后的回調(diào)success:({address,name})=>{this.setData({address:address+' '+name})},//失敗后的回調(diào)fail:({errMsg})=>{if(errMsg==="chooseLocation:fail auth deny"){this.setData({show:false})}// wx.$msg('通過右上角設(shè)置權(quán)限',2000,'none')}})},//該方法欧啤,用于打開設(shè)置界面choose1(){//打開設(shè)置界面wx.openSetting({success:({authSetting})=>{//判斷是否勾選了獲取用戶位置權(quán)限if(authSetting['scope.userLocation']){this.setData({show:true})//直接調(diào)用選擇位置方法this.choose()}}})},choose2(){//獲取用戶的當(dāng)前設(shè)置wx.getSetting({//返回權(quán)限設(shè)置success:({authSetting})=>{//判斷用戶睛藻,如果拒絕過獲取位置權(quán)限,打開設(shè)置界面if(authSetting['scope.userLocation']===false){//打開設(shè)置界面wx.openSetting({success:({authSetting})=>{//判斷用戶邢隧,如果勾選了獲取位置權(quán)限店印,打開選擇位置界面if(authSetting['scope.userLocation']===true){//打開選擇位置界面wx.chooseLocation({//成功后的回調(diào)success:({address,name})=>{this.setData({address2:address+' '+name})},})}}})}else{//authSetting['scope.userLocation'] 返回 undefined 或 true 時(shí)執(zhí)行 else//打開選擇位置界面wx.chooseLocation({//成功后的回調(diào)success:({address,name})=>{this.setData({address2:address+' '+name})},})}}})},asyncchoose2(){letres=awaitwx.$chooseLocationWithSetting();this.setData({address2:res})},

3. location.js

//選擇位置的方法exportlet$chooseLocation=()=>{returnnewPromise((resolve,reject)=>{//打開選擇位置界面wx.chooseLocation({//成功后的回調(diào)success:({address,name})=>{resolve(address+' '+name)},})})}

//打開設(shè)置的方法exportlet$openSetting=()=>{returnnewPromise((resolve,reject)=>{//打開設(shè)置界面wx.openSetting({success:async({authSetting})=>{//判斷用戶,如果勾選了獲取位置權(quán)限倒慧,打開選擇位置界面if(authSetting['scope.userLocation']===true){resolve()}}})})}//通過設(shè)置選擇位置的方法exportlet$chooseLocationWithSetting=()=>{returnnewPromise((resolve,reject)=>{//獲取用戶的當(dāng)前設(shè)置wx.getSetting({//返回權(quán)限設(shè)置success:async({authSetting})=>{//判斷用戶按摘,如果拒絕過獲取位置權(quán)限,打開設(shè)置界面if(authSetting['scope.userLocation']===false){//先打開設(shè)置await$openSetting()//再獲取位置信息letres=await$chooseLocation()resolve(res)}else{//獲取位置信息letres=await$chooseLocation()resolve(res)}}})})}//將位置相關(guān)的方法纫谅,注冊(cè)給微信對(duì)象wx.$chooseLocation=$chooseLocationwx.$openSetting=$openSettingwx.$chooseLocationWithSetting=$chooseLocationWithSetting

十炫贤、購(gòu)物車案例

1. 頁(yè)面

<viewclass="container"><viewclass="item flex j-s a-c"wx:for="{{goodslist}}"wx:key="index"><view><icondata-id="{{item.id}}"bindtap="check"class="ck iconfont {{item.ischecked?'iconfuxuankuang_xuanzhong1':'iconfuxuankuang_xuanzhong'}}"></icon></view><view><imageclass="img"src="{{item.img}}"/></view><viewclass="content"><viewclass="title">{{item.name}}</view><viewclass="price">¥{{item.price}}</view></view><counterdata-id="{{item.id}}"bind:change="change"count="{{item.count}}"></counter></view></view><viewclass="total flex j-s"><view><iconbindtap="checkAll"class="ck iconfont {{isCheckAll?'iconfuxuankuang_xuanzhong1':'iconfuxuankuang_xuanzhong'}}"></icon></view><viewclass="price">總計(jì):¥{{total}}</view></view>

2. 樣式

@import'../../assets/iconfont/iconfont.wxss';page{background:#eeeeee;}.container{padding:010rpx;margin-bottom:100rpx;}.item{width:98%;margin:10rpxauto;background:#ffffff;padding:10rpx20rpx;box-sizing:border-box;}.ck{font-size:40rpx;color:#248067;}.img{width:200rpx;height:200rpx;margin:010rpx;}.content{flex:1;}.contentview{margin:10rpx;}.title{color:#248067;font-weight:bold;}.price{color:#f1939c}.total{width:100%;padding:20rpx40rpx;box-sizing:border-box;position:fixed;left:0;right:0;bottom:0;background:#ffffff;}

3. 后臺(tái)

//導(dǎo)入Mock對(duì)象importMockfrom'mockjs'//直接使用Mock對(duì)象隨機(jī)生成一份數(shù)據(jù)letmockData=Mock.mock({'goodslist|4-10':[{'id|+1':1001,name:'@ctitle(2,4)',img:'@image(100x100)',price:'@float(10,100,2,2)',count:'@natural(1,10)',ischecked:false}]})//單獨(dú)使用Mock隨機(jī)返回一個(gè)數(shù)據(jù)// console.log(Mock.Random.cname(2,4));//使用Mock對(duì)象攔截ajax請(qǐng)求,隨機(jī)返回一份數(shù)據(jù)Mock.mock('http://baidu.com','get',function(){returnMock.mock({'goodslist|4-10':[{'id|+1':1001,name:'@ctitle(2,4)',img:'@image(100x100)',price:'@natural(10,100)',count:'@natural(1,10)',ischecked:false}]})})Page({//計(jì)算總價(jià)的方法totalPrice(){lettotal=0//循環(huán)商品數(shù)組付秕,累加消費(fèi)總金額this.data.goodslist.filter(r=>r.ischecked).forEach(r=>{total+=r.price*r.count})//重新渲染頁(yè)面this.setData({total:total.toFixed(2)})},//數(shù)量加減后調(diào)用的方法change(e){//獲取對(duì)應(yīng)商品的編號(hào)let{id}=wx.$key(e)//獲取最新的數(shù)量letcount=e.detail//將最新的數(shù)量更新給對(duì)應(yīng)的商品this.data.goodslist.find(r=>r.id===id).count=count;//調(diào)用計(jì)算總價(jià)的方法this.totalPrice()},//全選復(fù)選框選擇方法checkAll(){//更新isCheckAll的狀態(tài)this.data.isCheckAll=!this.data.isCheckAll//循環(huán)商品數(shù)組兰珍,更新所有商品的狀態(tài)this.data.goodslist.forEach(r=>r.ischecked=this.data.isCheckAll)//重新渲染頁(yè)面this.setData({isCheckAll:this.data.isCheckAll,goodslist:this.data.goodslist})//調(diào)用計(jì)算總價(jià)的方法this.totalPrice()},//復(fù)選框選擇方法check(e){//獲取到idlet{id}=wx.$key(e)//根據(jù)id獲取對(duì)應(yīng)的商品letgoods=this.data.goodslist.find(r=>r.id===id)//商品的選中狀態(tài)取反goods.ischecked=!goods.ischecked//每次判斷,所有商品是否全部選中this.data.isCheckAll=this.data.goodslist.every(r=>r.ischecked)//重新渲染頁(yè)面this.setData({goodslist:this.data.goodslist,isCheckAll:this.data.isCheckAll})//調(diào)用計(jì)算總價(jià)的方法this.totalPrice()},/**

? * 頁(yè)面的初始數(shù)據(jù)

? */data:{//是否全選isCheckAll:false,//總價(jià)total:(0).toFixed(2),//商品數(shù)組goodslist:[]/* goodslist:[{

? ? ? id:1001,

? ? ? name:'可比克',

? ? ? img:'https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=331839707,1109674904&fm=26&gp=0.jpg',

? ? ? price:9,

? ? ? count:5,

? ? ? ischecked:false

? ? },{

? ? ? id:1002,

? ? ? name:'樂事',

? ? ? img:'https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=681102179,4036489030&fm=26&gp=0.jpg',

? ? ? price:8,

? ? ? count:3,

? ? ? ischecked:false

? ? },{

? ? ? id:1003,

? ? ? name:'奧利奧',

? ? ? img:'https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=4180506903,453032051&fm=26&gp=0.jpg',

? ? ? price:6,

? ? ? count:8,

? ? ? ischecked:false

? ? },{

? ? ? id:1004,

? ? ? name:'奶茶',

? ? ? img:'https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=4015669984,136058038&fm=26&gp=0.jpg',

? ? ? price:20,

? ? ? count:2,

? ? ? ischecked:false

? ? }] */},/**

? * 生命周期函數(shù)--監(jiān)聽頁(yè)面加載

? */onLoad:function(options){this.setData({goodslist:mockData.goodslist})},})

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末盹牧,一起剝皮案震驚了整個(gè)濱河市俩垃,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌汰寓,老刑警劉巖口柳,帶你破解...
    沈念sama閱讀 217,509評(píng)論 6 504
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異有滑,居然都是意外死亡跃闹,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,806評(píng)論 3 394
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來望艺,“玉大人苛秕,你說我怎么就攤上這事≌夷” “怎么了艇劫?”我有些...
    開封第一講書人閱讀 163,875評(píng)論 0 354
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)惩激。 經(jīng)常有香客問我店煞,道長(zhǎng),這世上最難降的妖魔是什么风钻? 我笑而不...
    開封第一講書人閱讀 58,441評(píng)論 1 293
  • 正文 為了忘掉前任顷蟀,我火速辦了婚禮,結(jié)果婚禮上骡技,老公的妹妹穿的比我還像新娘鸣个。我一直安慰自己,他們只是感情好布朦,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,488評(píng)論 6 392
  • 文/花漫 我一把揭開白布囤萤。 她就那樣靜靜地躺著,像睡著了一般是趴。 火紅的嫁衣襯著肌膚如雪阁将。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,365評(píng)論 1 302
  • 那天右遭,我揣著相機(jī)與錄音,去河邊找鬼缤削。 笑死窘哈,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的亭敢。 我是一名探鬼主播滚婉,決...
    沈念sama閱讀 40,190評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼帅刀!你這毒婦竟也來了让腹?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 39,062評(píng)論 0 276
  • 序言:老撾萬榮一對(duì)情侶失蹤扣溺,失蹤者是張志新(化名)和其女友劉穎骇窍,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體锥余,經(jīng)...
    沈念sama閱讀 45,500評(píng)論 1 314
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡腹纳,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,706評(píng)論 3 335
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片嘲恍。...
    茶點(diǎn)故事閱讀 39,834評(píng)論 1 347
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡足画,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出佃牛,到底是詐尸還是另有隱情淹辞,我是刑警寧澤,帶...
    沈念sama閱讀 35,559評(píng)論 5 345
  • 正文 年R本政府宣布俘侠,位于F島的核電站象缀,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏兼贡。R本人自食惡果不足惜攻冷,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,167評(píng)論 3 328
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望遍希。 院中可真熱鬧等曼,春花似錦、人聲如沸凿蒜。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,779評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)废封。三九已至州泊,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間漂洋,已是汗流浹背遥皂。 一陣腳步聲響...
    開封第一講書人閱讀 32,912評(píng)論 1 269
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留刽漂,地道東北人演训。 一個(gè)月前我還...
    沈念sama閱讀 47,958評(píng)論 2 370
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像贝咙,于是被迫代替她去往敵國(guó)和親样悟。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,779評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容