index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <template>
  2. <div>
  3. <div class="auto lists">
  4. <Row>
  5. <Col :span="15">
  6. <div class="lists-item" v-for="item in listData">
  7. <img v-lazy="picPath+item.infoimg" alt="" :key="item.infoId">
  8. <div class="content-text">
  9. <nuxt-link class="line-one" style="-webkit-box-orient: vertical;" :to="{path: '/content', query:{id:item.infoId}}" tag="a" target="_blank">{{item.title}}</nuxt-link>
  10. <p style="-webkit-box-orient: vertical;">{{item.summary}}</p>
  11. <div class="source" v-if="item.columnname?item.columnname.includes('—'):false">
  12. <nuxt-link :to="{path: '/lists', query:{id:item.parentcolumnId}}" class="line-one" style="-webkit-box-orient: vertical;" tag="a" target="_blank">{{item.columnname.split('—')[0]}}</nuxt-link>
  13. <span>—</span>
  14. <nuxt-link :to="{path: '/lists', query:{id:item.columnId}}" class="line-one" style="-webkit-box-orient: vertical;" tag="a" target="_blank">{{item.columnname.split('—')[1]}}</nuxt-link>
  15. <span>/{{item.uptimeStr}}</span>
  16. </div>
  17. <div class="source" v-else>
  18. <nuxt-link v-if="item.columnname" :to="{path: '/lists', query:{id:item.columnId}}" class="line-one" style="-webkit-box-orient: vertical;" tag="a" target="_blank">{{item.columnname}}/</nuxt-link>
  19. <span>{{item.uptimeStr}}</span>
  20. </div>
  21. </div>
  22. </div>
  23. <div class="page-nation">
  24. <Page :total="total" size="small" show-elevator show-sizer show-total :page-size="pageNation.rows" :current="pageNation.page" @on-change="pageChange" @on-page-size-change="pageSizeChange"/>
  25. </div>
  26. </Col>
  27. <Col :span="1" style="height:100px"></Col>
  28. <Col :span="8">
  29. <div>
  30. <!-- <a v-if="imgTo" :href="imgTo">
  31. <img style="width:333px" v-lazy="'http://pic-asean2.oss-cn-hongkong.aliyuncs.com/'+imgPath" alt="">
  32. </a>
  33. <img v-else style="width:333px" v-lazy="'http://pic-asean2.oss-cn-hongkong.aliyuncs.com/'+imgPath" alt=""> -->
  34. </div>
  35. </Col>
  36. </Row>
  37. </div>
  38. </div>
  39. </template>
  40. <script>
  41. import {getColumnInfoList,getColumnAd,search,listKeywordInfo} from '~/api/lists'
  42. import {listFocusInfo} from '~/api/homePage'
  43. import {formatTime} from '~/common/publicFun'
  44. import Bus from "~/common/bus";
  45. import { mapState } from 'vuex'
  46. export default {
  47. data(){
  48. return {
  49. picPath: 'http://pic-asean2.oss-cn-hongkong.aliyuncs.com/',
  50. suffix:'?x-oss-process=image/watermark,image_d2F0ZXJtYXJrL3dtMS5wbmc_eC1vc3MtcHJvY2Vzcz1pbWFnZS9yZXNpemUsUF8zMA==,g_se,x_10,y_10,t_70',
  51. listData:[],
  52. pageNation:{
  53. "page": 1,
  54. "rows": 20
  55. },
  56. total:0,
  57. imgPath:'',
  58. imgTo:'',
  59. id:'',
  60. fromSearch:false,
  61. // keyword:this.$store.getters.keyword,
  62. }
  63. },
  64. async asyncData () {
  65. let params={
  66. "page": this.pageNation.page,
  67. "rows": this.pageNation.rows,
  68. "reqdata":{}
  69. }
  70. let fun=''
  71. if(this.fromSearch){
  72. params.reqdata.title=this.searchVal
  73. fun=search
  74. // search(params).then(res=>{
  75. // if(res.status==100){
  76. // this.listData=res.list;
  77. // this.total=res.totalrecords
  78. // this.pageNation.page=res.currpage;
  79. // }
  80. // })
  81. }else if(['focus','recommend'].includes(this.id)){
  82. params.reqdata.type=this.id
  83. fun=listFocusInfo
  84. // listFocusInfo(params).then(res=>{
  85. // if(res.status==100){
  86. // this.listData=res.list;
  87. // this.total=res.totalrecords
  88. // this.pageNation.page=res.currpage;
  89. // }
  90. // });
  91. }else if(parseInt(this.id)){
  92. params.reqdata.columnId=parseInt(this.id)
  93. fun=getColumnInfoList
  94. // getColumnInfoList(params).then(res=>{
  95. // if(res.status==100){
  96. // this.listData=res.list;
  97. // this.total=res.totalrecords
  98. // this.pageNation.page=res.currpage;
  99. // }
  100. // });
  101. }else{
  102. params.reqdata.keyword=this.id;
  103. fun=listKeywordInfo
  104. // listKeywordInfo(params).then(res=>{
  105. // if(res.status==100){
  106. // this.listData=res.list;
  107. // this.total=res.totalrecords
  108. // this.pageNation.page=res.currpage;
  109. // }
  110. // })
  111. }
  112. let [] = await Promise.all([
  113. fun({params}),
  114. getColumnAd({ "reqdata": { "adPosition": "column" }})
  115. ])
  116. },
  117. mounted(){
  118. this.id=this.$route.query.id;
  119. console.log(this.id,'this.id')
  120. this.getData();
  121. Bus.$emit("columnId", this.id);
  122. },
  123. computed:{
  124. searchVal:function() { //通过方法访问
  125. return this.$store.getters.searchVal;
  126. },
  127. // keyword:function() { //关键字
  128. // return this.$store.getters.keyword;
  129. // },
  130. },
  131. watch:{
  132. // $route(){
  133. // if(['focus','recommend'].includes(this.$route.params.id)){
  134. // this.id = this.$route.params.id
  135. // }else{
  136. // this.id = this.$route.params.id
  137. // }
  138. // },
  139. // searchVal(){
  140. // this.fromSearch=true;
  141. // this.getData()
  142. // },
  143. // keyword(){
  144. // this.fromSearch=false;
  145. // this.id = this.keyword
  146. // this.getData()
  147. // },
  148. // id() {
  149. // this.fromSearch=false;
  150. // this.getData()
  151. // },
  152. },
  153. methods:{
  154. getData(){
  155. let params={
  156. "page": this.pageNation.page,
  157. "rows": this.pageNation.rows,
  158. "reqdata":{}
  159. }
  160. if(this.fromSearch){
  161. params.reqdata.title=this.searchVal
  162. search(params).then(res=>{
  163. if(res.status==100){
  164. this.listData=res.list;
  165. this.total=res.totalrecords
  166. this.pageNation.page=res.currpage;
  167. }
  168. })
  169. }else if(['focus','recommend'].includes(this.id)){
  170. params.reqdata.type=this.id
  171. listFocusInfo(params).then(res=>{
  172. if(res.status==100){
  173. this.listData=res.list;
  174. this.total=res.totalrecords
  175. this.pageNation.page=res.currpage;
  176. }
  177. });
  178. }else if(parseInt(this.id)){
  179. params.reqdata.columnId=parseInt(this.id)
  180. getColumnInfoList(params).then(res=>{
  181. if(res.status==100){
  182. this.listData=res.list;
  183. this.total=res.totalrecords
  184. this.pageNation.page=res.currpage;
  185. }
  186. });
  187. }else{
  188. params.reqdata.keyword=this.id;
  189. listKeywordInfo(params).then(res=>{
  190. if(res.status==100){
  191. this.listData=res.list;
  192. this.total=res.totalrecords
  193. this.pageNation.page=res.currpage;
  194. }
  195. })
  196. }
  197. this.getAd()
  198. },
  199. getAd(){
  200. getColumnAd({ "reqdata": { "adPosition": "column" }}).then(res=>{
  201. if(res.list){
  202. this.imgPath=res.object.adimg;
  203. this.imgTo=res.object.adurl;
  204. }
  205. })
  206. },
  207. pageChange(page){
  208. this.pageNation.page=page;
  209. this.getData();
  210. },
  211. pageSizeChange(pageSize){
  212. this.pageNation.rows=pageSize;
  213. this.getData();
  214. },
  215. }
  216. }
  217. </script>
  218. <style lang="scss" scoped>
  219. .lists{
  220. padding-top: 15px;
  221. margin-bottom: 123px;
  222. .lists-item{
  223. display: inline-flex;
  224. padding: 19px 0;
  225. border-bottom: 1px solid #ccc;
  226. width: 100%;
  227. img{
  228. width: 35%;
  229. height: 150px;
  230. border-radius: 10px;
  231. margin-right: 10px;
  232. }
  233. .content-text{
  234. position: relative;
  235. margin-left: 10px;
  236. width: 62%;
  237. a{
  238. font-size: 20px;
  239. float: left;
  240. width: 100%;
  241. margin-bottom:4px;
  242. }
  243. p{
  244. font-size: 14px;
  245. margin: 0 0 10px 0;
  246. color: #aaaaaa;
  247. width: 100%;
  248. height: 95px;
  249. overflow: hidden;
  250. text-overflow: ellipsis;
  251. display: -webkit-box;
  252. -webkit-line-clamp: 4;
  253. }
  254. span{
  255. float: left;
  256. font-size: 12px;
  257. margin-top: 15px;
  258. }
  259. .source{
  260. position: absolute;
  261. bottom: 0px;
  262. left: 0px;
  263. width: 100%;
  264. a{
  265. font-size: 13px;
  266. width: auto;
  267. color: #515a6e;
  268. margin: auto;
  269. }
  270. span{
  271. float: left;
  272. font-size: 12px;
  273. margin: auto;
  274. }
  275. }
  276. }
  277. }
  278. .page-nation{
  279. height: 50px;
  280. line-height: 50px;
  281. input{
  282. height: 2px;
  283. }
  284. }
  285. }
  286. </style>