<!--首页管理-->
<template><div><el-card><h1>等待处理</h1><div style="width: 100%;height: 200px"><swiper  ref="mySwiper" ><swiper-slide v-for="(item,index) in task"><el-button style="float: right" type="primary" @click="ListClick">查看更多</el-button><h1>订单名称:{{item.name}}</h1><p>创建时间:{{item.created_at}}</p><p>账号:{{item.name}}</p><p>状态:{{item.status_name}}</p><el-button type="primary" style="float: right" @click="ListClick">审核</el-button><!-- Add Pagination --></swiper-slide><hr><div class="swiper-pagination" slot="pagination"></div></swiper></div></el-card><el-card><h1 style="float: left">我的订单</h1><el-button style="float: right" type="primary" @click="ListClick" >订单列表</el-button><ul  style="display: flex;justify-content: center"><li style="float: left;list-style: none"><p>待审核:</p><h1>{{task_status.completed}}</h1></li><li style="float: left;list-style: none"><p>待修改:</p><h1>{{task_status.release}}</h1></li><li style="float: left;list-style: none"><p>进行中:</p><h1>{{task_status.returned}}</h1></li><li style="float: left;list-style: none"><p>待结算:</p><h1>{{task_status.underway}}</h1></li><li style="float: left;list-style: none"><p>已完成:</p><h1>{{task_status.wait_confirm}}</h1></li><li style="float: left;list-style: none"><p>已取消:</p><h1>{{task_status.wait_relevance}}</h1></li></ul><!--  <div style="float: left"><img src="./geyao.png" style="width: 40px;height: 40px" alt=""><p>hi暖视频</p></div><div style="float: left"><img src="./geyao.png" style="width: 40px;height: 40px" alt=""><p>hi暖视频</p></div><div style="float: left;"><img src="./geyao.png" style="width: 40px;height: 40px" alt=""><p>hi暖视频</p></div>--></el-card><el-card><h1 style="float: left">我的订单</h1><el-button style="float: right" type="primary" @click="TaskClick">任务列表</el-button><ul  style="display: flex;justify-content: center"><li style="float: left;list-style: none"><p>待审核:</p><h1>{{task_status.completed}}</h1></li><li style="float: left;list-style: none"><p>待修改:</p><h1>{{task_status.release}}</h1></li><li style="float: left;list-style: none"><p>进行中:</p><h1>{{task_status.returned}}</h1></li><li style="float: left;list-style: none"><p>待结算:</p><h1>{{task_status.underway}}</h1></li><li style="float: left;list-style: none"><p>已完成:</p><h1>{{task_status.wait_confirm}}</h1></li><li style="float: left;list-style: none"><p>已取消:</p><h1>{{task_status.wait_relevance}}</h1></li></ul><!--  <div style="float: left"><img src="./geyao.png" style="width: 40px;height: 40px" alt=""><p>hi暖视频</p></div><div style="float: left"><img src="./geyao.png" style="width: 40px;height: 40px" alt=""><p>hi暖视频</p></div><div style="float: left;"><img src="./geyao.png" style="width: 40px;height: 40px" alt=""><p>hi暖视频</p></div>--></el-card></div>
</template><script>
import { Swiper, SwiperSlide, directive } from 'vue-awesome-swiper'
// import style (>= Swiper 6.x)
import 'swiper/swiper-bundle.css'
// import style (<= Swiper 5.x)
import 'swiper/swiper.scss'
import {getAction} from "@/api";export default {name: "Home",components: {Swiper,SwiperSlide},directives: {swiper: directive},data(){return{task:[],task_status:{}}},methods:{ListClick(){this.$router.push('/order')},TaskClick(){this.$router.push('/task')}},created() {getAction("/home/business").then(res=>{console.log(res)this.task=res.data.taskthis.task_status=res.data.task_status})}
};
</script>
<style scoped></style>

工作108:swiper使用相关推荐

  1. 2022-11-23 工作记录--Swiper/CSS-改变swiper滑动方向 + 修改文字的方向——解决 swiper反方向滑动时,超出一行省略号处理的文字也呈反方向

    [1]Swiper-改变swiper滑动方向 一.从左往右滑动(默认)⭐️ 在swiper-container的div上加dir="ltr",即 left to right. 但从 ...

  2. 工作108:精准的v-for和if

  3. 工作108:vue里面wangEdit编辑器使用

    WangEdit使用 <template lang="html"><div class="editor"><!--定义的为表头的属 ...

  4. [转]综述论文翻译:A Review on Deep Learning Techniques Applied to Semantic Segmentation

    近期主要在学习语义分割相关方法,计划将arXiv上的这篇综述好好翻译下,目前已完成了一部分,但仅仅是尊重原文的直译,后续将继续完成剩余的部分,并对文中提及的多个方法给出自己的理解. _论文地址:htt ...

  5. D3临摹作业_分词与词云可视化(西安交大国家艺术基金数据可视化培训第28天)

    第十二章  分词与词云可视化 第一节 词云图 概念:一种富文本信息可视化技术,通过布局算法用文字大小表示词频,辅以多种颜色,直观的反映词组重要性差异,展示文本关键摘要信息.完整的词云分析包括:分词.词 ...

  6. Image Segmentation Using Deep Learning: A Survery

    图像分割综述–论文翻译    论文地址:https://arxiv.org/pdf/2001.05566.pdf 图像分割综述论文 图像分割综述--论文翻译 摘要 介绍 深度神经网络的介绍 Convo ...

  7. 综述论文翻译:A Review on Deep Learning Techniques Applied to Semantic Segmentation

    综述论文翻译:A Review on Deep Learning Techniques Applied to Semantic Segmentation 近期主要在学习语义分割相关方法,计划将arXi ...

  8. 应用于语义分割问题的深度学习技术综述(语义分割综述)

    应用于语义分割问题的深度学习技术综述 基本介绍 摘要 1 .引言 2.术语及背景概念 2.1 常见的深度网络架构 2.1.1 AlexNet 2.1.2 VGG 2.1.3 GoogLeNet 2.1 ...

  9. 应用于语义分割问题的深度学习技术综述

    论文地址:https://arxiv.org/abs/1704.06857 应用于语义分割问题的深度学习技术综述 摘要 计算机视觉与机器学习研究者对图像语义分割问题越来越感兴趣.越来越多的应用场景需要 ...

最新文章

  1. redis python zset
  2. tcp协议timestamp字段导致问题分析
  3. mongodb java 学习_MongoDB学习(四):通过Java使用MongoDB
  4. 如何快速上手mysql_如何快速上手数据库操作?
  5. cdh用户权限_0617-使用Sentry给Solr的collection赋予Query权限后查询异常分析
  6. javascript --- 防抖与节流
  7. android4.1 l36h,索尼 L36h跌破3K 升Android 4.3机型推荐(6)-搜狐数码
  8. [Python] 绘制Python代码的函数调用关系:graphviz+pycallgraph
  9. 海康网络摄像头添加到萤石云
  10. matlab 16qam误码率图,16qam理论误码率与实际误码率matlab仿真程序.docx
  11. UDA/语义分割-ColorMapGAN: Unsupervised Domain Adaptation for Semantic Segmentation Using Color Mapping G
  12. 2200p如何连接wifi打印_柯尼卡美能达2200P打印机使用介绍
  13. 【转】Android地图开发之OpenStreetMap基础教程
  14. Java 获取手机号码归属地以及运营商
  15. python缩小图片_python如何缩小图像
  16. Digital Signal Processing 数字信号处理
  17. 使用photoshop2021对有阴影的背光摄影照片进行调色修改
  18. SPSS纵向数据格式转换为横向数据格式时变量不是自己想要
  19. switch中的参数类型
  20. RSD 教程 —— §2.3  窗口布局

热门文章

  1. python:当文件中出现特定字符串时执行robot用例
  2. seaborn线性关系数据可视化:时间线图|热图|结构化图表可视化
  3. JavaSE第九天20160815
  4. PHP的curl实现get,post 和 cookie(几个实例)
  5. StreamWriter打开文件报错:”不支持给定路径的格式。“
  6. 软件开发人员想找的工作,随便聊聊,娱乐大家,请补充补充
  7. html5中3个盒子怎样设置,Web前端开发任务驱动式教程(HTML5+CSS3+JavaScript)任务10 盒子模型及应用.pptx...
  8. tensorrt轻松部署高性能dnn推理_实战教程:TensorRT中递归神经网络的介绍(中文字幕)...
  9. java邮件实例_java邮件小实例
  10. yaahp层次分析法步骤_综合评价方法之层次分析法,选择再也难不倒你!