module0.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <html lang="zh-CN">
  2. <head>
  3. <meta charset="UTF-8">
  4. <title>平台店铺名称</title>
  5. <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  6. <meta name="apple-mobile-web-app-capable" content="no">
  7. <meta name="format-detection" content="telephone=no">
  8. <meta http-equiv="X-UA-Compatible" content="”IE=edge,chrome=1″/">
  9. <style type="text/css">
  10. .table {
  11. width: 700px;
  12. display: block;
  13. margin: 0 auto;
  14. }
  15. .table table td {
  16. line-height: 68px;
  17. }
  18. .table table td,
  19. .table table th {
  20. padding: 0 15px;
  21. font-size: 16px;
  22. }
  23. .table table {
  24. position: relative;
  25. border-collapse: collapse;
  26. width: 100%;
  27. }
  28. .table .title {
  29. position: relative;
  30. display: flex;
  31. justify-content: center;
  32. font-size: 25px;
  33. font-weight: bold;
  34. padding: 10px 0;
  35. }
  36. .order-num {
  37. position: absolute;
  38. top: 10px;
  39. right: 10px;
  40. }
  41. .content {
  42. font-weight: bold;
  43. }
  44. .product-info {
  45. display: flex;
  46. padding: 15px 0;
  47. }
  48. .product-img {
  49. width: 220px;
  50. height: 220px;
  51. margin-right: 15px;
  52. }
  53. .other-info p {
  54. line-height: 30px;
  55. }
  56. .contact {
  57. text-align: center;
  58. }
  59. </style>
  60. </head>
  61. <body id="body-box">
  62. <div class="table">
  63. <table border="1" cellspacing="0">
  64. <tbody>
  65. <tr>
  66. <td colspan="4">
  67. <div class="title">
  68. <div>平台店铺名称(配送单)</div>
  69. <div class="order-num">订单号:M1</div>
  70. </div>
  71. </td>
  72. </tr>
  73. <tr>
  74. <td>收货人</td>
  75. <td>李女士</td>
  76. <td>联系电话</td>
  77. <td>13867810912</td>
  78. </tr>
  79. <tr>
  80. <td>配送时间</td>
  81. <td colspan="3" class="content">
  82. <span>立即发单</span>
  83. 2021年08月08日 08时08分
  84. </td>
  85. </tr>
  86. <tr class="tr-goods">
  87. <td style="line-height: 1.5">商品信息</td>
  88. <td colspan="3">
  89. <div class="product-info">
  90. <img class="product-img" src="https://static.maiyatian.com/saas/other/preview.jpeg">
  91. <div class="other-info">
  92. <p class="product-name content">这里是商品标题</p>
  93. <p class="product-tips">这里是商品的描述信息</p>
  94. </div>
  95. </div>
  96. </td>
  97. </tr>
  98. <tr class="tr-address">
  99. <td width="18%">配送地址</td>
  100. <td class="content" colspan="3">
  101. 这里是顾客收货地址
  102. </td>
  103. </tr>
  104. <tr>
  105. <td>备注信息</td>
  106. <td class="content" colspan="3">
  107. 顾客备注显示在这里
  108. </td>
  109. </tr>
  110. <tr>
  111. <td>贺卡祝福语</td>
  112. <td class="content" colspan="3">这里是贺卡内容</td>
  113. </tr>
  114. <tr>
  115. <td class="content contact" colspan="4">如在制作,配送环节出现问题或疑问,欢迎随时致电: 18601227599</td>
  116. </tr>
  117. </tbody>
  118. </table>
  119. </div>
  120. </body>
  121. </html>