Rap 原分销系统代码Web
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

30 行
768B

  1. import Vue from 'vue'
  2. import { get as getDictDetail } from '@/api/system/dictDetail'
  3. export default class Dict {
  4. constructor(dict) {
  5. this.dict = dict
  6. }
  7. async init(names, completeCallback) {
  8. if (names === undefined || name === null) {
  9. throw new Error('need Dict names')
  10. }
  11. const ps = []
  12. names.forEach(n => {
  13. Vue.set(this.dict.dict, n, {})
  14. Vue.set(this.dict.label, n, {})
  15. Vue.set(this.dict, n, [])
  16. ps.push(getDictDetail(n).then(data => {
  17. this.dict[n].splice(0, 0, ...data.content)
  18. data.content.forEach(d => {
  19. Vue.set(this.dict.dict[n], d.value, d)
  20. Vue.set(this.dict.label[n], d.value, d.label)
  21. })
  22. }))
  23. })
  24. await Promise.all(ps)
  25. completeCallback()
  26. }
  27. }