index.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  1. <template>
  2. <div class="login-wrapper">
  3. <RightSliderBar/>
  4. <el-dialog v-model="evaluateFlag" :show-close="true" align-center title="评价商品">
  5. <el-input style="font-size: 16px" v-model="textarea"
  6. :rows="5"
  7. type="textarea"
  8. placeholder="请留下您宝贵的意见…">
  9. </el-input>
  10. <div class="buttons" @click="submits">确认</div>
  11. </el-dialog>
  12. <div>
  13. <indexHeaders/>
  14. </div>
  15. <div class="register">
  16. <div class="register-left">
  17. <CentreNav :navIndexs="0"/>
  18. </div>
  19. <div class="register-content">
  20. <div class="collect-tops">
  21. <div class="icons">
  22. <img src="http://screen.zhousi.hdlkeji.com/aksdbn/img/order-icon.png">
  23. </div>
  24. <div>我的订单</div>
  25. </div>
  26. <div class="evaluate-nav">
  27. <div class="evaluate-nav-view" :data-id="index" @click="clickTap(index,item.id)" v-for="(item,index) in evaluateNav" :key="index">
  28. <div>{{item.name}}</div>
  29. <div class="line" v-show="nacIndex==index"></div>
  30. </div>
  31. </div>
  32. <div class="tops">
  33. <div class="tops-order-text">订单详情</div>
  34. <div class="tops-order-text2">金额</div>
  35. <div class="tops-order-text2">
  36. <span>状态</span>
  37. <img src="http://screen.zhousi.hdlkeji.com/aksdbn/img/screen-icon.png" width="12" style="margin-left: 5px">
  38. </div>
  39. <div class="tops-order-text2">操作</div>
  40. </div>
  41. <div class="news-no" v-if="newsList.arr==''">
  42. <img src="http://screen.zhousi.hdlkeji.com/aksdbn/img/news-no-bg6.png">
  43. <div>暂无订单信息</div>
  44. </div>
  45. <div style="height:20px"></div>
  46. <div v-for="(item,index) in newsList.arr" :key="index">
  47. <div class="list" @click="details(item.id)" v-if="item.info[0]">
  48. <div >
  49. <div class="list-tops">
  50. <div class="list-time">{{ detailTime(item.create_time) }}</div>
  51. <div class="orderNo">订单号:{{item.order_no}}</div>
  52. </div>
  53. <div class="evaluate-goods">
  54. <div class="order-info">
  55. <div class="order-img">
  56. <img :src="item.info[0].logo">
  57. </div>
  58. <div class="order-name overflow2">{{item.info[0].goods_name}}{{item.info[0].sku_name}}</div>
  59. </div>
  60. <div class="order-money color-s">¥{{ item.amount_pay }}</div>
  61. <!-- <div class="order-status order-money" :class="'class'+item.status" v-if="item.status!=10&&item.status!=20">{{status[item.status]}}</div> -->
  62. <div class="order-status order-money" :class="'class'+item.status" v-if="item.status!=10&&item.status!=20">{{item.info[0].refunds[0]? item.info[0].refunds[0].refund_status_text: status[item.status]}}</div>
  63. <div v-if="item.status==10 || item.status==20" class="order-status order-money" :class="'class'+item.status" style="line-height: 0;padding: 30px 0">
  64. <div>
  65. {{status[item.status]}}
  66. </div>
  67. <div @click.stop="logistics_orders(item)" style="margin-top: 30px;color: #5D7FCF;cursor: pointer">
  68. 查看物流
  69. </div>
  70. </div>
  71. <div>
  72. </div>
  73. <div class=" order-money " style="border-right: none;line-height: normal">
  74. <!-- <div @click.stop="logistics_orders(item)" >查看物流</div>-->
  75. <div v-if="item.status==30">
  76. <div class="download" @click.stop="details(item.id)" style="margin-top:60px;color: #999;font-size: 12px;">查看详情</div>
  77. </div>
  78. <div style="margin: 30px 0 10px 0" v-if="item.status==0">
  79. <div class="download" @click.stop="details(item.id)" style="margin:-10px 0 10px 0;color: #999;font-size: 12px;">查看详情</div>
  80. <div class="size" style="font-size: 12px;cursor: pointer;" @click.stop="cancels(item.id)">取消订单</div>
  81. <div class="order-button" style="margin-top: 10px;" @click.stop="orderPay(item)" v-if="item.status==0">立即支付</div>
  82. </div>
  83. <div v-if="item.status==10">
  84. <div class="download" @click.stop="details(item.id)" style="margin-top:18px;color: #999;font-size: 12px;">查看详情</div>
  85. <div class="download" @click.stop="windowHref(item.contract_link)" style="margin-top:10px;color: #999;font-size: 12px;">合同下载</div>
  86. <div class="order-button" @click.stop="commits(item.id)" style="margin-top: 10px;" >确认收货</div>
  87. <!-- <div class="download" v-if="item.status==5 || item.status==10 || item.status==20" @click.stop="donwload(item.contract_link)" style="margin-top: 40px;color: #999;font-size: 12px;">合同下载</div> -->
  88. </div>
  89. <div v-if="item.status==5">
  90. <div class="download" @click.stop="details(item.id)" style="margin-top:45px;color: #999;font-size: 12px;">查看详情</div>
  91. <div @click.stop="windowHref(item.contract_link)" class="download" style="margin-top:10px;color: #999;font-size: 12px;">合同下载</div>
  92. <!-- <div class="order-button" @click.stop="commits(item.id)" style="margin-top: 10px;" >确认收货</div>-->
  93. </div>
  94. <div v-if="item.status==20">
  95. <div class="download" @click.stop="details(item.id)" style="margin-top:15px;color: #999;font-size: 12px;">查看详情</div>
  96. <div @click.stop="windowHref(item.contract_link)" class="download" style="margin-top:10px;color: #999;font-size: 12px;cursor: pointer;">合同下载</div>
  97. <div class="download" @click.stop="download(item.tax_link)" :style="item.tax_link==null?'color:#999':'color:#4171B3'" style="margin-top:5px;font-size: 12px;cursor: pointer;">发票下载</div>
  98. <div class="order-button" @click.stop="clickTaps(item.info[0].goods_id,item.info[0].order_id)" style="margin-top: 10px" v-if="item.is_evaled==false">去评价</div>
  99. </div>
  100. </div>
  101. </div>
  102. </div>
  103. <div class="fixeds" v-if="item.status==10 || item.status==20">
  104. <div class="logistts" v-if="lr_id==item.id">
  105. <div class="close-s" @click.stop="expressFlag=false;lr_id='';logistics.arr='';">
  106. <img src="@/assets/img/close-icons.png" alt="">
  107. </div>
  108. <div class="name" style="color: #999;font-size: 14px">{{ item.logistics.com.name }}:
  109. {{item.logistics.trans_no}}
  110. <text style="float: right;margin-right: 30px;color: #333;cursor: pointer" @click.stop="openMap(item.id)">查看轨迹</text>
  111. </div>
  112. <div class="logiFlexs" v-for="(item,index) in logistics.arr" v-if="logistics.arr!='' && logistics.arr.length>1" :key="index">
  113. <div style="display: flex;padding-bottom: 5px" >
  114. <div class="border-s color-ss" v-if="index==0"></div>
  115. <div class="border-s " v-else></div>
  116. <div class="overflow name-s" :class="index==0?'colors':''">{{item.content}}</div>
  117. </div>
  118. <div class="name-s" style="margin-left: 15px;margin-top: 5px;padding-bottom: 0" :class="index==0?'colors':''">{{item.time}}</div>
  119. </div>
  120. <div class="logiFlex_s" v-if="logistics.arr.length==1 && logistics.arr!=''">
  121. <div style="display: flex;">
  122. <div class="border-s "></div>
  123. <div class="overflow name-s" style="padding-bottom: 0" :class="index==0?'colors':''">暂无物流信息</div>
  124. </div>
  125. <div class="name-s" :class="index==0?'colors':''">{{item.time}}</div>
  126. </div>
  127. <div style="display: flex;margin-top: 10px">
  128. <div class="border-s color-ss" v-if="index==0"></div>
  129. <div class="border-s " v-else></div>
  130. <div>以上为最新跟踪信息<span style="color: #5C7ECE;margin-left: 10px">查看全部</span></div>
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. <div class="pages">
  137. <el-pagination
  138. v-if="totalNumber>10"
  139. background
  140. layout="prev, pager, next"
  141. :total="totalNumber"
  142. class="mt-4"
  143. :page-size="limit"
  144. @current-change="handleCurrentChange"
  145. />
  146. </div>
  147. </div>
  148. </div>
  149. </div>
  150. <Footer/>
  151. </template>
  152. <script setup>
  153. import { provide, reactive, ref,onMounted} from 'vue'
  154. import CentreNav from '@/components/User/CentreNav.vue'
  155. import indexHeaders from '@/components/Index/indexHeaders.vue'
  156. import LeftSliderBar from '@/components/Index/LeftSliderBar.vue'
  157. import RightSliderBar from '@/components/Index/RightSliderBar.vue'
  158. import CountDate from '@/components/Index/CountDate.vue'
  159. import Footer from '@/components/Tool/Footer.vue'
  160. import {detailTime, getUrlParams2, isLogin} from "@/utils";
  161. import {
  162. cancel_order,
  163. commit,
  164. creates,
  165. goods_cart_del, logistics_map,
  166. logistics_order,
  167. oderList,
  168. orderEval,
  169. user_lsp
  170. } from "@/api/menu1";
  171. import {useRouter} from "vue-router";
  172. import {router} from "@/router";
  173. import { ElMessage, ElMessageBox } from 'element-plus'
  174. let logistics=reactive({
  175. arr:[]
  176. })
  177. let userlogistics=reactive({
  178. arr:[]
  179. })
  180. //记录访问次数
  181. if(localStorage.getItem('USER__INFO__')){
  182. user_lsp().then((res)=>{
  183. })
  184. }
  185. let refs=ref([
  186. {"content":"快件到达【山东省临沂市兰山区】","time":"2022-11-12 10:19:00"},
  187. {"content":"快件到达【山东省临沂市兰山区】","time":"2022-11-12 10:19:00"}
  188. ])
  189. let expressFlag=ref(false)
  190. const guide = ref(['资讯中心'])
  191. let page=ref(1)
  192. let limit=ref(10)
  193. let totalNumber=ref(null)
  194. let guideIndex =ref(0)
  195. let goodsIds=ref('')
  196. let evaluateFlag=ref(false)
  197. let textarea=ref('')
  198. let orderIds=ref('')
  199. let status_index=ref('')
  200. const donwload=(href)=>{
  201. window.location.href=href;
  202. }
  203. const windowHref=(url,fileName)=>{
  204. const elink = document.createElement('a')
  205. elink.href = url
  206. elink.setAttribute('download', '合同')
  207. elink.style.display = 'none'
  208. document.body.appendChild(elink)
  209. setTimeout(() => {
  210. elink.click()
  211. document.body.removeChild(elink)
  212. }, 66)
  213. }
  214. const downloadIamge=(imgsrc,name)=> {
  215. //下载图片地址和图片名
  216. var image = new Image();
  217. // 解决跨域 Canvas 污染问题
  218. image.setAttribute("crossOrigin", "anonymous");
  219. image.onload = function() {
  220. var canvas = document.createElement("canvas");
  221. canvas.width = image.width;
  222. canvas.height = image.height;
  223. var context = canvas.getContext("2d");
  224. context.drawImage(image, 0, 0, image.width, image.height);
  225. var url = canvas.toDataURL("image/png"); //得到图片的base64编码数据
  226. var a = document.createElement("a"); // 生成一个a元素
  227. var event = new MouseEvent("click"); // 创建一个单击事件
  228. a.download = name || "photo"; // 设置图片名称
  229. a.href = url; // 将生成的URL设置为a.href属性
  230. a.dispatchEvent(event); // 触发a的单击事件
  231. };
  232. image.src = imgsrc;
  233. }
  234. // 改downs这个函数就行,downloadIamge(‘图片下载地址’,图片名字)
  235. const downs=(index)=> {
  236. // 主要是为了名字不重复
  237. var name = new Date().getTime();
  238. downloadIamge(txImg.value, `${name}`);
  239. }
  240. const evaluateNav = [
  241. {
  242. "name":"全部订单",
  243. "id":-1,
  244. },
  245. {
  246. "name":"待付款",
  247. "id":0,
  248. },
  249. {
  250. "name":"待发货",
  251. "id":5,
  252. },
  253. {
  254. "name":"待收货",
  255. "id":10,
  256. },
  257. {
  258. "name":"已完成",
  259. "id":20,
  260. },
  261. {
  262. "name":"已取消",
  263. "id":30,
  264. },
  265. {
  266. "name":"售后",
  267. "id":40,
  268. }
  269. ]
  270. const status= {
  271. "0" : '待支付',
  272. "5" : '待发货',
  273. "10" : '待收货',
  274. "20" : '已完成',
  275. "30" : '已取消',
  276. "40" : '退款退货',
  277. }
  278. const download=(url)=>{
  279. // console.error(url)
  280. if(url==null){
  281. ElMessage.error('发票尚未上传')
  282. return;
  283. }
  284. // window.open(url)
  285. //实例化一个img对象
  286. const img = new Image();
  287. //设置img的图片路径
  288. img.src = url;
  289. //设置跨域解决
  290. img.setAttribute('crossOrigin', 'Anonymous');
  291. //img加载完后处理
  292. img.onload = function() {
  293. //创建一个canvas对象
  294. const canvas = document.createElement('canvas')
  295. //把图片的宽度设为canves的宽度
  296. canvas.width = img.width
  297. //把图片的高度设为canves的高度
  298. canvas.height = img.height
  299. //创建一个2d画布
  300. const ctx = canvas.getContext('2d')
  301. // 将img中的内容画到画布上
  302. ctx.drawImage(img, 0, 0, canvas.width, canvas.height)
  303. // 将画布内容转换为Blob
  304. canvas.toBlob((blob) => {
  305. // blob转为同源url
  306. let blobUrl = window.URL.createObjectURL(blob)
  307. // 创建a链接
  308. const a = document.createElement('a')
  309. a.href = blobUrl
  310. a.download = ''
  311. // 触发a链接点击事件,浏览器开始下载文件
  312. a.click()
  313. })
  314. }
  315. }
  316. const handleCurrentChange=(size)=>{
  317. page.value=size
  318. orderLists()
  319. }
  320. let nacIndex = ref(0)
  321. const clickTap = (index,id) =>{
  322. expressFlag.value=false;
  323. lr_id.value=false
  324. nacIndex.value=index;
  325. status_index.value=id;
  326. page.value=1;
  327. setTimeout(()=>{
  328. orderLists()
  329. },50)
  330. }
  331. const newsList =reactive({
  332. arr:[]
  333. })
  334. const orderPay=(item)=>{
  335. // let data={
  336. // frm:1,
  337. // form:{},
  338. // }
  339. // for(let i=0;i<item.info.length;i++){
  340. // data.form[item.info[i].goods_sku_id]={num:item.info[i].num,num_install:item.info[i].num_install}
  341. // }
  342. // localStorage.setItem('order',JSON.stringify(data))
  343. // router.push('/user/order/submit')
  344. //
  345. const $router = useRouter()
  346. router.push({ path: '/user/order/pay', query: { id: item.id } })
  347. }
  348. const clickTaps=(goodsId,orderId)=>{
  349. goodsIds.value=goodsId
  350. orderIds.value=orderId
  351. evaluateFlag.value=true
  352. }
  353. const submits=()=>{
  354. if(textarea.value==''){
  355. ElMessage.error('请输入评价内容')
  356. return;
  357. }
  358. let data={
  359. goods_id:goodsIds.value,
  360. order_id:orderIds.value,
  361. content:textarea.value,
  362. }
  363. orderEval(data).then((res)=>{
  364. if(res.code==1){
  365. ElMessage.success('评价成功')
  366. orderLists()
  367. evaluateFlag.value=false
  368. }else{
  369. ElMessage.error(res.msg)
  370. }
  371. })
  372. }
  373. const commits=(id)=>{
  374. ElMessageBox({
  375. title: '提示',
  376. message: '是否确认收货?',
  377. showCancelButton: true,
  378. confirmButtonText: '确定',
  379. cancelButtonText: '取消',
  380. callback: (action) => {
  381. if (action === 'confirm') {
  382. commit({id:id}).then((res)=>{
  383. if(res.code==1){
  384. ElMessage.success('收货成功')
  385. orderLists()
  386. }else{
  387. ElMessage.error(res.msg)
  388. }
  389. })
  390. }
  391. }
  392. })
  393. }
  394. const cancels=(id)=>{
  395. ElMessageBox({
  396. title: '提示',
  397. message: '确认取消该订单吗?',
  398. showCancelButton: true,
  399. confirmButtonText: '确定',
  400. cancelButtonText: '取消',
  401. callback: (action) => {
  402. if (action === 'confirm') {
  403. cancel_order({id:id}).then((res)=>{
  404. if(res.code==1){
  405. ElMessage.success('取消成功')
  406. orderLists()
  407. }else{
  408. ElMessage.error(res.msg)
  409. }
  410. })
  411. }
  412. }
  413. })
  414. }
  415. onMounted(()=>{
  416. let url = getUrlParams2(window.location.href);
  417. if(url.id){
  418. nacIndex.value=url.id;
  419. status_index.value=url.statusId;
  420. setTimeout(()=>{
  421. orderLists()
  422. },50)
  423. }else{
  424. orderLists()
  425. }
  426. })
  427. let lr_id=ref("");
  428. const logistics_orders =(item)=>{
  429. // userlogistics.arr=item.logistics
  430. lr_id.value=item.id
  431. logistics_order({id:item.id}).then((res)=>{
  432. if(res.code==1){
  433. logistics.arr=res.data.logistics
  434. expressFlag.value=true
  435. }
  436. })
  437. }
  438. const openMap=(id)=>{
  439. logistics_map({id:id}).then((res)=>{
  440. if(res.code==1){
  441. let url=res.data.logistics.trailUrl
  442. var iTop = (window.screen.height-30-600)/2; //获得窗口的垂直位置;
  443. var iLeft = (window.screen.width-10-600)/2; //获得窗口的水平位置;
  444. if(url){
  445. window.open(url,"地图轨迹",'height='+600+',,innerHeight='+600+',width='+600+',innerWidth='+600+',top='+iTop+',left='+iLeft+',toolbar=no,menubar=no,scrollbars=auto,resizeable=no,location=no,status=no');
  446. }else{
  447. ElMessage.error('暂无地图轨迹')
  448. }
  449. }
  450. })
  451. }
  452. const orderLists=()=>{
  453. let data={
  454. page:page.value,
  455. limit:limit.value
  456. }
  457. if(status_index.value>=0){
  458. data.status=status_index.value
  459. }
  460. oderList(data).then((res)=>{
  461. if(res.code==1){
  462. newsList.arr=res.data.data
  463. totalNumber.value=res.data.total
  464. }
  465. })
  466. }
  467. const details=(id)=>{
  468. const $router=useRouter()
  469. router.push({path:'/user/order/detail',query:{id:id}})
  470. }
  471. isLogin()
  472. </script>
  473. <style lang="less" scoped >
  474. .fixeds{
  475. position: absolute;
  476. z-index: 111;
  477. //bottom: 0;
  478. left: 50%;
  479. top: 50%;
  480. margin-top:50px;
  481. margin-left: 50px;
  482. }
  483. .color-ss{
  484. background-color: #4171B3!important;
  485. }
  486. .border-s{
  487. width: 8px;
  488. height: 8px;
  489. background: #333333;
  490. border-radius: 50%;
  491. margin: 5px 5px 0 0;
  492. }
  493. .colors{
  494. color: #4171B3!important;
  495. }
  496. .logiFlexs{
  497. margin-bottom: 20px;
  498. .name-s{
  499. color: #333;
  500. width:350px;
  501. //height: 20px;
  502. line-height: 20px;
  503. margin-left: 5px;
  504. }
  505. }
  506. .name{
  507. border-bottom: 1px solid #999;
  508. padding-bottom:5px;
  509. margin-bottom: 15px;
  510. }
  511. .close-s{
  512. position: absolute;
  513. cursor: pointer;
  514. right: 20px;
  515. top: 10px;
  516. img{
  517. width: 20px;
  518. height: 20px;
  519. }
  520. }
  521. .logistts{
  522. position: relative;
  523. width: 388px;
  524. height: 400px;
  525. background: #FFFFFF;
  526. border: 1px solid #4171B3;
  527. overflow-x: auto;
  528. padding: 20px;
  529. border-radius:10px;
  530. margin-bottom: 100px;
  531. }
  532. .download{
  533. cursor: pointer;
  534. }
  535. .class0{
  536. color: #EA2813;
  537. }
  538. .class10{
  539. color:#2CBB00!important;
  540. }
  541. .class30{
  542. color: #999!important
  543. }
  544. .class5{
  545. color:#2CBB00!important;
  546. }
  547. .class20{
  548. color: #4171B3!important;
  549. }
  550. .buttons{
  551. cursor: pointer;
  552. width: 140px;
  553. height: 30px;
  554. background: #FFFFFF;
  555. color: #3171B8;
  556. font-size: 16px;
  557. text-align: center;
  558. line-height: 30px;
  559. border: 1px solid #3171B8;
  560. margin: 30px auto 20px auto;
  561. }
  562. /deep/ .el-dialog__header{
  563. text-align: center;
  564. }
  565. .login-wrapper{
  566. background-color: #F7F8FA;
  567. .register{
  568. display: flex;
  569. padding: 0 260px 40px 260px;
  570. .register-content{
  571. .tops{
  572. height: 50px;
  573. background: #F0F2F5;
  574. margin: 20px 20px 0 20px;
  575. display: flex;
  576. color: #333;
  577. font-size: 16px;
  578. line-height: 50px;
  579. .tops-order-text{
  580. width: 40%;
  581. text-align: center;
  582. padding: 0 20px;
  583. }
  584. .tops-order-text2 {
  585. width: 20%;
  586. text-align: center;
  587. }
  588. }
  589. .collect-tops{
  590. display: flex;
  591. font-size: 18px;
  592. color: #333;
  593. border-bottom: 1px solid #f4f4f4;
  594. height: 65px;
  595. line-height: 65px;
  596. padding: 0 20px;
  597. div{
  598. margin-right: 10px;
  599. }
  600. .icons{
  601. margin-top: 8px;
  602. img{
  603. width: 29px;
  604. height: 29px;
  605. }
  606. }
  607. }
  608. .evaluate-nav{
  609. display: flex;
  610. .evaluate-nav-view{
  611. cursor: pointer;
  612. padding: 0 30px;
  613. height: 50px;
  614. line-height: 50px;
  615. color: #333333;
  616. font-size: 18px;
  617. box-sizing: border-box;
  618. flex: 1;
  619. position: relative;
  620. .line{
  621. width: 80px;
  622. margin-right: 30px;
  623. text-align: center;
  624. height: 5px;
  625. background: linear-gradient(270deg, #FFFFFF 0%, #4171B3 100%);
  626. border-radius: 3px;
  627. position: absolute;
  628. left: 50%;
  629. margin-left:-60px;
  630. }
  631. }
  632. }
  633. background-color: #fff;
  634. margin: 10px 0 0 10px;
  635. width: 100%;
  636. min-height: 700px;
  637. .news-no{
  638. margin: 120px auto;
  639. text-align: center;
  640. font-size: 20px;
  641. color: #999;
  642. img{
  643. width: 262px;
  644. height: 196px;
  645. }
  646. }
  647. .list{
  648. height: 174px;
  649. background: #FFFFFF;
  650. border: 1px solid #D7DBE0;
  651. margin: 0 20px 10px 20px;
  652. position: relative;
  653. .evaluate-goods{
  654. display: flex;
  655. justify-content: space-between;
  656. height: 140px;
  657. .color-s{
  658. color: #333330;
  659. font-size: 18px;
  660. }
  661. .order-button{
  662. width: 100px;
  663. height: 36px;
  664. background: #4171B3;
  665. border-radius: 2px;
  666. line-height: 140px;
  667. cursor: pointer;
  668. }
  669. .order-money{
  670. width: 20%;
  671. // font-size: 15px;
  672. border-right: 1px solid #f4f4f4;
  673. // flex: 1;
  674. line-height: 140px;
  675. text-align: center;
  676. .size{
  677. color: #999;
  678. font-size: 16px;
  679. }
  680. .order-button{
  681. width: 100px;
  682. height: 36px;
  683. background: #4171B3;
  684. border-radius: 2px;
  685. text-align: center;
  686. line-height: 36px;
  687. color: #fff;
  688. font-size: 16px;
  689. margin: 0 auto;
  690. }
  691. }
  692. .order-info{
  693. display: flex;
  694. // justify-content: center;
  695. padding: 20px;
  696. align-items: center;
  697. border-right: 1px solid #f4f4f4;
  698. width: 40%;
  699. // padding: 20px;
  700. .order-img{
  701. img{
  702. width: 100px;
  703. height: 100px;
  704. }
  705. }
  706. .order-name{
  707. font-size: 15px;
  708. color: #333;
  709. margin-left: 10px;
  710. // margin-top: 30px;
  711. height: 37px;
  712. }
  713. }
  714. }
  715. .list-tops{
  716. height: 34px;
  717. background: #F0F2F5;
  718. display: flex;
  719. line-height: 34px;
  720. padding: 0 70px 0 20px;
  721. .list-time{
  722. color: #999;
  723. font-size: 14px;
  724. }
  725. .orderNo{
  726. color: #999;
  727. font-size: 14px;
  728. margin-left: 20px;
  729. }
  730. .money-text{
  731. color: #333333;
  732. margin-left: 160px;
  733. font-size: 16px;
  734. }
  735. .money-status{
  736. color: #333333;
  737. margin-left: 190px;
  738. font-size: 16px;
  739. }
  740. .money-oper{
  741. color: #333333;
  742. margin-left: 180px;
  743. font-size: 16px;
  744. }
  745. }
  746. .list-right{
  747. text-align: right;
  748. .list-btn{
  749. color: #4171B3;
  750. cursor: pointer;
  751. font-size: 16px;
  752. }
  753. .time{
  754. color: #999;
  755. font-size: 16px;
  756. }
  757. }
  758. .list-cen{
  759. flex: 1;
  760. .content{
  761. color: #999;
  762. font-size: 16px;
  763. margin-left: 20px;
  764. }
  765. .name{
  766. color: #333;
  767. font-size: 20px;
  768. }
  769. }
  770. .list-img img{
  771. width: 90px;
  772. height: 70px;
  773. }
  774. }
  775. }
  776. .register-left{
  777. width: 320px;
  778. height: 100px;
  779. background: #FFFFFF;
  780. border-radius: 2px;
  781. margin-top: 10px;
  782. text-align: center;
  783. .colorStyle{
  784. color: #4B71AE!important;
  785. }
  786. .register-list{
  787. cursor: pointer;
  788. height: 100px;
  789. line-height: 100px;
  790. color: #333;
  791. font-size: 22px;
  792. }
  793. }
  794. }
  795. }
  796. </style>