美文网首页
生命周期

生命周期

作者: 逆流成河wsy | 来源:发表于2017-11-28 10:04 被阅读2次

<template>
<section id="v-detail" v-if="detailSettings">
<div v-for="(section,index) in detailSettings" :key="index" class="detail-block">
<h3 class="h3-title">{{section.label}}</h3>
<div v-for="(item,index) in section.items" :key="index" class="detail-content">
<el-form label-position="right" size="mini" label-width="180px" class="table-expand">
<el-form-item :label="item.name+':'">
<span>{{detail[item.fieldName]}}</span>
</el-form-item>
</el-form>


</div>
</div>
</section>
</template>

<script>
export default {
name: 'vDetail',
props: {
detailSettings: {
type: Array,
require: true
},
detailData: {
type: Object,
require: true
}
},
data () {
return {
detail: null
}
},
created () {
this.upData()
},
methods: {
interaction (data) {
this.$emit("tudu", data)
},
upData () {
let tmpSetting = {}
this.detailSettings.forEach((item) => {
item.items.forEach((item) => {
if (this.detailData && this.detailData[item.fieldName]) {
tmpSetting[item.fieldName] = this.detailData[item.fieldName]
} else {
tmpSetting[item.fieldName] = null
}
})
})
this.detail = tmpSetting
console.log(tmpSetting)
}
},
watch: {
detailSettings () {
this.updata()
}
}
}
</script>

<style lang='scss'>
.detail-block {
border-bottom: 1px solid $color-border;
.h3-title {
margin-top: 10px;
}
.detail-content {
margin-top: 15px;
margin-bottom: 5px;
}
}

.item-interaction {
cursor: pointer;
color: #409eff;
}

.table-expand label {
color: #99a9bf;
}

.table-expand .el-form-item {
margin-right: 0;
margin-bottom: 0;
width: 50%;
}
</style>

相关文章

  • Vue生命周期

    什么是生命周期方法?生命周期钩子=生命周期函数=生命周期事件 Vue生命周期方法分类  创建期间的生命周期方法: ...

  • Activity,Fragment,Service生命周期图

    Activity生命周期 Fragment生命周期 Service生命周期

  • 10,vue生命周期

    生命周期钩子=生命周期函数=生命周期事件 根据生命周期的不同分为三类: 创建阶段的生命周期 运行阶段的生命周期 销...

  • 微信小程序生命周期的记录

    小程序中生命周期分为3类: 应⽤的生命周期 页面的生命周期 组件的生命周期 一、生命周期 1. 应⽤的生命周期[h...

  • Lifecycle 生命周期源码解析

    目录: 什么生命周期 什么是生命周期感知型组件 Activity是如何把生命周期传给生命周期感知组件的 生命周期 ...

  • Vue生命周期

    Vue生命周期详解 一、Vue生命周期 与 作用 (生命周期钩子就是生命周期函数) (1)Vue生命周期:每个Vu...

  • uni-app微信小程序开发 - 生命周期

    uni-app的生命周期分为应用生命周期和页面生命周期还有组件生命周期。 应用生命周期[https://uniap...

  • 【小程序】生命周期

    小程序生命周期分为两类:应用生命周期和页面生命周期。 应用生命周期 应用生命周期包括onLaunch、onShow...

  • Java基础知识整理3——Android篇

    一、activity生命周期,fragment生命周期,broadcastReceiver生命周期,service...

  • Fragment的生命周期

    Fragment生命周期 宿主MainActivity生命周期 Fragmengs生命周期: activity_f...

网友评论

      本文标题:生命周期

      本文链接:https://www.haomeiwen.com/subject/txdsbxtx.html