工作

<template>
<div>
<tab :tabList="tabList" :tabIndex="tabIndex" class="tab" @tabClick="toggleNav"></tab>
<div class="content">

<div class="system_node" :style="{ height: maxHeight }">
<Spin size="large" fix v-if="!treeData"></Spin>
<div class="wrap">
<div class="search flex">
<Input search placeholder="请输入分类名称或分类号" v-model="treeVal" @on-search="searchTreeData"></Input>

</div>
<div class="tree" v-if="treeData">
<Tree :data="treeData" :show-checkbox="false" :render="renderContent" @on-select-change="treeChange"></Tree>
</div>
</div>
</div>

<div class="data" ref="data">
<div class="query_module">

<div class="query_title flex">
<span>查询标准</span>




<Input search placeholder="请输入标准号或标准名称关键字进行搜索" style="width: 310px" v-model="searchVal" @on-search="conditionData"></Input>
</div>

<div class="query_list">
<div style="position: relative;height: 150px;" v-if="!queryList">
<Spin size="large" fix></Spin>
</div>

                    <ul v-if="queryList">
                        <li v-for="(item, index) in queryList" :key="index">
                            <div class="title">{{ item.label }}:</div>
                            <div class="list_wrap flex" :style="{ height: item.isOpen ? item.openH : item.closeH }" ref="wrap">
                                <div v-for="(itemList, indexList) in item.list" :key="indexList" :class="{ active: itemList.selected }" @click="selectedCondition(item, itemList, index, indexList)">
                                    {{ itemList.dictLabel }}
                                </div>
                            </div>
                            <div class="more" @click="fold(index)" v-if="item.openH != '30px'">
                                <span>{{ item.isOpen ? "收起" : "展开" }}</span>
                                <i class="iconfont icon-shouqi" :style="{
                  transform: item.isOpen
                    ? 'rotate(0deg)'
                    : 'rotate(-180deg)',
                }"></i>
                            </div>
                        </li>
                    </ul>
                    <div class="searching_condition flex" v-if="queryList">
                        <div class="title">检索条件:</div>
                        <div class="list">
                            <div class="item" v-for="(item, index) in conditionList" :key="index">
                                <span>{{ item.dictLabel }}</span>
                                <i class="iconfont icon-cuowu" @click="clearCondition(item, index)"></i>
                            </div>
                            <div class="reset_condition" v-if="conditionList.length != 0" @click="resetCondition">
                                重置条件
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="standard_list_wrap" ref="listWrap">
                <Spin size="large" fix v-if="tableLoading"></Spin>
                <!-- 排序 -->
                <div class="sort_module flex">
                    <sort v-for="(item, index) in sortList" :sortType="item.sortType" :text="item.text" :key="item.key" @sort="sort(item.key, index)"></sort>
                </div>
                <!-- 排序下的功能键 -->
                <div class="table_am flex">
                    <div class="selected_num">
                        (<span style="margin: 0px 3px;">已选<span style="color: #3388ff;margin: 0px 3px;">{{
              selectedNum
            }}</span>条</span>)
                    </div>
                    <div class="am flex" @click="clearSelected">
                        <i class="iconfont icon-lajitong"></i>
                        <span>清除已选</span>
                    </div>
                    <div class="am flex" @click="jumpzstp">
                        <i class="iconfont icon-chakan"></i>
                        <span>查看标准关系图谱</span>
                    </div>
                    <!--                        <div class="am flex" @click="addSystem">-->
                    <!--                            <i class="iconfont icon-shujucaiji-"></i>-->
                    <!--                            <span>纳入自定义体系</span>-->
                    <!--                        </div>-->
                    <div class="flex" style="flex: 1;margin-right: 0px;justify-content: flex-end;">
                        找到<span style="margin: 0px 3px;color: #3388ff;">{{
            !dataSource ? 0 : dataSource.length
          }}</span>条结果
                    </div>
                </div>
                <!-- 表格数据 -->
                <div class="data_list">
                    <standard-list :columns="columns" :dataSource="dataSource ? dataSource : []" :total="total" @change="pageChange" @table_change="table_change" ref="table"></standard-list>
                </div>
            </div>
        </div>
    </div>
    <!--  创建体系 -->
    <create-system ref="createSystem"></create-system>
</div>

</template>

<script>
import tab from '@/components/tab'; //顶部消息
import sort from '@/components/sort'; //右侧筛选
import { construct } from '@aximario/json-tree';
import standardList from '@/components/standardList'; //表格+页码
import elementResizeDetectorMaker from 'element-resize-detector'; //查看更多
import {
gjbSearchCondition, //智慧标准体系页—832A和832搜索条件
gjbSystemList, // 智慧标准体系页—832A和832体系列表
mirrorTree, //智慧标准体系页—832和832a标准分类树
searchCondition, // 智慧标准体系页—集团标准体系和国军标搜索条件
standardTree, //智慧标准体系页—国军标和国家标准体系查询树
systemList, // 智慧标准体系页—集团标准体系和国军标体系列表
} from '@/libs/api'; //获取接口
import createSystem from './components/createSystem'; //创建新体系

export default {
name: 'standardSystem',
components: {
tab,
sort,
standardList,
createSystem,
},
data() {
return {
// 顶部列表信息
tabList: [
{ text: '集团标准体系', treeApi: 'standard', classType: 1 },
{ text: '国军标体系', treeApi: 'standard', classType: 2 },
{ text: '832A', treeApi: 'mirror', classType: 3 },
{ text: '832', treeApi: 'mirror', classType: 4 },
],
tabIndex: 0, //默认下标
treeData: null, //左侧树的数据
queryList: null, //查询列表
conditionList: [], //条件列表
maxHeight: null, //最大高度
erd: elementResizeDetectorMaker(), //查看更多
sortList: [
//排序列表
{ text: '标准号', key: 'std_no' },
{ text: '标准名称', key: 'name_cn' },
{ text: '发布日期', key: 'pub_date' },
{ text: '实施日期', key: 'implement_date' },
],
treeIds: [], //选择的树的ID
requiredQuery: {
//查询必选项
fieldIdStr: null,
hTypeStr: null,
levelIdStr: null,
productTypeStr: null,
armyFlagStr: null,
pageSize: 10,
pageNum: 1,
},
columns: [], //表头
dataSource: null, //数据
total: 0, //表格的页码
selectedNum: 0, //表格选中的数据的条数
treeVal: '', // 左侧树的搜索关键字
searchVal: '', //搜索条件
tableLoading: true, //loading是否出现
};
},
mounted() {
// 获取表头
this.columns = this.columnsData();
const { index, id } = this.route.query; if (index != null && index != undefined) { this.tabIndex = index; } // 获取树 this.sysManagetreeData(id); }, methods: { // 获取表头 columnsData() { let w = this.refs.listWrap.clientWidth;
let columns = [
{
type: 'selection',
width: 40,
align: 'center',
},
{
title: '分类编号',
key: 'sysCode',
align: 'center',
},
{
title: '分类名称',
key: 'sysName',
align: 'center',
},
{
title: '标准编号',
key: 'stdNo',
align: 'center',
resizable: true,
render: (h, params) => {
return h('div', [
h(
'div',
{
class: 'jumpKey',
style: {
cursor: 'pointer',
// color: "#3388ff",
},
on: {
click: () => {
this.toBZDetail(params);
},
},
},
params.row.stdNo
),
]);
},
},
{
title: '标准名称',
key: 'nameCn',
align: 'center',
resizable: true,
render: (h, params) => {
return h('div', [
h(
'span',
{
class: 'jumpKey',
style: {
cursor: 'pointer',
// color: "#3388ff",
},
on: {
click: () => {
this.toBZDetail(params);
},
},
},
params.row.nameCn
),
]);
},
},
{
title: '标准级别',
key: 'hType',
align: 'center',
resizable: true,
},
{
title: '状态',
key: 'stdStateStr',
align: 'center',
render: function(h, params) {
let className = null;
let { stdStateStr } = params.row;
if (stdStateStr == '计划') {
className = 'plan';
} else if (stdStateStr == '有效') {
className = 'valid';
} else {
className = 'abolish';
}
return h(
'div',
{
class: ${className} stdStatus,
},
stdStateStr
);
},
},
{
title: '发布日期',
key: 'pubDate',
align: 'center',
},
{
title: '操作',
key: 'action',
align: 'center',
render: (h, params) => {
return h(
'div',
{
class: 'actionWrap',
},
[
h('i', {
class: 'iconfont icon-shoucang',
style: {
marginRight: '12px',
},
on: {
click: () => {
this.show(params.index);
},
},
}),
h('i', {
class: 'iconfont icon-icon_zhishiku',
on: {
click: () => {
this.show(params.index);
},
},
}),
]
);
},
},
];
columns.forEach(item => {
if (item.key == 'nameCn') {
item.width = w * 0.2;
}
if (item.key == 'stdNo') {
item.width = w * 0.18;
}
if (item.key == 'hType') {
item.width = w * 0.18;
}
});
return columns;
},
// 跳转到详情页
toBZDetail(values) {
this.router.push({ path: '/BasicDetail', query: { id: values.row.stdNo }, }); }, // 筛选条件de 点击事件 selectedCondition({ queryKey }, { dictLabel, dictValue }, pIndex, cIndex) { const findRepetition = this.conditionList.find( item => item.queryKey == queryKey && item.dictValue == dictValue ); if (!findRepetition) { this.queryList[pIndex].list[cIndex].selected = true; this.conditionList.push({ dictLabel, queryKey, dictValue, pIndex, cIndex, }); this.listData(); } }, // 选择条件 filterConditionArr() { // 将选中的条件数组过滤成 key value 形式的 let { conditionList } = this; let map = {}; if (conditionList && conditionList.length > 0) { conditionList.forEach(item => { if (!map[item.queryKey]) { map[item.queryKey] = []; } map[item.queryKey].push(item.dictValue); }); for (let key in map) { map[key] = map[key].join(','); } return map; } return false; }, // 清除某个条件 clearCondition(item, index) { this.conditionList.splice(index, 1); const { pIndex, cIndex } = item; this.queryList[pIndex].list[cIndex].selected = false; this.listData(); }, // 重置条件 resetCondition() { this.conditionList = []; for (let i of this.queryList) { for (let j of i.list) { j.selected = false; } } this.listData(); }, // 树的渲染条件 renderContent(h, { root, node, data }) { return h( 'span', { style: { display: 'inline-block', width: '100%', }, }, [ h('span', [ h('Icon', { props: { type: node.children ? 'ios-folder-outline' : 'ios-document-outline', }, style: { marginRight: '8px', }, }), h('span', data.title), ]), ] ); }, // 排序 sort(key, index) { this.sortList.forEach((t, i) => { if (i != index) t.sortType = null; }); this.sortList[index].sortType = this.sortList[index].sortType ? this.sortList[index].sortType == 'asc' ? 'desc' : 'asc' : 'asc'; this.listData(); this.forceUpdate();
},
// 点击数获取父节点
findParentNode(list, id) {
const mofifNode = (data, cid) => {
for (let i = 0; i < data.length; i++) {
let item = data[i];
if (item.id == id) {
item.selected = true;
}
if (item.id === cid) {
item.expand = true;
mofifNode(list, item.pId);
} else {
if (item.children) {
mofifNode(item.children, cid);
}
}
}
};
mofifNode(list, id);
},
// findParentNode(data, id) {
// const field = data.find((item) => item.id === id);
// data.forEach(item => {
// if (item.id == id) {
// item.selected = true;
// }
// })
// if (field == null && field == undefined) {
// return false;
// }
// let parentId = field.pId;
// let cache = [field];
// //中条件
// while (parentId !== 0) {
// // 首先找到当前 ParentId
// const f = data.find((item) => item.id == parentId);
// f.expand = true;
// cache.push(f);
// parentId = f.pId;
// }
// },
//查找所有的子节点
findChildIds(data, id, Arr) {
for (let i = 0; i < data.length; i++) {
let len = data[i].children && data[i].children.length > 0;
let wid = id;
if (data[i].pId == id) {
Arr.push(data[i].id);
wid = data[i].id;
}
if (len) {
this.findChildIds(data[i].children, wid, Arr);
}
}
return Arr;
},
// 获取体系树
sysManagetreeData(id) {
const { treeApi, classType } = this.tabList[this.tabIndex];
const url = treeApi == 'mirror' ? mirrorTree : standardTree;
this.axios(url, 'get', { searchQuery: this.treeVal, classType }).then( res => { const { data } = res; if (data.code != 500) { let treeList = this.filterTreeData(data); let selectSystem = null; if (id != null && id != undefined) { selectSystem = data.find(item => item.id == id); // 查找所有当前选中id的所有父元素 让所有父元素处于展开状态 this.findParentNode(treeList, selectSystem.id); } this.treeData = treeList; this.treeIds = id != null && id != undefined ? [...this.findChildIds(treeList, selectSystem.id, []), ...[id]] : this.getTreeIds(treeList, []); this.listDictData(); } else { this.Message.error('获取体系树异常!');
}
}
);
},
// 获取搜索条件
listDictData() {
const { treeApi, classType } = this.tabList[this.tabIndex];
const url = treeApi == 'mirror' ? gjbSearchCondition : searchCondition;
const allSysIds = this.treeIds.join(',');
this.axios(url, 'post', this.qs.stringify({ allSysIds })).then(res => {
if (res.data.code != 500) {
let queryArr = [];
let key = [
'ARMY_PEOPLE',
'PRODUCT_LEVEL',
'STD_FIELD',
'STD_LEVEL',
'STD_RANK',
];
key.forEach(item => {
let value = res.data[item];
if (value && value.length != 0) {
queryArr.push({
key: item,
label: this.listDictText(item).text, // label 展示的汉字
queryKey: this.listDictText(item).queryKey, // queryKey 点击筛选条件传给服务端的key值
list: value,
isOpen: false, // 是否展开
});
}
});
this.queryList = queryArr;
this.listData();
this.nextTick(() => { // 数据渲染完之后获取可视高度 点击收起 展开 动态更改div的高度 const _dom = this.refs.wrap;
let _list = this.queryList;
for (let i = 0; i < _dom.length; i++) {
_list[i] = {
..._list[i],
openH: ${_dom[i].clientHeight}px,
closeH: '25px',
};
}
this.queryList = _list;
this.forceUpdate(); }); } else { this.Message.error('获取查询条件异常!');
}
});
},
// 获取列表
listData(isPage = false) {
if (!isPage) {
this.requiredQuery.pageNum = 1;
this.refs.table.resetPage(); } this.tableLoading = true; this.erd.uninstall(this.refs.data);
const sortKey = this.sortList.find(item => item.sortType);
const allSysIds = this.treeIds.join(',');
const filterConditionArr = this.filterConditionArr();
const parameter = {
...this.requiredQuery,
...filterConditionArr,
orderByColumn: sortKey ? sortKey.key : null,
isAsc: sortKey ? sortKey.sortType : null,
allSysIds,
};
const { treeApi, classType } = this.tabList[this.tabIndex];
const url = treeApi == 'mirror' ? gjbSystemList : systemList;
this.axios(url, 'post', this.qs.stringify(parameter)).then(res => {
const { data } = res;
if (data.code != 500) {
const _this = this;
_this.tableLoading = false;
_this.dataSource = data.rows;
_this.total = data.total;
this.erd.listenTo(this.refs.data, function(element) { _this.maxHeight = `{element.clientHeight}px`;
});
} else {
this.Message.error('获取列表异常!'); } }); }, // 筛选树的数据 filterTreeData(data) { let result = construct(data, { id: 'id', pid: 'pId' }); const treeData = this.tree(result); return treeData; }, tree(result) { let newData = this.deepClone(result); return this.recursionTree(newData); }, // 递归树 recursionTree(data) { data.forEach(item => { let len = item.children && item.children.length > 0; if (item.pId == 0 || item.pId == -1) { item.expand = true; } item.title = item.name; if (len) { this.recursionTree(item.children); } }); return data; }, // 定义一个深拷贝函数 接收目标target参数 deepClone(target) { // 定义一个变量 let result; // 如果当前需要深拷贝的是一个对象的话 if (typeof target === 'object') { // 如果是一个数组的话 if (Array.isArray(target)) { result = []; // 将result赋值为一个数组,并且执行遍历 for (let i in target) { // 递归克隆数组中的每一项 result.push(this.deepClone(target[i])); } // 判断如果当前的值是null的话;直接赋值为null } else if (target === null) { result = null; // 判断如果当前的值是一个RegExp对象的话,直接赋值 } else if (target.constructor === RegExp) { result = target; } else { // 否则是普通对象,直接for in循环,递归赋值对象的所有值 result = {}; for (let i in target) { result[i] = this.deepClone(target[i]); } } // 如果不是对象的话,就是基本数据类型,那么直接赋值 } else { result = target; } // 返回最终结果 return result; }, // 获取树ID getTreeIds(data, idArr) { data.forEach(item => { idArr.push(item.id); if (item.children && item.children.length != 0) { this.getTreeIds(item.children, idArr); } }); return idArr; }, // 树的值改变 treeChange(data) { this.treeIds = this.getTreeIds(data, []); this.resetParameter(); this.tableLoading = true; this.listDictData(); }, // 条件数据筛选 conditionData() { this.resetParameter(); this.listDictData(); }, // 查询数据的表头 listDictText(data) { let [text, queryKey] = [null, null]; switch (data) { case 'STD_FIELD': text = '标准领域'; queryKey = 'fieldIdStr'; break; case 'STD_LEVEL': text = '标准层级'; queryKey = 'levelIdStr'; break; case 'PRODUCT_LEVEL': text = '产品层级'; queryKey = 'productTypeStr'; break; case 'ARMY_PEOPLE': text = '军民属性'; queryKey = 'armyFlagStr'; break; case 'STD_RANK': text = '标准级别'; queryKey = 'hTypeStr'; break; } return { text, queryKey }; }, // 清除表格选择 clearSelected() { this.refs.table.selectAll(false);
},
// 页码改变
pageChange(page) {
this.selectedNum = 0;
this.requiredQuery.pageNum = page;
this.tableLoading = true;
this.listData(true);
},
// 接收表格改变数据
table_change(data) {
this.selectedNum = data.length;
},
// 折叠
fold(index) {
const { isOpen } = this.queryList[index];
this.queryList[index].isOpen = !isOpen;
this.forceUpdate(); }, // 头部切换导航 toggleNav(index) { if (this.tabIndex != index) { this.tabIndex = index; this.treeData = null; this.tableLoading = true; this.resetParameter(); this.sysManagetreeData(); } }, // 左侧树的搜索关键词 searchTreeData() { // 重置状态 this.treeData = null; this.resetParameter(); this.sysManagetreeData(); }, // 重置参数 resetParameter() { this.queryList = null; this.dataSource = null; this.requiredQuery.pageNum = 1; this.selectedNum = 0; this.conditionList = []; this.resetSort(); }, // 重置排序 resetSort() { this.sortList.forEach(item => { item.sortType = null; }); }, // 添加系统 addSystem() { this.refs.createSystem.showModal();
},
// 跳转
jumpzstp() {
const selectData = this.refs.table.getSelectRow(); if (selectData.length == 0) { this.Message.warning('请选择至少一条标准');
return false;
}
const stdNos = selectData.map(item => item.stdNo).join(',');
this.store.dispatch('setStdNo', stdNos); this.router.push('/standard/standardAtlas');
},
},
// 折叠
beforeDestroy() {
this.erd.uninstall(this.$refs.data);
},
};
</script>

<style scoped lang="less">
@import '../../styles/less/standardModule';

/deep/ .ivu-table-cell {
padding-right: 10px;
padding-left: 10px;
}

.flex {
display: flex;
}

.tab {
margin-bottom: 20px;
/deep/ .active:after {
bottom: -1px;
}
}

.content {
position: relative;
overflow: hidden;
min-height: calc(100vh - 250px);

.system_node {
width: 300px;
min-height: calc(100vh - 250px);
background: white;
overflow: auto;
float: left;
position: relative;

.wrap {
  padding: 0px 16px;
  margin-bottom: 20px;
}

.search {
  margin-top: 20px;

  .system_btn {
    margin-left: 6px;
  }
}

.tree {
  overflow: auto;
}

}

.data {
float: left;
width: calc(100% - 320px);
min-height: calc(100vh - 250px);
margin-left: 20px;
overflow: auto;
display: flex;
flex-direction: column;

> .query_module {
  padding: 0px 20px 20px 20px;
  background: white;

  .query_title {
    height: 50px;
    align-items: center;
    border-bottom: 1px solid #efefef;

    span {
      flex: 1;
      font-size: 15px;
      font-weight: bold;
    }
  }

  .query_list {
    margin-top: 12px;
    overflow: hidden;
  }

  .query_list > ul {
    overflow: hidden;
  }

  .query_list > ul > li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;

    &:last-of-type {
      margin-bottom: 0px;
    }

    .title {
      font-size: 14px;
      font-weight: bold;
      width: 70px;
      line-height: 25px;
    }

    .list_wrap {
      flex: 1;
      flex-wrap: wrap;
      font-size: 14px;
      margin-right: 12px;
      transition: 0.3s height ease-in-out;

      > div {
        line-height: 25px;
        margin-right: 20px;
        color: #60636f;
        margin-bottom: 5px;
        cursor: pointer;
      }

      .active {
        color: #3388ff;
      }
    }

    .more {
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;

      span {
        margin-right: 2px;
      }

      i {
        transition: 0.5s;
      }
    }
  }

  .searching_condition {
    align-items: flex-start;
    margin-top: 8px;
    font-size: 14px;

    .title {
      font-weight: bold;
      width: 70px;
      line-height: 25px;
    }

    .list {
      flex-wrap: wrap;
      display: flex;
      flex: 1;

      .item {
        line-height: 23px;
        border-radius: 3px;
        border: solid 1px #3388ff;
        align-items: center;
        padding: 0px 6px;
        display: flex;
        color: #3388ff;
        margin-right: 20px;
        margin-bottom: 7px;

        i {
          margin-top: 1px;
          margin-left: 6px;
          cursor: pointer;
        }
      }
    }

    .reset_condition {
      color: #3388ff;
      cursor: pointer;
      height: 25px;
      line-height: 25px;
    }
  }
}

> .standard_list_wrap {
  margin-top: 20px;
  background: white;
  padding: 0px 20px;
  flex: 1;
  position: relative;

  .table_am {
    .am {
      cursor: pointer;
    }
  }

  .sort_module {
    padding: 12px 0px;
    border-bottom: 1px solid #efefef;

    /deep/ .sort {
      padding: 0px 15px;
      position: relative;
    }

    /deep/ .sort:before {
      position: absolute;
      width: 1px;
      height: 18px;
      content: '';
      background: #dddddd;
      right: 0px;
      top: 2px;
    }

    /deep/ .sort:first-of-type {
      padding-left: 0px;
    }
  }
}

}
}

/deep/ .jumpKey:hover {
color: #3388ff;
}

/deep/ .stdStatus {
width: 42px;
height: 22px;
text-align: center;
line-height: 23px;
margin: 0 auto;
border-radius: 3px;
}
/deep/ .valid {
background: rgba(255, 120, 4, 0.15);
color: #ff7804;
}
/deep/ .plan {
background: rgba(51, 136, 255, 0.15);
color: #3388ff;
}
/deep/ .abolish {
background: rgba(121, 121, 121, 0.15);
color: #797979;
}
</style>

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,245评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,749评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,960评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,575评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,668评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,670评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,664评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,422评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,864评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,178评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,340评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,015评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,646评论 3 323
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,265评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,494评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,261评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,206评论 2 352

推荐阅读更多精彩内容