text.vue 3.09 KB
Newer Older
liujinsa committed
1 2 3 4 5
<!-- 文本
 -->
<template>
  <div class="text-text">
    <p
李嘉林 committed
6
    :style="{
李嘉林 committed
7
      'white-space': 'pre-wrap',
李嘉林 committed
8 9 10 11 12 13 14 15 16 17 18 19 20
      'word-breakword-break':'break-all',
      'color':getfontsizeColor,
      'background-color':getbackgroundColor,
      'padding-top':getPaddingList[0]['value']+'px',
      'padding-bottom':getPaddingList[1]['value']+'px',
      'padding-left':getPaddingList[2]['value']+'px',
      'padding-right':getPaddingList[3]['value']+'px',
      'textAlign':getAlign,
      'line-height':lineHeight,
      'fontSize':getFontSize
    }"
    @click="itemClick()"
  >{{getContent}}</p>
liujinsa committed
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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
  </div>
</template>

<script>
const app = getApp()
export default {
  name: "text-text",
  props: {
     datas: {
      type: Object,
      default: function() {
        return {
          id: "",
          pageCode: 0,
          pageType: 0,
          queueNumber: 0,
          componentName: "文本",
          componentCode: "text-text",
          code: 1,
          componentData: {
            content:
              "这里是内容 可以编写需要的内容 测试测试测试测试测试测试测试测试测试",
            link: {
              name:'',
              link:''
            },
            fontColor: "#000000",
            backgroundColor: "",
            initcharAlign: "center",
            initcharSize: 1, //文字默认
            paddingList: [
              {
                name: "上",
                value: 20
              },
              {
                name: "下",
                value: 20
              },
              {
                name: "左",
                value: 50
              },
              {
                name: "右",
                value: 50
              }
            ]
          }
        };
      }
    }
  },
  data() {
    return {};
  },
  created() {

  },
  onLoad(){
    console.log(this.datas,'iu')
  },
  computed: {
    getPaddingList() {
      return this.datas.componentData.paddingList;
    },
    getfontsizeColor() {
      if (this.datas.componentData) {
        return this.datas.componentData.fontColor;
      }
    },
    getAlign() {
      if (this.datas.componentData) {
        return this.datas.componentData.initcharAlign;
      }
    },
    getContent() {
      if (this.datas.componentData) {
        return this.datas.componentData.content;
      }
    },
    getbackgroundColor() {
      if (this.datas.componentData) {
        return this.datas.componentData.backgroundColor;
      }
    },
李嘉林 committed
107 108 109 110 111 112
    customSize () {
      return this.datas.componentData.customSize || 12;
    },
    lineHeight () {
      return this.datas.componentData.lineHeight || 1;
    },
liujinsa committed
113 114
    getFontSize() {
      if (this.datas.componentData) {
李嘉林 committed
115 116 117
        if(this.datas.componentData.initcharSize == 0) {
          return this.customSize + "px";
        }
liujinsa committed
118 119 120 121 122
        return this.datas.componentData.initcharSize + "em";
      }
    }
  },
  methods: {
侯体倬 committed
123 124
    itemClick(e) {
      app.trackCpn(e, this.datas.componentName, this.datas.componentData)
liujinsa committed
125 126 127 128 129 130 131 132 133 134 135 136 137
      app.$themeToLink(this.datas.componentData.link);
    }
  },
  mounted() {}
};
</script>

<style lang="scss" scoped>
.text-text {
  font-size: 16px;
}
</style>