esignPicture.Vue 1.19 KB
Newer Older
Nature's avatar
Nature committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
/**
* @Author Sean
* @Date 2019/5/14
*/
<template>
    <h-view class="public-style" style="height: 100%">
        <h-content>
          <div class="esign-wrap" v-for="(list,index) in pirtureList">
            <img :src="list.pic">
          </div>
        </h-content>
    </h-view>
</template>

<script>
    export default {
        data() {
            return {
               pirtureList:this.$route.params.pirtureList
             /* pirtureList:[
                {"pic":"http://hlsapp.hand-china.com/file/esign/1234/temp/temp_1.png"},
                {"pic":"http://hlsapp.hand-china.com/file/esign/1234/temp/temp_2.png"},
                {"pic":"http://hlsapp.hand-china.com/file/esign/1234/temp/temp_3.png"},
                {"pic":"http://hlsapp.hand-china.com/file/esign/1234/temp/temp_4.png"}
                ]*/
            }
        },
        created: function () {
        },
        mounted: function () {
        },
        updated: function () {
        },
        destroyed: function () {
        },
        methods: {}
    }
</script>

<style scoped lang="less" rel="stylesheet">
    .public-style {
        .content {
          img{
            width: 100%;
          }
        }
    }
</style>