bi-element-ui 1.6.3-beta.19 → 1.6.3-beta.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bi-element-ui",
3
- "version": "1.6.3-beta.19",
3
+ "version": "1.6.3-beta.21",
4
4
  "private": false,
5
5
  "description": "基于 bi-eleme 编写的企业级 Vue 2 UI 组件库",
6
6
  "main": "lib/bi-element-ui-externals.common.js",
@@ -129,7 +129,7 @@
129
129
  </template>
130
130
 
131
131
  <script>
132
- import axios from 'axios'
132
+ // import axios from 'axios'
133
133
  import request from '../../utils/request/index.js'
134
134
  export default {
135
135
  name: 'BiHomeData',
@@ -150,7 +150,7 @@ export default {
150
150
  page_size: 4,
151
151
  total: 0
152
152
  },
153
- url: 'https://applause.zwwlkj03.top/api',
153
+ // url: 'https://applause.zwwlkj03.top/api',
154
154
  options: {
155
155
  buttonList: []
156
156
  },
@@ -180,7 +180,7 @@ export default {
180
180
  }
181
181
  },
182
182
  mounted() {
183
- this.url = this.$BI.env !== 'production' ? 'https://applause.zwwlkj03.top/api' : 'https://applause.wozhangwan.com/api'
183
+ // this.url = this.$BI.env !== 'production' ? 'https://applause.zwwlkj03.top/api' : 'https://applause.wozhangwan.com/api'
184
184
  this.uid = this.userId
185
185
  this.searchData.uid = this.userId
186
186
  this.init()
@@ -224,35 +224,35 @@ export default {
224
224
  const res = await request({
225
225
  env: this.$BI.env,
226
226
  system: 'applause',
227
- api: '/home/notify/list',
227
+ api: '/api/home/notify/list',
228
228
  data: this.searchData
229
229
  })
230
- if (res.data.status_code === 1) {
231
- this.messageData = res.data.data.data
232
- this.searchData.page = res.data.data.page_info.page
233
- this.searchData.total = res.data.data.page_info.total
230
+ if (res.status_code === 1) {
231
+ this.messageData = res.data.data
232
+ this.searchData.page = res.data.page_info.page
233
+ this.searchData.total = res.data.page_info.total
234
234
  }
235
235
  },
236
236
  async getSwiper() {
237
237
  const res = await request({
238
238
  env: this.$BI.env,
239
239
  system: 'applause',
240
- api: '/home/carousel/list',
240
+ api: '/api/home/carousel/list',
241
241
  data: { uid: this.uid }
242
242
  })
243
- if (res.data.status_code === 1) {
244
- this.swiperData = res.data.data.data
243
+ if (res.status_code === 1) {
244
+ this.swiperData = res.data.data
245
245
  }
246
246
  },
247
247
  async Searchcondition() {
248
248
  const res = await request({
249
249
  env: this.$BI.env,
250
250
  system: 'applause',
251
- api: '/home/Searchcondition/index',
251
+ api: '/api/home/Searchcondition/index',
252
252
  data: { uid: this.uid, notify_category: 1 }
253
253
  })
254
- if (res.data.status_code === 1) {
255
- this.options.buttonList = res.data.data.notify_category
254
+ if (res.status_code === 1) {
255
+ this.options.buttonList = res.data.notify_category
256
256
  }
257
257
  },
258
258
  returnCategory(id) {
@@ -292,10 +292,10 @@ export default {
292
292
  const res = await request({
293
293
  env: this.$BI.env,
294
294
  system: 'applause',
295
- api: '/home/notify/read',
295
+ api: '/api/home/notify/read',
296
296
  data: { uid: this.uid, notify_id: data.id }
297
297
  })
298
- if (res.data.status_code === 1) {
298
+ if (res.status_code === 1) {
299
299
  data.is_read = true
300
300
  }
301
301
  },
@@ -304,11 +304,11 @@ export default {
304
304
  const res = await request({
305
305
  env: this.$BI.env,
306
306
  system: 'applause',
307
- api: '/home/notify/detail',
307
+ api: '/api/home/notify/detail',
308
308
  data: { uid, notify_id }
309
309
  })
310
- if (res.data.status_code === 1) {
311
- this.dataDetail.data = res.data.data.data
310
+ if (res.status_code === 1) {
311
+ this.dataDetail.data = res.data.data
312
312
  this.dataDetail.isShow = true
313
313
  }
314
314
  },