fa2487953f6a63130e88e7495fa6df2e.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php /*a:1:{s:37:"./app/component/view/text/design.html";i:1583551606;}*/ ?>
  2. <nc-component v-bind:data="data[index]" class="component-title" v-bind:style="{ backgroundColor : nc.backgroundColor }">
  3. <!-- 预览 -->
  4. <template slot="preview">
  5. <h2 v-show="nc.title" v-bind:style="{ textAlign :nc.textAlign, fontSize : nc.fontSize + 'px' }">{{ nc.title }}</h2>
  6. <p v-show="nc.subTitle" v-bind:style="{ textAlign :nc.textAlign, fontSize : nc.fontSize-4 + 'px' }">{{ nc.subTitle }}</p>
  7. </template>
  8. <!-- 编辑 -->
  9. <template slot="edit">
  10. <div class="layui-form-item">
  11. <label class="layui-form-label sm">文本名</label>
  12. <div class="layui-input-block">
  13. <input type="text" v-model="nc.title" v-bind:id="'title_'+index" placeholder="请输入文本" class="layui-input">
  14. </div>
  15. </div>
  16. <div class="layui-form-item">
  17. <label class="layui-form-label sm">副文本</label>
  18. <div class="layui-input-block">
  19. <input type="text" v-model="nc.subTitle" v-bind:id="'subTitle_'+index" placeholder="请输入副文本" class="layui-input">
  20. </div>
  21. </div>
  22. <font-size v-bind:data="{ value : nc.fontSize }"></font-size>
  23. <text-align></text-align>
  24. <color v-bind:data="{ field : 'backgroundColor', 'label' : '背景颜色' }"></color>
  25. <nc-link v-bind:data="{ field : nc.link }"></nc-link>
  26. <template v-if="nc.lazyLoad">
  27. <text-empty></text-empty>
  28. </template>
  29. </template>
  30. <!-- 资源 -->
  31. <template slot="resource">
  32. <css src="<?php echo htmlentities($resource_path); ?>/text/css/design.css"></css>
  33. <js src="<?php echo htmlentities($resource_path); ?>/text/js/design.js"></js>
  34. </template>
  35. </nc-component>