meixioacomponent 0.4.77 → 0.4.78

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meixioacomponent",
3
- "version": "0.4.77",
3
+ "version": "0.4.78",
4
4
  "private": false,
5
5
  "author": "YuRi",
6
6
  "main": "lib/meixioacomponent.umd.min.js",
@@ -47,9 +47,11 @@
47
47
  ></base-icon>
48
48
  </div>
49
49
  </div>
50
- <div class="dialog-content-wrap" :style="dialogContentStyle">
50
+
51
+ <base-list class="dialog-content-wrap" :style="dialogContentStyle">
51
52
  <slot name="dialog-content"></slot>
52
- </div>
53
+ </base-list>
54
+
53
55
  <slot
54
56
  class="dialog-footer-wrap"
55
57
  slot="footer"
@@ -225,7 +227,6 @@ export default {
225
227
  .dialog-content-wrap {
226
228
  width: 100%;
227
229
  height: auto;
228
- max-height: 70vh;
229
230
  overflow-y: auto;
230
231
  }
231
232
  }
@@ -463,11 +463,11 @@ export default {
463
463
 
464
464
  // 行被选中删除的方法
465
465
  delFn() {
466
- return this._linkViewClassSubs.delFn || null
466
+ return this._linkViewClassSubs?.delFn || null
467
467
  },
468
468
  // 行被选中导出的方法
469
469
  exportFn() {
470
- return this._linkViewClassSubs.exportFn || null
470
+ return this._linkViewClassSubs?.exportFn || null
471
471
  },
472
472
 
473
473
  // 是否存在delFn,exportFn以及check-handle-plugin slot
@@ -1,4 +1,4 @@
1
- <!-- <template>
1
+ <template>
2
2
  <base-dialog
3
3
  ref="dialog"
4
4
  :modal="true"
@@ -6,7 +6,7 @@
6
6
  :isCache="true"
7
7
  :isDestroy="true"
8
8
  :appendToBody="true"
9
- :contentHeight="`200px`"
9
+ :contentHeight="`500px`"
10
10
  @destroy="destroy"
11
11
  >
12
12
  <div class="dialog-content" slot="dialog-content">
@@ -151,7 +151,7 @@ export default {
151
151
  <style lang="less" scoped>
152
152
  .verify-email-wrap {
153
153
  width: 100%;
154
- height: 200px;
154
+ height: 10000px;
155
155
 
156
156
  .des-text {
157
157
  display: inline-block;
@@ -166,7 +166,7 @@ export default {
166
166
  transform: translateY(-50%);
167
167
  }
168
168
  }
169
- </style> -->
169
+ </style>
170
170
 
171
171
  <!-- <template>
172
172
  <base-drawer
@@ -311,7 +311,7 @@ export default {
311
311
  box-sizing: border-box;
312
312
  }
313
313
  </style> -->
314
-
314
+ <!--
315
315
  <template>
316
316
  <div class="page-table-wrap" ref="pageTableWrap" v-if="show">
317
317
  <base-pro-table
@@ -362,7 +362,6 @@ export default {
362
362
  </el-dropdown>
363
363
  </template>
364
364
 
365
- <el-button slot="check-handle-plugin">sdads</el-button>
366
365
 
367
366
  <template v-slot:gmtCreate="data">
368
367
  <el-button type="text" :disabled="false">222</el-button>
@@ -527,7 +526,7 @@ export default {
527
526
  })
528
527
  }
529
528
  return new Promise((resolve, reject) => {
530
- resolve(companyInfoConfig.getTableData())
529
+ resolve([{}])
531
530
  })
532
531
  },
533
532
  rowClick(row) {
@@ -546,7 +545,7 @@ export default {
546
545
  height: 100%;
547
546
  background: inherit;
548
547
  }
549
- </style>
548
+ </style> -->
550
549
 
551
550
  <!-- 普通表单 -->
552
551
 
@@ -7,8 +7,10 @@ class CompanyInfoConfig extends LinkViewClass {
7
7
  super()
8
8
  this.dynamicMount = null
9
9
  this.drawerContent = null
10
+ this.delFn=()=>{}
10
11
 
11
- this.tableData = []
12
+
13
+ this.tableData = [{}]
12
14
  }
13
15
  async setTable(params) {
14
16
  const res = await request({
@@ -17,7 +19,7 @@ class CompanyInfoConfig extends LinkViewClass {
17
19
  params: params,
18
20
  })
19
21
 
20
- this.tableData = res.data.data.records
22
+ // this.tableData = res.data.data.records
21
23
  }
22
24
  }
23
25