compareList.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <template>
  2. <div class="com-main com-width-1400 com-margin-auto">
  3. <el-breadcrumb separator-class="el-icon-arrow-right">
  4. <el-breadcrumb-item :to="{ path: '/' }">Home</el-breadcrumb-item>
  5. <el-breadcrumb-item>Product Comparisons</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <div class="compare-title">
  8. <h1>Product Comparisons</h1>
  9. <div class="line"></div>
  10. <p>All prices exclude GST.</p>
  11. </div>
  12. <div class="compare-list">
  13. <ul>
  14. <li class="compare-item" v-for="item in compareList" :key="item.id">
  15. <div class="item-header item-title">
  16. <p>{{ item.product_name }}</p>
  17. <p>{{ item.product_code }}</p>
  18. </div>
  19. <div class="item-content img">
  20. <img
  21. :src="
  22. $mediaRegExp.test(item.info.image)
  23. ? item.info.image
  24. : 'https://www.promocollection.com.au/' + item.info.image
  25. "
  26. />
  27. </div>
  28. <div class="item-title">
  29. <p>Primary Branding Prices</p>
  30. </div>
  31. <div class="item-content">
  32. <!-- <div class="Qty-Price">
  33. <ul>
  34. <li>Qty</li>
  35. <li>50+</li>
  36. <li>100+</li>
  37. <li>250+</li>
  38. <li>500+</li>
  39. <li>1000+</li>
  40. <li>2500+</li>
  41. <li>5000+</li>
  42. <li>10000+</li>
  43. </ul>
  44. <ul>
  45. <li>Price</li>
  46. <li>-</li>
  47. <li>-</li>
  48. <li>-</li>
  49. <li>1.04</li>
  50. <li>0.96</li>
  51. <li>0.89</li>
  52. <li>0.85</li>
  53. <li>POA</li>
  54. </ul>
  55. </div>
  56. <div class="Setup"><span>Setup:</span><span>$120/col</span></div> -->
  57. </div>
  58. <div class="item-title">
  59. <p>Details</p>
  60. </div>
  61. <div class="item-content">
  62. <div class="details">
  63. <span>Prodect size:</span>
  64. <span>{{ item.info.product_size }}</span>
  65. </div>
  66. <div class="details">
  67. <span>Print size:</span>
  68. <span>{{ item.info.print_size_area }}</span>
  69. </div>
  70. </div>
  71. <div class="item-title">
  72. <p>Colours</p>
  73. </div>
  74. <div class="item-content">
  75. <div class="colour">{{ item.info.colors_au }}</div>
  76. </div>
  77. <div class="item-title">
  78. <p>Description</p>
  79. </div>
  80. <div class="item-content">
  81. <div class="description">{{ item.info.description }}</div>
  82. </div>
  83. </li>
  84. </ul>
  85. </div>
  86. <div class="bottom-info">
  87. <p>1.Prices are subject to change at any time and without prior notice</p>
  88. <p>2.Prices shown are based on the client supplying suitable artwork</p>
  89. <p>3.Freight is additional to prices shown and will be charged at cost</p>
  90. </div>
  91. </div>
  92. </template>
  93. <script>
  94. export default {
  95. data() {
  96. return {
  97. compareList: [],
  98. };
  99. },
  100. async created() {
  101. await this.getCompareList();
  102. },
  103. methods: {
  104. getCompareList() {
  105. this.$axios
  106. .post("/api/home/compare_list", { compare_keys: "keys" })
  107. .then((res) => {
  108. this.compareList = res.result;
  109. })
  110. .catch((error) => {
  111. this.$message.error(error.response.data.msg);
  112. });
  113. },
  114. },
  115. };
  116. </script>
  117. <style lang="scss" scoped>
  118. .com-main {
  119. .compare-title {
  120. font-family: Proxima Nova;
  121. text-align: center;
  122. margin: 55px auto 15px;
  123. h1 {
  124. height: 30px;
  125. font-size: 36px;
  126. font-weight: bold;
  127. color: #00213b;
  128. line-height: 23px;
  129. margin-bottom: 10px;
  130. }
  131. .line {
  132. width: 99px;
  133. height: 4px;
  134. background: #e90000;
  135. margin: 15px auto;
  136. }
  137. p {
  138. height: 12px;
  139. font-size: 12px;
  140. font-weight: 400;
  141. color: #999999;
  142. line-height: 23px;
  143. margin-bottom: 25px;
  144. }
  145. }
  146. .bottom-info {
  147. margin: 50px auto;
  148. width: 400px;
  149. p {
  150. height: 24px;
  151. font-size: 12px;
  152. font-family: Proxima Nova;
  153. font-weight: 400;
  154. color: #333333;
  155. line-height: 24px;
  156. }
  157. }
  158. .compare-list {
  159. font-family: Proxima Nova;
  160. ul {
  161. display: flex;
  162. justify-content: center;
  163. // align-items: center;
  164. li.compare-item {
  165. width: 280px;
  166. .item-title {
  167. height: 38px;
  168. font-size: 14px;
  169. background: #fafafa;
  170. border: 1px solid #e7eaf4;
  171. display: flex;
  172. flex-direction: column;
  173. justify-content: center;
  174. align-items: center;
  175. }
  176. .item-content {
  177. display: flex;
  178. justify-content: center;
  179. flex-direction: column;
  180. align-items: center;
  181. min-height: 100px;
  182. font-size: 12px;
  183. padding: 10px 5px;
  184. color: #333333;
  185. border: 1px solid #e7eaf4;
  186. img {
  187. width: 70px;
  188. height: 70px;
  189. }
  190. .Qty-Price {
  191. display: flex;
  192. justify-content: space-around;
  193. ul {
  194. display: block;
  195. width: 100px;
  196. text-align: center;
  197. margin: 10px auto;
  198. li {
  199. margin-bottom: 10px;
  200. }
  201. }
  202. }
  203. .Setup {
  204. height: 23px;
  205. line-height: 23px;
  206. text-align: center;
  207. color: #333333;
  208. span:nth-of-type(1) {
  209. font-weight: bold;
  210. margin-right: 5px;
  211. }
  212. span:nth-of-type(2) {
  213. font-family: Microsoft YaHei;
  214. font-weight: 400;
  215. }
  216. }
  217. .details {
  218. margin-top: 5px;
  219. span {
  220. display: inline-block;
  221. height: 23px;
  222. font-weight: 400;
  223. line-height: 23px;
  224. }
  225. span:nth-of-type(1) {
  226. width: 80px;
  227. text-align: center;
  228. }
  229. span:nth-of-type(2) {
  230. width: 155px;
  231. margin-left: 15px;
  232. }
  233. }
  234. .colour,
  235. .description {
  236. text-align: left;
  237. word-break: break-all;
  238. line-height: 20px;
  239. }
  240. .description {
  241. height: 140px;
  242. overflow: hidden;
  243. text-overflow: ellipsis;
  244. display: -webkit-box;
  245. -webkit-box-orient: vertical;
  246. -webkit-line-clamp: 7;
  247. }
  248. }
  249. .item-header {
  250. height: 76px;
  251. p:nth-of-type(1) {
  252. height: 23px;
  253. font-size: 14px;
  254. font-weight: bold;
  255. color: #0181c9;
  256. line-height: 23px;
  257. }
  258. p:nth-of-type(2) {
  259. height: 23px;
  260. font-size: 12px;
  261. font-weight: 400;
  262. color: #999999;
  263. line-height: 23px;
  264. }
  265. }
  266. }
  267. }
  268. }
  269. }
  270. </style>