api.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <template>
  2. <el-container class="main">
  3. <el-header>PromocollectionAPI</el-header>
  4. <el-container style="height: 100vh; border: 1px solid #eee; padding-top: 60px">
  5. <el-aside width="200px" style="background-color: rgb(238, 241, 246)">
  6. <el-menu default-active="intro" @select="handleSel" :default-openeds="['api']">
  7. <el-menu-item index="intro">
  8. <i class="el-icon-menu"></i>
  9. <span slot="title">Introduce</span>
  10. </el-menu-item>
  11. <el-submenu index="api">
  12. <template slot="title"><i class="el-icon-menu"></i>Api</template>
  13. <a href="#anchor">
  14. <el-menu-item index="1">Get Authorization acount</el-menu-item>
  15. <el-menu-item index="2">Get Categories</el-menu-item>
  16. <el-menu-item index="3">Get Product-Indiviual</el-menu-item>
  17. <el-menu-item index="4">Get Products-List</el-menu-item>
  18. </a>
  19. </el-submenu>
  20. </el-menu>
  21. </el-aside>
  22. <el-container>
  23. <el-main>
  24. <section v-show="indexShow == 'intro'">
  25. <h3>Promo API Introduction</h3>
  26. <p>PromoCollection Product Data API</p>
  27. <h3>About</h3>
  28. <p>The Promo Collection Product Data API provides an interface that allows you to connect your business systems to our product data. It can be used to integrate websites, accounting software, quoting tools, ordering platforms and other business systems. It ensures your business systems are always up to date with real time pricing, product data, stock levels and images. The below documentation details on how to connect, utilise and read the data.</p>
  29. <h3>Register</h3>
  30. <p>Please Login to register.</p>
  31. <h3>Support</h3>
  32. <p>For support, please email <a href="mailto:info@promocollection.com.au">info@promocollection.com.au</a>. You are welcome to provide this email to third party IT providers to contact us directly for support.</p>
  33. </section>
  34. <section v-show="indexShow != 'intro'">
  35. <h3 id="anchor">Request address</h3>
  36. <p>
  37. {{ indexShow == 1 ? 'post' : 'get' }}
  38. <span class="content">{{ apiData[indexShow]?.address }}</span>
  39. </p>
  40. <h3>Interface description</h3>
  41. <p>{{ apiData[indexShow]?.description }}</p>
  42. <h3>Request header parameters</h3>
  43. <param-table :data="apiData[indexShow]?.parameters"></param-table>
  44. <template v-if="apiData[indexShow]?.request_parameters">
  45. <h3>Request parameters</h3>
  46. <param-table :data="apiData[indexShow]?.request_parameters" :colShow="true"></param-table>
  47. </template>
  48. <h3>Response content</h3>
  49. <pre
  50. class="line-numbers"><code class="language-javascript" ref="codeBlock" v-html="apiData[indexShow]?.response"></code></pre>
  51. </section>
  52. </el-main>
  53. </el-container>
  54. </el-container>
  55. </el-container>
  56. </template>
  57. <script>
  58. import Prism from 'prismjs' // 代码高亮core
  59. import 'prismjs/plugins/line-numbers/prism-line-numbers.min.js'
  60. import 'prismjs/themes/prism-okaidia.css' // 高亮主题
  61. import 'prismjs/plugins/line-numbers/prism-line-numbers.min.css'
  62. import paramTable from '@/components/table/paramTable'
  63. import api1 from '@/assets/json/api1.json';
  64. import api2 from '@/assets/json/api2.json';
  65. import api3 from '@/assets/json/api3.json';
  66. import api4 from '@/assets/json/api4.json';
  67. export default {
  68. components: { paramTable },
  69. layout: 'blank_layout',
  70. middleware: 'auth',
  71. data() {
  72. return {
  73. indexShow: 'intro',
  74. apiData: {
  75. 1: {
  76. address: 'https://promocollection.com.au/api/au.api/authorization',
  77. description: 'Get interface authorization code.',
  78. parameters: [
  79. {
  80. parameters: 'email',
  81. type: 'string',
  82. description: '*Email account',
  83. },
  84. {
  85. parameters: 'password',
  86. type: 'string',
  87. description: '*Email password',
  88. },
  89. ],
  90. response: api1,
  91. },
  92. 2: {
  93. address: 'https://promocollection.com.au/api/au.api/categories',
  94. description:
  95. 'Returns a full list of product categories including subcategories.',
  96. parameters: [
  97. {
  98. parameters: 'Authorization',
  99. type: 'string',
  100. description: 'Authorization',
  101. },
  102. ],
  103. response: api2,
  104. },
  105. 3: {
  106. address: 'https://promocollection.com.au/api/au.api/product',
  107. description: 'Returns product data for an individual product.',
  108. parameters: [
  109. {
  110. parameters: 'Authorization',
  111. type: 'string',
  112. description: 'Authorization',
  113. },
  114. ],
  115. request_parameters: [
  116. {
  117. parameters: 'code',
  118. type: 'string',
  119. required: 'yes',
  120. description: 'The code of the product to retrieve',
  121. },
  122. {
  123. parameters: 'Format',
  124. type: 'string',
  125. required: 'no',
  126. description: 'Format of the response,default=json',
  127. },
  128. ],
  129. response: api3,
  130. },
  131. 4: {
  132. address: 'https://promocollection.com.au/api/au.api/products',
  133. description: 'Returns a list of all products.',
  134. parameters: [
  135. {
  136. parameters: 'Authorization',
  137. type: 'string',
  138. description: 'Authorization',
  139. },
  140. ],
  141. request_parameters: [
  142. {
  143. parameters: 'limit',
  144. type: 'int',
  145. required: 'no',
  146. description: 'Quantity of products obtained',
  147. },
  148. {
  149. parameters: 'order',
  150. type: 'string',
  151. required: 'no',
  152. description: 'Product sequencing default=desc, desc or aes',
  153. },
  154. {
  155. parameters: 'sort',
  156. type: 'string',
  157. required: 'no',
  158. description:
  159. 'Product sequencing default=create_time, create_time or update_time',
  160. },
  161. {
  162. parameters: 'page',
  163. type: 'int',
  164. required: 'no',
  165. description: 'Product pages obtained',
  166. },
  167. {
  168. parameters: 'cate_id',
  169. type: 'int',
  170. required: 'no',
  171. description: 'Get products under the specified category',
  172. },
  173. ],
  174. response: api4,
  175. },
  176. },
  177. }
  178. },
  179. computed: {
  180. code() {
  181. return this.apiData[this.indexShow]?.response
  182. },
  183. },
  184. methods: {
  185. handleSel(key, keyPath) {
  186. this.indexShow = key
  187. setTimeout(() => {
  188. Prism.highlightAll()
  189. }, 0)
  190. },
  191. },
  192. }
  193. </script>
  194. <style lang="scss" scoped>
  195. .main {
  196. position: relative;
  197. font-size: 16px;
  198. }
  199. header {
  200. text-align: center;
  201. height: 60px;
  202. line-height: 60px;
  203. font-size: 24px;
  204. position: fixed;
  205. width: 100%;
  206. left: 0;
  207. top: 0;
  208. z-index: 1;
  209. border-bottom: 1px solid #eee;
  210. background-color: #fff;
  211. }
  212. h3 {
  213. margin: 20px 0 8px;
  214. font-size: 18px;
  215. }
  216. p {
  217. text-indent: 2em;
  218. a{
  219. font-weight: 700;
  220. }
  221. }
  222. .content {
  223. color: #d14;
  224. }
  225. </style>