index.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. <template>
  2. <div class="login-wrapper">
  3. <div>
  4. <indexHeaders @eventIsNum="eventIsNum"/>
  5. </div>
  6. <div class="goods-content">
  7. <div class="goods-search">
  8. <div class="goods-search-text">搜商品</div>
  9. <div class="goods-search-input">
  10. <div class="inputs">
  11. <el-input placeholder="商品名称搜索" maxlength="20" v-model="goodsName"></el-input>
  12. </div>
  13. <div class="input-bg" @click="clickTap">
  14. <img src="http://screen.zhousi.hdlkeji.com/aksdbn/img/index/search-icon.png">
  15. </div>
  16. </div>
  17. </div>
  18. <div class="screen">
  19. <div class="screen-list" @click="screenTaps(index)" :class="screenIndex === index?'screenStyle':''" v-for="(item,index) in screenList" :key="index">
  20. {{item.name}}
  21. </div>
  22. <div style="cursor: pointer" @click="clickTaps">
  23. <div class="uptriangles" :class="sortDesc==0?'colorStyles':''"></div>
  24. <div class="uptriangle" :class="sortDesc==1?'colorStyle_s':''"></div>
  25. </div>
  26. </div>
  27. <div class="goods-contents">
  28. <div v-if="goodsList.arr!=''" class="flex-s">
  29. <div class="goods-lists" @click="routeTap('/goodsDetail',item.id)" v-for="(item,index) in goodsList.arr" :key="index">
  30. <div class="goods-img">
  31. <img :src="item.logo[0]">
  32. </div>
  33. <div class="goods-name overflow1" >{{item.name}}</div>
  34. <div class="price">
  35. 热销价:<span >{{item.amount}}</span>
  36. </div>
  37. <div class="goods-rule overflow1">商品型号:{{item.describe}}</div>
  38. <div class="buttons">立即抢购</div>
  39. </div>
  40. </div>
  41. <div class="pages">
  42. <el-pagination
  43. v-if="totalNumber>10"
  44. background
  45. layout="prev, pager, next"
  46. :total="totalNumber"
  47. class="mt-4"
  48. :page-size="limit"
  49. @current-change="handleCurrentChange"
  50. />
  51. </div>
  52. </div>
  53. </div>
  54. <div>
  55. <RightSliderBar/>
  56. </div>
  57. </div>
  58. <Footer/>
  59. </template>
  60. <script setup>
  61. import {onUpdated, provide, reactive, ref,onMounted} from 'vue'
  62. import indexHeaders from '@/components/Index/indexHeaders.vue'
  63. import LeftSliderBar from '@/components/Index/LeftSliderBar.vue'
  64. import RightSliderBar from '@/components/Index/RightSliderBar.vue'
  65. import CountDate from '@/components/Index/CountDate.vue'
  66. import Footer from '@/components/Tool/Footer.vue'
  67. import {goodsLists, user_lsp} from "@/api/menu1";
  68. import {useRouter} from "vue-router";
  69. import {getUrlParams2} from "@/utils";
  70. const routeTap=(url,id)=>{
  71. $router.push({path:url,query:{id:id}})
  72. }
  73. const category_id=ref("")
  74. //记录访问次数
  75. if(localStorage.getItem('USER__INFO__')){
  76. user_lsp().then((res)=>{
  77. })
  78. }
  79. let page=ref(1)
  80. let limit=ref(12)
  81. let totalNumber=ref(null)
  82. const clickTaps=()=>{
  83. if(sortDesc.value==0){
  84. sortDesc.value=1
  85. }else{
  86. sortDesc.value=0
  87. }
  88. goodsList_s();
  89. }
  90. const handleCurrentChange=(size)=>{
  91. page.value=size
  92. goodsList_s()
  93. }
  94. const goodsName = ref('')
  95. const screenIndex = ref(0)
  96. const goodsList =reactive({
  97. arr: []
  98. })
  99. let sorts={
  100. "0":"recommend",
  101. "1":"amount",
  102. "2":"sell"
  103. }
  104. let sortDesc=ref(0)
  105. const screenList =[
  106. { id: '1', name: '推荐' },
  107. { id: '2', name: '价格' },
  108. { id: '3', name: '销量' }
  109. ]
  110. const screenTaps = (index) =>{
  111. screenIndex.value=index;
  112. goodsList_s()
  113. }
  114. const urls = getUrlParams2(window.location.href);
  115. onMounted(()=>{
  116. if(urls.userName){
  117. goodsList_s(urls.userName)
  118. }
  119. if(urls.sortId){
  120. category_id.value=urls.sortId
  121. setTimeout(()=>{
  122. goodsList_s()
  123. },50)
  124. }
  125. })
  126. onUpdated(()=>{
  127. })
  128. const eventIsNum=(value)=>{
  129. goodsName.value=value
  130. goodsList_s();
  131. }
  132. const goodsList_s=(value)=>{
  133. if(urls.userName){
  134. goodsName.value=value
  135. }
  136. const datas={
  137. page:page.value,
  138. limit:limit.value,
  139. name:value,
  140. sort_dir:sortDesc.value==0?'desc':'asc',
  141. sort:sorts[screenIndex.value],
  142. category_id:category_id.value
  143. }
  144. goodsLists(datas).then((res)=>{
  145. if(res.data){
  146. goodsList.arr=res.data.data
  147. totalNumber.value=res.data.total
  148. }
  149. })
  150. }
  151. const total=ref(1)
  152. const currentPage3 = ref(1)
  153. const pageSize3 = ref(10)
  154. const disabled = ref(false)
  155. const $router=useRouter()
  156. const clickTap=(index)=>{
  157. urls.userName=goodsName.value
  158. goodsList_s(goodsName.value);
  159. }
  160. </script>
  161. <style lang="less" scoped >
  162. .colorStyles{
  163. border-top: 5px solid red!important;
  164. }
  165. .colorStyle_s{
  166. border-bottom: 5px solid red!important;
  167. }
  168. .uptriangles {
  169. width: 0;
  170. height: 0;
  171. border-left: 5px solid transparent;
  172. border-right: 5px solid transparent;
  173. border-top: 5px solid #999;
  174. position: absolute;
  175. right: 37%;
  176. bottom: 20px;
  177. transform: rotate(180deg);
  178. left: 300px;
  179. }
  180. .uptriangle {
  181. width: 0;
  182. height: 0;
  183. border-left: 5px solid transparent;
  184. border-right: 5px solid transparent;
  185. border-bottom: 5px solid #999;
  186. position: absolute;
  187. right: 37%;
  188. bottom:12px;
  189. transform: rotate(180deg);
  190. left: 300px;
  191. }
  192. .flex-s{
  193. display: flex;
  194. flex-wrap: wrap;
  195. }
  196. /deep/ .el-input .el-input__inner{
  197. height: 38px;
  198. line-height: 38px;
  199. border: none;
  200. }
  201. .login-wrapper{
  202. background-color: #F7F8FA;
  203. .goods-content{
  204. padding: 30px 260px;
  205. .pagination{
  206. text-align: center;
  207. }
  208. .goods-contents{
  209. margin-left: -15px;
  210. .goods-lists{
  211. cursor: pointer;
  212. width: 210px;
  213. //height: 314px;
  214. background: #FFFFFF;
  215. border-radius: 2px;
  216. padding: 10px;
  217. margin: 0 0 10px 0;
  218. .buttons{
  219. cursor: pointer;
  220. height: 40px;
  221. background-color: #4171B3;
  222. color: #fff;
  223. border-radius: 2px;
  224. font-size: 16px;
  225. text-align: center;
  226. line-height: 40px;
  227. margin: 10px 0;
  228. }
  229. .goods-name{
  230. color: #333;
  231. font-size: 16px;
  232. margin-top: 10px;
  233. font-weight: 500;
  234. }
  235. .goods-rule{
  236. color: #999;
  237. font-size: 12px;
  238. }
  239. .price{
  240. color: #333;
  241. font-size: 14px;
  242. margin: 10px 0 15px 0;
  243. span{
  244. color: #EA2813;
  245. }
  246. }
  247. .goods-img{
  248. text-align: center;
  249. img{
  250. width: 220px;
  251. height: 220px;
  252. }
  253. }
  254. }
  255. }
  256. .screen{
  257. position: relative;
  258. height: 40px;
  259. background: #FFFFFF;
  260. border-radius: 2px;
  261. border: 1px solid #D7DBE0;
  262. margin-top: 22px;
  263. display: flex;
  264. margin-bottom: 15px;
  265. .screenStyle{
  266. color: #fff;
  267. background-color: #4171B3;
  268. }
  269. .screen-list{
  270. width: 96px;
  271. height: 40px;
  272. text-align: center;
  273. line-height: 40px;
  274. font-size: 16px;
  275. cursor: pointer;
  276. }
  277. }
  278. .goods-search{
  279. display: flex;
  280. .goods-search-text{
  281. color: #333;
  282. font-size: 18px;
  283. margin: 10px 30px 0 0;
  284. }
  285. .goods-search-input{
  286. width: 302px;
  287. height: 40px;
  288. background: #FFFFFF;
  289. border-radius: 2px;
  290. border: 1px solid #CECECE;
  291. display: flex;
  292. box-sizing: border-box;
  293. justify-content: space-between;
  294. .input-bg{
  295. cursor: pointer;
  296. width: 50px;
  297. background: #4171B3;
  298. border-radius: 2px;
  299. img{
  300. width: 20px;
  301. height: 20px;
  302. margin: 10px 15px;
  303. }
  304. }
  305. }
  306. }
  307. }
  308. }
  309. </style>