text.vue 2.81 KB
Newer Older
liujinsa 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 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
<!-- 文本
 -->
<template>
  <div class="text-text">
    <p
      :style="{
                    '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,
                    'fontSize':getFontSize}"
      @click="itemClick()"
    >{{getContent}}</p>
  </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;
      }
    },
    getFontSize() {
      if (this.datas.componentData) {
        return this.datas.componentData.initcharSize + "em";
      }
    }
  },
  methods: {
    itemClick() {
      app.$themeToLink(this.datas.componentData.link);
    }
  },
  mounted() {}
};
</script>

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