htui-yllkbz 1.3.75 → 1.3.76

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": "htui-yllkbz",
3
- "version": "1.3.75",
3
+ "version": "1.3.76",
4
4
  "port": "8082",
5
5
  "typings": "types/index.d.ts",
6
6
  "main": "lib/htui.common.js",
package/src/App.vue CHANGED
@@ -23,7 +23,7 @@
23
23
  v-model="state.value"
24
24
  @change="change"
25
25
  ></HtSelectBaseData>
26
- <HtSelectUser
26
+ <HtSelecjtUser
27
27
  :clearable="true"
28
28
  :multiple="false"
29
29
  :checkStrictly="false"
@@ -4,7 +4,7 @@
4
4
  * @Author: hutao
5
5
  * @Date: 2022-09-28 10:24:08
6
6
  * @LastEditors: hutao
7
- * @LastEditTime: 2022-11-04 09:27:46
7
+ * @LastEditTime: 2022-11-07 17:37:27
8
8
  -->
9
9
  <template>
10
10
  <el-drawer
@@ -53,10 +53,14 @@
53
53
  <el-button
54
54
  style="margin-right:20px;float:right"
55
55
  type="primary"
56
+ :loading="loading"
56
57
  @click="onOk"
57
58
  >确定</el-button
58
59
  >
59
- <el-button style="margin-right:20px;float:right" @click="onCancel"
60
+ <el-button
61
+ :loading="loading"
62
+ style="margin-right:20px;float:right"
63
+ @click="onCancel"
60
64
  >取消</el-button
61
65
  >
62
66
  </template>
@@ -81,6 +85,7 @@ export default class Index extends Vue {
81
85
  @Prop({ default: '50%' }) size!: string;
82
86
  /** 标题 */
83
87
  @Prop() title!: string;
88
+ @Prop() loading!: boolean;
84
89
  /** 是否显示隐藏来自父级传参 */
85
90
  @Prop() value!: boolean;
86
91
  /** 展开方式 参考elemen UI */