FAQs.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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>FAQs</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">FAQs</p>
  8. <div class="line"></div>
  9. <div v-show="issueInfo.length > 0">
  10. <div class="item" v-show="generalList.length > 0">
  11. <div class="item-title">
  12. <span></span>
  13. <span>General</span>
  14. </div>
  15. <el-collapse v-loading="listLoading">
  16. <el-collapse-item
  17. v-for="item in generalList"
  18. :key="item.id"
  19. @click.native="handleChange($event)"
  20. >
  21. <template slot="title">
  22. <i class="header-icon el-icon-circle-plus-outline"></i>
  23. <i class="header-icon el-icon-remove" style="display: none"></i>
  24. {{ item.issue }}
  25. </template>
  26. <div>
  27. {{ item.answer }}
  28. </div>
  29. </el-collapse-item>
  30. </el-collapse>
  31. </div>
  32. <div class="item" v-show="orderingList.length > 0">
  33. <div class="item-title">
  34. <span></span>
  35. <span>Ordering</span>
  36. </div>
  37. <el-collapse v-loading="listLoading">
  38. <el-collapse-item
  39. v-for="item in orderingList"
  40. :key="item.id"
  41. @click.native="handleChange($event)"
  42. >
  43. <template slot="title">
  44. <i class="header-icon el-icon-circle-plus-outline"></i>
  45. <i class="header-icon el-icon-remove" style="display: none"></i>
  46. {{ item.issue }}
  47. </template>
  48. <div>
  49. {{ item.answer }}
  50. </div>
  51. </el-collapse-item>
  52. </el-collapse>
  53. </div>
  54. <div class="item" v-show="artworkList.length > 0">
  55. <div class="item-title">
  56. <span></span>
  57. <span>Artwork</span>
  58. </div>
  59. <el-collapse v-loading="listLoading">
  60. <el-collapse-item
  61. v-for="item in artworkList"
  62. :key="item.id"
  63. @click.native="handleChange($event)"
  64. >
  65. <template slot="title">
  66. <i class="header-icon el-icon-circle-plus-outline"></i>
  67. <i class="header-icon el-icon-remove" style="display: none"></i>
  68. {{ item.issue }}
  69. </template>
  70. <div>
  71. {{ item.answer }}
  72. </div>
  73. </el-collapse-item>
  74. </el-collapse>
  75. </div>
  76. <div class="item" v-show="paymentList.length > 0">
  77. <div class="item-title">
  78. <span></span>
  79. <span>Payment</span>
  80. </div>
  81. <el-collapse v-loading="listLoading">
  82. <el-collapse-item
  83. v-for="item in paymentList"
  84. :key="item.id"
  85. @click.native="handleChange($event)"
  86. >
  87. <template slot="title">
  88. <i class="header-icon el-icon-circle-plus-outline"></i>
  89. <i class="header-icon el-icon-remove" style="display: none"></i>
  90. {{ item.issue }}
  91. </template>
  92. <div>
  93. {{ item.answer }}
  94. </div>
  95. </el-collapse-item>
  96. </el-collapse>
  97. </div>
  98. <div class="item" v-show="shippingReturnsList.length > 0">
  99. <div class="item-title">
  100. <span></span>
  101. <span>Shipping & Returns</span>
  102. </div>
  103. <el-collapse v-loading="listLoading">
  104. <el-collapse-item
  105. v-for="item in shippingReturnsList"
  106. :key="item.id"
  107. @click.native="handleChange($event)"
  108. >
  109. <template slot="title">
  110. <i class="header-icon el-icon-circle-plus-outline"></i>
  111. <i class="header-icon el-icon-remove" style="display: none"></i>
  112. {{ item.issue }}
  113. </template>
  114. <div>
  115. {{ item.answer }}
  116. </div>
  117. </el-collapse-item>
  118. </el-collapse>
  119. </div>
  120. </div>
  121. <div v-if="issueInfo.length == 0">
  122. <el-empty description="No Data"></el-empty>
  123. </div>
  124. </div>
  125. </template>
  126. <script>
  127. export default {
  128. data() {
  129. return {
  130. issueInfo: [],
  131. listLoading: true,
  132. generalList: [],
  133. orderingList: [],
  134. artworkList: [],
  135. paymentList: [],
  136. shippingReturnsList: [],
  137. };
  138. },
  139. async created() {
  140. await this.getInfoList();
  141. },
  142. methods: {
  143. getInfoList() {
  144. this.$axios
  145. .get("/api/others/issue/list")
  146. .then((res) => {
  147. if (res.code == 1) {
  148. this.issueInfo = res.result;
  149. this.issueInfo.forEach((item) => {
  150. if (item.id === 1) {
  151. this.generalList = item.issue;
  152. } else if (item.id === 2) {
  153. this.orderingList = item.issue;
  154. } else if (item.id === 3) {
  155. this.artworkList = item.issue;
  156. } else if (item.id === 4) {
  157. this.paymentList = item.issue;
  158. } else if (item.id === 5) {
  159. this.shippingReturnsList = item.issue;
  160. }
  161. });
  162. this.listLoading = false;
  163. }
  164. })
  165. .catch(() => {
  166. this.listLoading = false;
  167. this.issueInfo = [];
  168. });
  169. },
  170. handleChange(e) {
  171. let targetDom = e.currentTarget.children[0].children[0];
  172. if (targetDom.className.indexOf("is-active") > 0) {
  173. targetDom.children[0].style.display = "none";
  174. targetDom.children[1].style.display = "block";
  175. } else {
  176. targetDom.children[0].style.display = "block";
  177. targetDom.children[1].style.display = "none";
  178. }
  179. },
  180. },
  181. };
  182. </script>
  183. <style lang="scss" scoped>
  184. .title {
  185. height: 50px;
  186. font-size: 35px;
  187. font-family: Proxima Nova;
  188. font-weight: bold;
  189. color: #00213b;
  190. text-align: center;
  191. line-height: 50px;
  192. }
  193. .line {
  194. width: 99px;
  195. height: 4px;
  196. background: #e90000;
  197. margin: 15px auto;
  198. }
  199. .item {
  200. margin-bottom: 30px;
  201. .item-title {
  202. margin-bottom: 5px;
  203. span:nth-of-type(1) {
  204. display: inline-block;
  205. width: 3px;
  206. height: 13px;
  207. background: #e90000;
  208. border-radius: 2px;
  209. }
  210. span:nth-of-type(2) {
  211. height: 24px;
  212. font-size: 18px;
  213. font-family: Proxima Nova;
  214. font-weight: bold;
  215. color: #333333;
  216. line-height: 24px;
  217. }
  218. }
  219. }
  220. :deep(.el-collapse) {
  221. border: 1px solid #e3e3e3;
  222. background: rgba(255, 255, 255, 0.05);
  223. .el-collapse-item {
  224. font-family: Proxima Nova;
  225. font-weight: 400;
  226. color: #333333;
  227. .el-collapse-item__header {
  228. font-size: 16px;
  229. height: 40px;
  230. padding-left: 10px;
  231. border-bottom: 1px solid #e3e3e3;
  232. line-height: 40px;
  233. .header-icon {
  234. margin-right: 5px;
  235. }
  236. .el-collapse-item__arrow {
  237. display: none;
  238. }
  239. }
  240. .el-collapse-item__header.is-active {
  241. background: rgba(0, 33, 59, 0.05);
  242. }
  243. .el-collapse-item__content {
  244. padding-left: 25px;
  245. padding-top: 5px;
  246. font-size: 14px;
  247. background: rgba(0, 33, 59, 0.05);
  248. }
  249. }
  250. }
  251. :deep(.el-pagination.is-background) {
  252. .el-pager {
  253. li.number {
  254. background-color: #f8f8f8;
  255. border-radius: 50%;
  256. color: #a7a7a7;
  257. }
  258. li:not(.disabled).active {
  259. background-color: #00213b;
  260. color: #d4d7da;
  261. }
  262. }
  263. .btn-prev,
  264. .btn-next {
  265. border-radius: 50%;
  266. background-color: #fff;
  267. .el-icon-arrow-left:before {
  268. content: "";
  269. }
  270. .el-icon-arrow-right:before {
  271. content: "";
  272. }
  273. }
  274. }
  275. </style>