contact.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <style>
  2. #contact-fragment .contact-title h3 {
  3. font-size: 24px;
  4. color: rgb(50,50,50);
  5. }
  6. #contact-fragment .contact-text {
  7. font-size: 14px;
  8. color: rgb(50,50,50);
  9. margin-top: 10px;
  10. line-height: 28px;
  11. }
  12. </style>
  13. <div id="contact-fragment">
  14. <div class="container" style="margin-top: 30px;">
  15. <div class="contact-title">
  16. <h3>
  17. 联系我们
  18. </h3>
  19. </div>
  20. <div ng-if="storeInfo.enterprise">
  21. <div class="contact-text">
  22. <div ng-bind="storeInfo.enterprise.enName">深圳市华商龙商务互联科技有限公司</div>
  23. <div ng-if="storeInfo.enterprise.enTel.length >0">电话:<span ng-bind="storeInfo.enterprise.enTel">0755-26038000/26038047/26038008/86140880</span></div>
  24. <div ng-if="storeInfo.enterprise.enFax.length > 0">传真:<span ng-bind="storeInfo.enterprise.enFax">0755-26038111</span></div>
  25. <div ng-if="storeInfo.enterprise.enPhone.length > 0">手机:<span ng-bind="storeInfo.enterprise.enPhone"></span></div>
  26. <div ng-if="storeInfo.enterprise.enWeixin.length > 0">微信:<span ng-bind="storeInfo.enterprise.enWeixin"></span></div>
  27. <div ng-if="storeInfo.enterprise.enQQ.length > 0">QQ:<span ng-bind="storeInfo.enterprise.enQQ"></span></div>
  28. <div ng-if="storeInfo.enterprise.address.length >0">地址:<span ng-bind="storeInfo.enterprise.address">深圳市南山区科技园科技南五路英唐大厦一楼</span></div>
  29. </div>
  30. </div>
  31. </div>
  32. </div>