_code.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <template>
  2. <div
  3. v-show="isPromocollection"
  4. class="page-prodcut-record com-width-1400 com-minwidth-1024 com-margin-auto">
  5. <!-- <div>{{ record }}</div> -->
  6. <div class="title">
  7. {{ record.product_code }}&nbsp;{{ record.product_name }}&nbsp;价格 +
  8. 产品呈现
  9. </div>
  10. <div class="author-wrap flex column center">
  11. <div class="flex center">
  12. <div class="time">{{ record.create_time }}</div>
  13. <div class="author">
  14. &nbsp;&nbsp;&nbsp;&nbsp;{{ record.admin_name }}
  15. </div>
  16. </div>
  17. <div class="like-border"></div>
  18. </div>
  19. <div class="p-title">开发原因</div>
  20. <div class="content">{{ record.record_reason }}</div>
  21. <div class="p-title">本次开发</div>
  22. <div class="content flex">
  23. <div>{{ record.product_code }}</div>
  24. <span>&nbsp;-&nbsp;</span>
  25. <div>{{ record.product_name }}</div>
  26. </div>
  27. <div
  28. class="content"
  29. v-if="record.image && record.image.length">
  30. <img
  31. v-for="img in record.image"
  32. :src="img"
  33. :key="img"
  34. alt="product_image" />
  35. </div>
  36. <div class="content product-info">
  37. <div class="flex start">
  38. <div>尺寸:</div>
  39. <div>{{ record.product_size }}</div>
  40. </div>
  41. <div class="flex start">
  42. <div>材质:</div>
  43. <div>{{ record.product_material }}</div>
  44. </div>
  45. <div class="flex start">
  46. <div>颜色:</div>
  47. <div>{{ record.color }}</div>
  48. </div>
  49. <div class="flex start">
  50. <div>印刷:</div>
  51. <div>{{ record.print }}</div>
  52. </div>
  53. <div class="flex start">
  54. <div>MOQ:</div>
  55. <div>{{ record.moq }}</div>
  56. </div>
  57. <div class="flex start">
  58. <div>包装:</div>
  59. <div>{{ record.packaging }}</div>
  60. </div>
  61. <div class="flex start">
  62. <div>货期:</div>
  63. <div>{{ record.cycle }}</div>
  64. </div>
  65. </div>
  66. <div class="p-title">澳洲当地对手情况</div>
  67. <div class="content">{{ record.competitor }}</div>
  68. <div
  69. class="content"
  70. v-if="record.competitor_url">
  71. <a
  72. target="_blank"
  73. class="content-link"
  74. :href="record.competitor_url"
  75. >{{ record.competitor_url }}</a
  76. >
  77. </div>
  78. <div
  79. class="content"
  80. v-if="record.competitor_image && record.competitor_image.length">
  81. <img
  82. v-for="img in record.competitor_image"
  83. :src="img"
  84. :key="img"
  85. alt="product_image" />
  86. </div>
  87. <div class="p-title">售价</div>
  88. <div class="content">{{ record.express_freight }}</div>
  89. <div
  90. class="content"
  91. v-if="record.express_image && record.express_image.length">
  92. <img
  93. v-for="img in record.express_image"
  94. :src="img"
  95. :key="img"
  96. alt="product_image" />
  97. </div>
  98. <br />
  99. <br />
  100. <div class="content">{{ record.bag_freight }}</div>
  101. <div
  102. class="content"
  103. v-if="record.bag_image && record.bag_image.length">
  104. <img
  105. v-for="img in record.bag_image"
  106. :src="img"
  107. :key="img"
  108. alt="product_image" />
  109. </div>
  110. </div>
  111. </template>
  112. <script>
  113. import { mapMutations, mapState } from 'vuex'
  114. export default {
  115. name: 'ProductRecord',
  116. data() {
  117. return {
  118. record: {},
  119. }
  120. },
  121. computed: {
  122. ...mapState(['dialogVisible']),
  123. userInfo() {
  124. return this.$store.state.userInfo || {}
  125. },
  126. isLogin() {
  127. return !!this.userInfo.email
  128. },
  129. isPromocollection() {
  130. return /\@promocollection.(com\.au|uk)/.test(this.userInfo.email)
  131. },
  132. },
  133. watch: {
  134. userInfo() {
  135. if (this.isLogin) {
  136. this.check()
  137. }
  138. },
  139. },
  140. mounted() {
  141. if (this.isLogin) {
  142. this.check()
  143. } else {
  144. setTimeout(() => {
  145. this.openDialog()
  146. }, 500)
  147. }
  148. },
  149. methods: {
  150. ...mapMutations(['openDialog']),
  151. check() {
  152. if (this.isPromocollection) {
  153. this.getData()
  154. } else {
  155. // Nuxt.js 2.x 版本中,this.$router.redirect 方法已经被废弃
  156. this.$router.replace('/')
  157. }
  158. },
  159. async getData() {
  160. const query = this.$route.query
  161. let url = '/uk-api/uk/goods/record/?product_code=' + this.$route.params.code
  162. if (query.version && query.version.length) {
  163. url += `&version=${query.version}`
  164. }
  165. const res = await this.$axios.get(url)
  166. this.record = res.result || {}
  167. },
  168. },
  169. }
  170. </script>
  171. <style lang="scss" scoped>
  172. .page-prodcut-record {
  173. color: #333;
  174. padding-top: 76px;
  175. font-size: 14px;
  176. }
  177. .title {
  178. font-size: 36px;
  179. color: #00213b;
  180. text-align: center;
  181. }
  182. .author-wrap {
  183. white-space: nowrap;
  184. font-size: 20px;
  185. margin-top: 36px;
  186. text-align: center;
  187. }
  188. .like-border {
  189. margin-top: 22px;
  190. height: 3px;
  191. width: 120px;
  192. background-color: #e90000;
  193. }
  194. .product-info {
  195. margin: 24px 0;
  196. & > .flex {
  197. // margin-bottom: 0px;
  198. & > div:first-of-type {
  199. width: 50px;
  200. margin-right: 2px;
  201. }
  202. }
  203. }
  204. .p-title {
  205. margin: 24px 0 8px;
  206. padding-left: 6px;
  207. font-size: 18px;
  208. border-left: 3px solid #e90000;
  209. }
  210. .content {
  211. white-space: pre-wrap;
  212. padding-left: 10px;
  213. line-height: 18px;
  214. margin-bottom: 12px;
  215. img {
  216. height: auto;
  217. width: auto;
  218. max-width: 800px;
  219. display: block;
  220. }
  221. img + img {
  222. margin-top: 24px;
  223. }
  224. a {
  225. white-space: pre-wrap;
  226. word-break: break-word;
  227. }
  228. }
  229. .content-link {
  230. color: #0096ff;
  231. text-decoration: underline;
  232. }
  233. </style>