<template>
<div>
<div class="content clearfix" v-on:click="goorderingDetail(v)" v-for="(v,index) in anylist" :key="index">
<div class="clearfix">
<div class="fl dingnumber">订单号&nbsp;&nbsp;<span>{{v.orderNum}}</span></div>
<div class="fr state">{{v.state}}</div>
</div>
<div class="clearfix receive">
<div class="fl">收</div>
<div class="fr add reAdd">{{v.receiveAdd}}</div>
</div>
<div class="clearfix send">
<div class="fl">发</div>
<div class="fr add sAdd">{{v.sendAdd}}</div>
</div>
<div class="date fl">2018年9月28日&nbsp;&nbsp;&nbsp;&nbsp;12:00</div>
<div class="fr sure" v-on:click.stop="gosureReceive(v)">确认取件</div>
</div>
</div>
</template> <script>
import $ from 'jquery'
export default {
name: 'ordering',
data () {
return {
anylist: []
}
},
mounted () {
this.ready()
},
methods: {
ready: function () {
$.ajax({
type: 'GET',
url: './../../../static/ing.json',
data: {},
dataType: 'json'
}).then(res => {
// console.log(res)
// console.log(res.data)
this.anylist = res.data
})
.catch(error => {
console.log(error)
})
},
goorderingDetail: function (v) {
// console.log(v.receiveAdd)
// console.log(v.sendAdd)
/* 获取当前点击内容的收件发件地址 */
var IreAdd = v.receiveAdd
var IseAdd = v.sendAdd
var IOrderNum = v.orderNum
sessionStorage.setItem('IReAdd', JSON.stringify(IreAdd))
sessionStorage.setItem('ISeAdd', JSON.stringify(IseAdd))
sessionStorage.setItem('IOrderNum', JSON.stringify(IOrderNum))
this.$router.push({path: '/orderingDetail'})
},
gosureReceive: function (v) {
// console.log(v.receiveAdd)
// console.log(v.sendAdd)
/* 获取当前点击内容的收件发件地址 */
var IreAdd = v.receiveAdd
var IseAdd = v.sendAdd
sessionStorage.setItem('IReAdd', JSON.stringify(IreAdd))
sessionStorage.setItem('ISeAdd', JSON.stringify(IseAdd))
this.$router.push({path: '/sureReceive'})
}
}
}
</script> <style scoped>
.content{
width: 96%;
margin: auto;
padding: 0.3rem;
background: #ffffff;
box-shadow: 5px 5px 5px #eae8e8;
margin-top: 0.5rem;
}
.dingnumber{
font-size: 0.8rem;
line-height: 1.7rem;
}
.state{
font-size: 1rem;
letter-spacing: 1px;
color: #ff7c1d;
margin-right: 0.5rem;
font-weight: bold;
}
.receive,.send{
font-size: 0.9rem;
font-weight: bold;
color: #ff7c1d;
margin-top: 1rem;
}
.add{
width: 85%;
vertical-align: bottom;
word-break:keep-all;/* 不换行 */
white-space:nowrap;/* 不换行 */
overflow:hidden;/* 内容超出宽度时隐藏超出部分的内容 */
text-overflow:ellipsis;/* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用。*/
}
.date{
text-align: left;
font-size: 0.8rem;
padding: 0.2rem;
margin-top: 2rem;
}
.sure{
padding: 0.5rem 1rem 0.5rem 1rem;
border: 1.5px solid #ff7c1d;
letter-spacing: 1px;
border-radius: 0.3rem;
margin-top: 0.9rem;
margin-right: 0.3rem;
font-weight: bold;
color: #ff7c1d;
font-size: 0.9rem;
z-index: 1000;
}
</style>

上面代码中,第3行和第17行:

第3行和第17行函数都包含在v-for循环中,参数中传入的参数v都可以获取到数据集合

第50和第62行在函数中传入v即可获取到对应的值(但是需要在定义函数和使用函数时都传入参数v才能用)

vue中v-for的用法以及参数的作用的更多相关文章

  1. 详解Vue中watch的高级用法

    我们通过实例代码给大家分享了Vue中watch的高级用法,对此知识点有需要的朋友可以跟着学习下. 假设有如下代码: <div> <p>FullName: {{fullName} ...

  2. vue 中 命名视图的用法

    今天主要记录  vue中命名视图的用法 先奉上官网网址:https://router.vuejs.org/zh/guide/essentials/named-views.html 一般情况下,一个页面 ...

  3. vue中watch的详细用法

    在vue中,使用watch来响应数据的变化.watch的用法大致有三种.下面代码是watch的一种简单的用法: <input type="text" v-model=&quo ...

  4. vue中watch的详细用法(转载)

    在vue中,使用watch来响应数据的变化.watch的用法大致有三种.下面代码是watch的一种简单的用法: <input type="text" v-model=&quo ...

  5. vue中router-link的详细用法

    官网文档地址:https://router.vuejs.org/zh/api/#to 今天项目突然有需求,让vue中的一个页面跳转到另一个页面 // 字符串 <router-link to=&q ...

  6. 【Vue中的坑】路由相同参数不同无法触发路由

    场景: vue实现导航栏,二级导航栏跳转到相同页面,通过参数来实现到该页面后,根据参数来滚动到对应到位置 网上的解决方法: 通常情况下我们喜欢设置keepAlive 包裹 router-view &l ...

  7. vue中this.$set的用法

    之前了解这个方法的时候,感觉这一辈子也用不到这个方法,因为当时没有应用场景,但是还真有用的时候,我相信你们也有用到时候. 从三个方面给大家说一下这个this.$set: 1.this.$set实现什么 ...

  8. vue中$ref的基本用法

    1.使用在一般的标签上 <div id="app"> <input ref="count" type="text" v-m ...

  9. vue中watch函数的用法

    vue中watch函数: 不仅可以判断路由变化(上篇博客有介绍),还可以判断数据的变化 (1):首先写watch函数 (2):在data里定义值 (3):在methods里写方法 (4):使用值

  10. Vue中echarts的基本用法

    前言:同大多数的前端框架一样,先读官网的使用方法.学会基本使用后,在实例中找到自己想要demo.拿过来改一改,一个echarts图表就形成,毕竟人家做就是为了方便使用. 我是在vue中下面直接使用的e ...

随机推荐

  1. 常见的C字符串处理函数的源代码

    #include <stdio.h> #include <assert.h> char *strcpy(char *strDest,const char *strSrc) // ...

  2. Gym - 100625D Destination Unknown 最短路

    http://codeforces.com/gym/100625/attachments/download/3213/2013-benelux-algorithm-programming-contes ...

  3. Linux系统病毒防治

    Linux系统病毒防治 一.Linux病毒的历史 1996年出现的Staog是Linux系统下的第一个病毒,它出自澳大利亚一个叫VLAD的组织.Staog病毒是用汇编语言编写,专门感染二进制文件,并通 ...

  4. 在C# 获取当前应用网址

    /// <summary>        /// 获取当前应用网址        /// </summary>        /// <returns></r ...

  5. Beautiful Soup的使用

    Beautiful Soup简单实用,功能也算比较全,之前下载都是自己使用xpath去获取信息,以后简单的解析可以用这个,方便省事. Beautiful Soup 是用 Python 写的一个 HTM ...

  6. du---是对文件和目录磁盘使用的空间查看

    du命令也是查看使用空间的,但是与df命令不同的是Linux du命令是对文件和目录磁盘使用的空间的查看,还是和df命令有一些区别的. 语法 du [选项][文件] 选项 -a或-all 显示目录中个 ...

  7. 【python 设计模式】单例模式

    单例模式(Singleton Pattern)是一种常用的软件设计模式,该模式的主要目的是确保某一个类只有一个实例存在.当你希望在整个系统中,某个类只能出现一个实例时,单例对象就能派上用场. 比如,某 ...

  8. Swift学习笔记(7)--控制流

    1.For循环 //1.条件递增 for var index = 0; index < 3; ++index { println("index is \(index)") } ...

  9. 【转】flex中的labelFunction(combox和dataGrid)

    Flex中,对于显示一个字段,只需要指定对应字段属性给labelField即可,当需要上述所需要的功能的时候就得做个转换了,在Flex的基于List的组件都有一个labelFunction方法能很简单 ...

  10. CSUOJ 1541 There is No Alternative

    There is No Alternative Time Limit: 3000ms Memory Limit: 262144KB This problem will be judged on Aiz ...