index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. <template>
  2. <div class="login-wrapper">
  3. <RightSliderBar/>
  4. <el-dialog v-model="contentFlag" :show-close="true" align-center title="评价内容">
  5. <div class="size-s">
  6. {{content}}
  7. </div>
  8. </el-dialog>
  9. <el-dialog v-model="evaluateFlag" :show-close="true" align-center title="评价商品">
  10. <el-input style="font-size: 16px" v-model="textarea"
  11. :rows="5"
  12. type="textarea"
  13. placeholder="请留下您宝贵的意见…">
  14. </el-input>
  15. <div class="buttons" @click="submits">确认</div>
  16. </el-dialog>
  17. <div>
  18. <indexHeaders/>
  19. </div>
  20. <div class="register">
  21. <div class="register-left">
  22. <CentreNav :navIndexs="1"/>
  23. </div>
  24. <div class="register-content">
  25. <div class="collect-tops">
  26. <div class="icons">
  27. <img src="http://screen.zhousi.hdlkeji.com/aksdbn/img/mine-icon1.png">
  28. </div>
  29. <div>我的评价</div>
  30. </div>
  31. <div class="evaluate-nav">
  32. <div class="evaluate-nav-view" @click="clickTap(index)" v-for="(item,index) in evaluateNav">
  33. <div>{{item}}</div>
  34. <div class="line" v-show="nacIndex==index"></div>
  35. </div>
  36. </div>
  37. <div class="news-no" v-if="evalList.arr==''">
  38. <img src="http://screen.zhousi.hdlkeji.com/aksdbn/img/news-no-bg2.png">
  39. <div>暂无相关信息</div>
  40. </div>
  41. <div class="content">
  42. <div class="list" v-for="item in evalList.arr">
  43. <div>
  44. <div class="list-tops">
  45. <div class="money-top">
  46. <div class="list-time">{{detailTime(item.create_time)}}</div>
  47. <div class="orderNo">订单号:{{item.orders.order_no}}</div>
  48. </div>
  49. <div class="money-text">金额</div>
  50. <div class="money-status">状态</div>
  51. <div class="money-oper">操作</div>
  52. </div>
  53. <div class="evaluate-goods">
  54. <div class="order-info">
  55. <div class="order-img">
  56. <img :src="item.logo">
  57. </div>
  58. <div class="order-name overflow1">{{item.goods_name}}</div>
  59. </div>
  60. <div class="order-money color-s">¥{{item.amount_pay}}</div>
  61. <div class="order-status order-money" style="color: #4171B3">已完成</div>
  62. <div class=" order-money " style="border-right: none">
  63. <div class="order-button" v-if="nacIndex==0" @click="clickTaps(item.goods_id,item.order_id)">去评价</div>
  64. <div class="order-button" v-if="nacIndex==1" @click="show_pj(item)">查看评价</div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <div class="pages">
  70. <el-pagination
  71. v-if="totalNumber>10"
  72. background
  73. layout="prev, pager, next"
  74. :total="totalNumber"
  75. class="mt-4"
  76. :page-size="limit"
  77. @current-change="handleCurrentChange"
  78. />
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. </div>
  84. <Footer/>
  85. </template>
  86. <script setup>
  87. //记录访问次数
  88. if(localStorage.getItem('USER__INFO__')){
  89. user_lsp().then((res)=>{
  90. })
  91. }
  92. const show_pj=(item)=>{
  93. contentFlag.value=true;
  94. // console.error(item)
  95. console.error(item.eval)
  96. content.value=item.eval.content
  97. }
  98. import { ElMessage, ElMessageBox } from 'element-plus'
  99. let textarea=ref('')
  100. let evaluateFlag=ref(false)
  101. let page=ref(1)
  102. let limit=ref(10)
  103. let totalNumber=ref(null)
  104. let goodsIds=ref('')
  105. let orderIds=ref('')
  106. let contentFlag=ref(false)
  107. const handleCurrentChange=(size)=>{
  108. page.value=size
  109. siteLists()
  110. }
  111. const siteLists=()=>{
  112. let data={
  113. type:nacIndex.value+1,
  114. page:page.value,
  115. limit:limit.value
  116. }
  117. get_eval_list(data).then((res)=>{
  118. if(res.code==1){
  119. evalList.arr=res.data.data
  120. totalNumber.value=res.data.total
  121. }
  122. })
  123. }
  124. let content=ref('')
  125. import {inject, provide, reactive, ref,onMounted} from 'vue'
  126. import indexHeaders from '@/components/Index/indexHeaders.vue'
  127. import LeftSliderBar from '@/components/Index/LeftSliderBar.vue'
  128. import RightSliderBar from '@/components/Index/RightSliderBar.vue'
  129. import CountDate from '@/components/Index/CountDate.vue'
  130. import Footer from '@/components/Tool/Footer.vue'
  131. import CentreNav from '@/components/User/CentreNav.vue'
  132. import {detailTime, isLogin, timestampToTime} from "@/utils";
  133. import {creates, get_eval_list, orderEval, user_lsp} from "@/api/menu1";
  134. const guide = ref(['资讯中心'])
  135. const evaluateNav = ref(['待评价','已评价'])
  136. let nacIndex = ref(0)
  137. let guideIndex =ref(0)
  138. const clickTaps=(goodsId,orderId)=>{
  139. goodsIds.value=goodsId
  140. orderIds.value=orderId
  141. evaluateFlag.value=true
  142. }
  143. const submits=()=>{
  144. if(textarea.value==''){
  145. ElMessage.error('请输入评价内容')
  146. return;
  147. }
  148. let data={
  149. goods_id:goodsIds.value,
  150. order_id:orderIds.value,
  151. content:textarea.value,
  152. }
  153. orderEval(data).then((res)=>{
  154. if(res.code==1){
  155. ElMessage.success('评价成功')
  156. getEvalList()
  157. evaluateFlag.value=false
  158. }else{
  159. ElMessage.error(res.msg)
  160. }
  161. })
  162. }
  163. const clickTap = (index) =>{
  164. nacIndex.value=index;
  165. getEvalList();
  166. }
  167. const newsList =[
  168. { id: '1', src: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/goods/seckill-goods.png' ,goods: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/goods/seckill-bg.png' },
  169. { id: '2', src: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/goods/seckill-bg2.png' ,goods: 'http://screen.zhousi.hdlkeji.com/aksdbn/img/goods/seckill-bg.png'},
  170. ]
  171. const evalList=reactive({
  172. arr:[]
  173. })
  174. isLogin()
  175. onMounted(()=>{
  176. getEvalList();
  177. })
  178. const getEvalList=()=>{
  179. let data={
  180. type:nacIndex.value+1,
  181. page:page.value,
  182. limit:limit.value
  183. }
  184. get_eval_list(data).then((res)=>{
  185. if(res.code==1){
  186. evalList.arr=res.data.data
  187. totalNumber.value=res.data.total
  188. }
  189. })
  190. }
  191. </script>
  192. <style lang="less" scoped >
  193. .size-s{
  194. font-size: 16px;
  195. color: #333;
  196. }
  197. .buttons{
  198. cursor: pointer;
  199. width: 140px;
  200. height: 30px;
  201. background: #FFFFFF;
  202. color: #3171B8;
  203. font-size: 16px;
  204. text-align: center;
  205. line-height: 30px;
  206. border: 1px solid #3171B8;
  207. margin: 30px auto 20px auto;
  208. }
  209. /deep/ .el-dialog__header{
  210. text-align: center;
  211. }
  212. .login-wrapper{
  213. background-color: #F7F8FA;
  214. .register{
  215. display: flex;
  216. padding: 0 260px 40px 260px;
  217. .register-content{
  218. background-color: #fff;
  219. margin: 10px 0 0 10px;
  220. width: 100%;
  221. min-height: 700px;
  222. .evaluate-nav{
  223. display: flex;
  224. .evaluate-nav-view{
  225. cursor: pointer;
  226. padding: 0 30px;
  227. height: 50px;
  228. line-height: 50px;
  229. color: #333333;
  230. font-size: 18px;
  231. box-sizing: border-box;
  232. .line{
  233. width: 72px;
  234. height: 5px;
  235. background: linear-gradient(270deg, #FFFFFF 0%, #4171B3 100%);
  236. border-radius: 3px;
  237. margin-left: -10px;
  238. }
  239. }
  240. }
  241. .content{
  242. margin-top: 10px;
  243. .list{
  244. height: 174px;
  245. background: #FFFFFF;
  246. border: 1px solid #D7DBE0;
  247. margin: 0 20px 10px 20px;
  248. .evaluate-goods{
  249. display: flex;
  250. justify-content: space-between;
  251. height: 140px;
  252. .color-s{
  253. color: #333330;
  254. font-size: 18px;
  255. }
  256. .order-button{
  257. width: 100px;
  258. height: 36px;
  259. background: #4171B3;
  260. border-radius: 2px;
  261. line-height: 140px;
  262. cursor: pointer;
  263. }
  264. .order-money{
  265. width: 20%;
  266. border-right: 1px solid #f4f4f4;
  267. // flex: 1;
  268. line-height: 140px;
  269. text-align: center;
  270. .order-button{
  271. width: 100px;
  272. height: 36px;
  273. background: #4171B3;
  274. border-radius: 2px;
  275. text-align: center;
  276. line-height: 36px;
  277. color: #fff;
  278. font-size: 16px;
  279. margin: 50px auto;
  280. }
  281. }
  282. .order-info{
  283. display: flex;
  284. border-right: 1px solid #f4f4f4;
  285. width: 40%;
  286. box-sizing: border-box;
  287. padding: 20px;
  288. .order-img{
  289. img{
  290. width: 100px;
  291. height: 100px;
  292. }
  293. }
  294. .order-name{
  295. font-size: 18px;
  296. color: #333;
  297. margin-left: 30px;
  298. margin-top: 30px;
  299. line-height: 24px;
  300. }
  301. }
  302. }
  303. .list-tops{
  304. height: 34px;
  305. background: #F0F2F5;
  306. display: flex;
  307. line-height: 34px;
  308. padding: 0 0 0 0;
  309. box-sizing: border-box;
  310. .money-top {
  311. width: 40%;
  312. display: flex;
  313. box-sizing: border-box;
  314. padding-left: 20px;
  315. }
  316. .list-time{
  317. color: #999;
  318. font-size: 14px;
  319. }
  320. .orderNo{
  321. color: #999;
  322. font-size: 14px;
  323. margin-left: 20px;
  324. }
  325. .money-text{
  326. color: #333333;
  327. text-align: center;
  328. // margin-left: 120px;
  329. font-size: 16px;
  330. width: 20%;
  331. }
  332. .money-status{
  333. color: #333333;
  334. width: 20%;
  335. text-align: center;
  336. // margin-left: 190px;
  337. font-size: 16px;
  338. }
  339. .money-oper{
  340. color: #333333;
  341. width: 20%;
  342. text-align: center;
  343. // margin-left: 180px;
  344. font-size: 16px;
  345. }
  346. }
  347. }
  348. }
  349. .collect-tops{
  350. display: flex;
  351. font-size: 18px;
  352. color: #333;
  353. border-bottom: 1px solid #f4f4f4;
  354. height: 65px;
  355. line-height: 65px;
  356. padding: 0 20px;
  357. div{
  358. margin-right: 10px;
  359. }
  360. .icons{
  361. margin-top: 8px;
  362. img{
  363. width: 29px;
  364. height: 29px;
  365. }
  366. }
  367. }
  368. .news-no{
  369. margin: 120px auto;
  370. text-align: center;
  371. font-size: 20px;
  372. color: #999;
  373. img{
  374. width: 316px;
  375. height: 252px;
  376. }
  377. }
  378. }
  379. .register-left{
  380. width: 320px;
  381. height: 100px;
  382. background: #FFFFFF;
  383. border-radius: 2px;
  384. margin-top: 10px;
  385. text-align: center;
  386. .colorStyle{
  387. color: #4B71AE!important;
  388. }
  389. .register-list{
  390. cursor: pointer;
  391. height: 100px;
  392. line-height: 100px;
  393. color: #333;
  394. font-size: 22px;
  395. }
  396. }
  397. }
  398. }
  399. </style>