htui-yllkbz 1.3.59 → 1.3.62
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/lib/htui.common.js +180 -3
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.umd.js +180 -3
- package/lib/htui.umd.js.gz +0 -0
- package/lib/htui.umd.min.js +4 -4
- package/lib/htui.umd.min.js.gz +0 -0
- package/package.json +1 -1
- package/src/packages/HtDrawer/index.ts +15 -0
- package/src/packages/HtDrawer/index.vue +123 -0
- package/src/packages/index.ts +4 -3
package/lib/htui.common.js
CHANGED
|
@@ -82579,6 +82579,181 @@ packages_HtShowBaseType.install = function (Vue) {
|
|
|
82579
82579
|
};
|
|
82580
82580
|
|
|
82581
82581
|
/* harmony default export */ var src_packages_HtShowBaseType = (packages_HtShowBaseType);
|
|
82582
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"484e272b-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/packages/HtDrawer/index.vue?vue&type=template&id=70c2853f&scoped=true&
|
|
82583
|
+
var HtDrawervue_type_template_id_70c2853f_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('el-drawer',{attrs:{"visible":_vm.state.visible,"direction":_vm.direction,"custom-class":_vm.customClass,"append-to-body":_vm.appendToBody,"close-on-press-escape":_vm.closeOnPressEscape,"destroy-on-close":_vm.destroyOnClose,"modal-append-to-body":_vm.modalAppendToBody,"modal":_vm.modal,"size":_vm.size,"show-close":_vm.showClose,"withHeader":_vm.withHeader,"wrapperClosable":_vm.wrapperClosable},on:{"update:visible":function($event){return _vm.$set(_vm.state, "visible", $event)}}},[_c('span',{attrs:{"slot":"title"},slot:"title"},[_vm._t("title",function(){return [_c('span',{staticStyle:{"font-size":"18px","font-weight":"bold"}},[_vm._v(_vm._s(_vm.title))])]})],2),_c('div',{staticStyle:{"overflow":"hidden","padding":"0 16px"},style:(("height:calc(100vh - " + (_vm.withFooter ? '90px' : '0px') + " - " + (_vm.withHeader ? '100px' : '0px') + ")"))},[_c('el-scrollbar',{staticStyle:{"height":"calc(100% + 19px)"}},[_vm._t("default")],2)],1),(_vm.withFooter)?_c('el-divider'):_vm._e(),(_vm.withFooter)?_vm._t("foot",function(){return [_c('div',[_c('el-button',{staticStyle:{"margin-left":"20px"},on:{"click":_vm.onCancel}},[_vm._v("取消")]),_c('el-button',{staticStyle:{"margin-left":"20px"},attrs:{"type":"primary"},on:{"click":_vm.onOk}},[_vm._v("确定")])],1)]}):_vm._e()],2)}
|
|
82584
|
+
var HtDrawervue_type_template_id_70c2853f_scoped_true_staticRenderFns = []
|
|
82585
|
+
|
|
82586
|
+
|
|
82587
|
+
// CONCATENATED MODULE: ./src/packages/HtDrawer/index.vue?vue&type=template&id=70c2853f&scoped=true&
|
|
82588
|
+
|
|
82589
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--15-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/ts-loader??ref--15-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/packages/HtDrawer/index.vue?vue&type=script&lang=ts&
|
|
82590
|
+
|
|
82591
|
+
|
|
82592
|
+
|
|
82593
|
+
|
|
82594
|
+
|
|
82595
|
+
|
|
82596
|
+
|
|
82597
|
+
var HtDrawervue_type_script_lang_ts_Index = /*#__PURE__*/function (_Vue) {
|
|
82598
|
+
_inherits(Index, _Vue);
|
|
82599
|
+
|
|
82600
|
+
var _super = _createSuper(Index);
|
|
82601
|
+
|
|
82602
|
+
function Index() {
|
|
82603
|
+
var _this;
|
|
82604
|
+
|
|
82605
|
+
_classCallCheck(this, Index);
|
|
82606
|
+
|
|
82607
|
+
_this = _super.apply(this, arguments);
|
|
82608
|
+
/** 数据 */
|
|
82609
|
+
|
|
82610
|
+
_this.state = {
|
|
82611
|
+
loading: false,
|
|
82612
|
+
visible: false
|
|
82613
|
+
};
|
|
82614
|
+
/** 计算属性 */
|
|
82615
|
+
|
|
82616
|
+
return _this;
|
|
82617
|
+
}
|
|
82618
|
+
/** 生命周期 */
|
|
82619
|
+
|
|
82620
|
+
/** 方法 */
|
|
82621
|
+
|
|
82622
|
+
|
|
82623
|
+
_createClass(Index, [{
|
|
82624
|
+
key: "onCancel",
|
|
82625
|
+
value: function onCancel() {
|
|
82626
|
+
this.state.visible = false;
|
|
82627
|
+
this.$emit('onCancel', false);
|
|
82628
|
+
}
|
|
82629
|
+
}, {
|
|
82630
|
+
key: "onOk",
|
|
82631
|
+
value: function onOk() {
|
|
82632
|
+
this.$emit('onOk', true);
|
|
82633
|
+
}
|
|
82634
|
+
/** 监听 */
|
|
82635
|
+
|
|
82636
|
+
}, {
|
|
82637
|
+
key: "getVisible",
|
|
82638
|
+
value: function getVisible(val, old) {
|
|
82639
|
+
if (val !== old) {
|
|
82640
|
+
this.state.visible = val;
|
|
82641
|
+
}
|
|
82642
|
+
}
|
|
82643
|
+
/** 监听 */
|
|
82644
|
+
|
|
82645
|
+
}, {
|
|
82646
|
+
key: "setVisible",
|
|
82647
|
+
value: function setVisible(val) {
|
|
82648
|
+
this.$emit('input', val);
|
|
82649
|
+
this.$emit('change', val);
|
|
82650
|
+
}
|
|
82651
|
+
}]);
|
|
82652
|
+
|
|
82653
|
+
return Index;
|
|
82654
|
+
}(external_commonjs_vue_commonjs2_vue_root_Vue_default.a);
|
|
82655
|
+
|
|
82656
|
+
__decorate([Prop({
|
|
82657
|
+
default: '50%'
|
|
82658
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "size", void 0);
|
|
82659
|
+
|
|
82660
|
+
__decorate([Prop()], HtDrawervue_type_script_lang_ts_Index.prototype, "title", void 0);
|
|
82661
|
+
|
|
82662
|
+
__decorate([Prop()], HtDrawervue_type_script_lang_ts_Index.prototype, "value", void 0);
|
|
82663
|
+
|
|
82664
|
+
__decorate([Prop({
|
|
82665
|
+
default: 'rtl'
|
|
82666
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "direction", void 0);
|
|
82667
|
+
|
|
82668
|
+
__decorate([Prop({
|
|
82669
|
+
default: true
|
|
82670
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "appendToBody", void 0);
|
|
82671
|
+
|
|
82672
|
+
__decorate([Prop({
|
|
82673
|
+
default: false
|
|
82674
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "wrapperClosable", void 0);
|
|
82675
|
+
|
|
82676
|
+
__decorate([Prop({
|
|
82677
|
+
default: false
|
|
82678
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "closeOnPressEscape", void 0);
|
|
82679
|
+
|
|
82680
|
+
__decorate([Prop({
|
|
82681
|
+
default: false
|
|
82682
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "destroyOnClose", void 0);
|
|
82683
|
+
|
|
82684
|
+
__decorate([Prop({
|
|
82685
|
+
default: true
|
|
82686
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "modal", void 0);
|
|
82687
|
+
|
|
82688
|
+
__decorate([Prop()], HtDrawervue_type_script_lang_ts_Index.prototype, "customClass", void 0);
|
|
82689
|
+
|
|
82690
|
+
__decorate([Prop({
|
|
82691
|
+
default: true
|
|
82692
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "modalAppendToBody", void 0);
|
|
82693
|
+
|
|
82694
|
+
__decorate([Prop({
|
|
82695
|
+
default: true
|
|
82696
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "showClose", void 0);
|
|
82697
|
+
|
|
82698
|
+
__decorate([Prop({
|
|
82699
|
+
default: true
|
|
82700
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "withHeader", void 0);
|
|
82701
|
+
|
|
82702
|
+
__decorate([Prop({
|
|
82703
|
+
default: true
|
|
82704
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "withFooter", void 0);
|
|
82705
|
+
|
|
82706
|
+
__decorate([Watch('value', {
|
|
82707
|
+
immediate: true
|
|
82708
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "getVisible", null);
|
|
82709
|
+
|
|
82710
|
+
__decorate([Watch('state.visible', {
|
|
82711
|
+
immediate: true
|
|
82712
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "setVisible", null);
|
|
82713
|
+
|
|
82714
|
+
HtDrawervue_type_script_lang_ts_Index = __decorate([vue_class_component_esm({
|
|
82715
|
+
name: 'HtDrawer',
|
|
82716
|
+
components: {}
|
|
82717
|
+
})], HtDrawervue_type_script_lang_ts_Index);
|
|
82718
|
+
/* harmony default export */ var HtDrawervue_type_script_lang_ts_ = (HtDrawervue_type_script_lang_ts_Index);
|
|
82719
|
+
// CONCATENATED MODULE: ./src/packages/HtDrawer/index.vue?vue&type=script&lang=ts&
|
|
82720
|
+
/* harmony default export */ var packages_HtDrawervue_type_script_lang_ts_ = (HtDrawervue_type_script_lang_ts_);
|
|
82721
|
+
// CONCATENATED MODULE: ./src/packages/HtDrawer/index.vue
|
|
82722
|
+
|
|
82723
|
+
|
|
82724
|
+
|
|
82725
|
+
|
|
82726
|
+
|
|
82727
|
+
/* normalize component */
|
|
82728
|
+
|
|
82729
|
+
var HtDrawer_component = normalizeComponent(
|
|
82730
|
+
packages_HtDrawervue_type_script_lang_ts_,
|
|
82731
|
+
HtDrawervue_type_template_id_70c2853f_scoped_true_render,
|
|
82732
|
+
HtDrawervue_type_template_id_70c2853f_scoped_true_staticRenderFns,
|
|
82733
|
+
false,
|
|
82734
|
+
null,
|
|
82735
|
+
"70c2853f",
|
|
82736
|
+
null
|
|
82737
|
+
|
|
82738
|
+
)
|
|
82739
|
+
|
|
82740
|
+
/* harmony default export */ var HtDrawer = (HtDrawer_component.exports);
|
|
82741
|
+
// CONCATENATED MODULE: ./src/packages/HtDrawer/index.ts
|
|
82742
|
+
/*
|
|
82743
|
+
* @Descripttion: 基础数据展示组件
|
|
82744
|
+
* @version:
|
|
82745
|
+
* @Author: hutao
|
|
82746
|
+
* @Date: 2022-04-12 17:34:51
|
|
82747
|
+
* @LastEditors: hutao
|
|
82748
|
+
* @LastEditTime: 2022-09-28 11:18:26
|
|
82749
|
+
*/
|
|
82750
|
+
|
|
82751
|
+
|
|
82752
|
+
HtDrawer.install = function (Vue) {
|
|
82753
|
+
Vue.component("HtDrawer", HtDrawer);
|
|
82754
|
+
};
|
|
82755
|
+
|
|
82756
|
+
/* harmony default export */ var packages_HtDrawer = (HtDrawer);
|
|
82582
82757
|
// CONCATENATED MODULE: ./src/packages/index.ts
|
|
82583
82758
|
|
|
82584
82759
|
|
|
@@ -82589,7 +82764,7 @@ packages_HtShowBaseType.install = function (Vue) {
|
|
|
82589
82764
|
* @Author: hutao
|
|
82590
82765
|
* @Date: 2021-10-21 10:08:41
|
|
82591
82766
|
* @LastEditors: hutao
|
|
82592
|
-
* @LastEditTime: 2022-
|
|
82767
|
+
* @LastEditTime: 2022-09-28 11:19:36
|
|
82593
82768
|
*/
|
|
82594
82769
|
|
|
82595
82770
|
/** 下拉table选择控件 */
|
|
@@ -82609,9 +82784,10 @@ packages_HtShowBaseType.install = function (Vue) {
|
|
|
82609
82784
|
|
|
82610
82785
|
|
|
82611
82786
|
|
|
82787
|
+
|
|
82612
82788
|
// 存储组件列表
|
|
82613
82789
|
|
|
82614
|
-
var components = [packages_HtBaseData, src_packages_HtShowBaseType, packages_SelectTable, packages_PageInfo, src_packages_HtTable, src_packages_HtExport, src_packages_HtUpload, src_packages_HtMd, src_packages_HtCountDown, src_packages_HtUploadFiles, src_packages_HtSelectBaseData, src_packages_HtSelectOrg, src_packages_HtSelectUser, packages_HtShowBaseData, packages_HtOrgInfo]; // 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
82790
|
+
var components = [packages_HtBaseData, packages_HtDrawer, src_packages_HtShowBaseType, packages_SelectTable, packages_PageInfo, src_packages_HtTable, src_packages_HtExport, src_packages_HtUpload, src_packages_HtMd, src_packages_HtCountDown, src_packages_HtUploadFiles, src_packages_HtSelectBaseData, src_packages_HtSelectOrg, src_packages_HtSelectUser, packages_HtShowBaseData, packages_HtOrgInfo]; // 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
82615
82791
|
|
|
82616
82792
|
var install = function install(Vue) {
|
|
82617
82793
|
// 判断是否安装
|
|
@@ -82645,7 +82821,8 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
82645
82821
|
HtSelectUser: src_packages_HtSelectUser,
|
|
82646
82822
|
HtShowBaseData: packages_HtShowBaseData,
|
|
82647
82823
|
HtOrgInfo: packages_HtOrgInfo,
|
|
82648
|
-
HtBaseData: packages_HtBaseData
|
|
82824
|
+
HtBaseData: packages_HtBaseData,
|
|
82825
|
+
HtDrawer: packages_HtDrawer
|
|
82649
82826
|
});
|
|
82650
82827
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
82651
82828
|
|
package/lib/htui.common.js.gz
CHANGED
|
Binary file
|
package/lib/htui.umd.js
CHANGED
|
@@ -82588,6 +82588,181 @@ packages_HtShowBaseType.install = function (Vue) {
|
|
|
82588
82588
|
};
|
|
82589
82589
|
|
|
82590
82590
|
/* harmony default export */ var src_packages_HtShowBaseType = (packages_HtShowBaseType);
|
|
82591
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"484e272b-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/packages/HtDrawer/index.vue?vue&type=template&id=70c2853f&scoped=true&
|
|
82592
|
+
var HtDrawervue_type_template_id_70c2853f_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('el-drawer',{attrs:{"visible":_vm.state.visible,"direction":_vm.direction,"custom-class":_vm.customClass,"append-to-body":_vm.appendToBody,"close-on-press-escape":_vm.closeOnPressEscape,"destroy-on-close":_vm.destroyOnClose,"modal-append-to-body":_vm.modalAppendToBody,"modal":_vm.modal,"size":_vm.size,"show-close":_vm.showClose,"withHeader":_vm.withHeader,"wrapperClosable":_vm.wrapperClosable},on:{"update:visible":function($event){return _vm.$set(_vm.state, "visible", $event)}}},[_c('span',{attrs:{"slot":"title"},slot:"title"},[_vm._t("title",function(){return [_c('span',{staticStyle:{"font-size":"18px","font-weight":"bold"}},[_vm._v(_vm._s(_vm.title))])]})],2),_c('div',{staticStyle:{"overflow":"hidden","padding":"0 16px"},style:(("height:calc(100vh - " + (_vm.withFooter ? '90px' : '0px') + " - " + (_vm.withHeader ? '100px' : '0px') + ")"))},[_c('el-scrollbar',{staticStyle:{"height":"calc(100% + 19px)"}},[_vm._t("default")],2)],1),(_vm.withFooter)?_c('el-divider'):_vm._e(),(_vm.withFooter)?_vm._t("foot",function(){return [_c('div',[_c('el-button',{staticStyle:{"margin-left":"20px"},on:{"click":_vm.onCancel}},[_vm._v("取消")]),_c('el-button',{staticStyle:{"margin-left":"20px"},attrs:{"type":"primary"},on:{"click":_vm.onOk}},[_vm._v("确定")])],1)]}):_vm._e()],2)}
|
|
82593
|
+
var HtDrawervue_type_template_id_70c2853f_scoped_true_staticRenderFns = []
|
|
82594
|
+
|
|
82595
|
+
|
|
82596
|
+
// CONCATENATED MODULE: ./src/packages/HtDrawer/index.vue?vue&type=template&id=70c2853f&scoped=true&
|
|
82597
|
+
|
|
82598
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--15-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/ts-loader??ref--15-3!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/packages/HtDrawer/index.vue?vue&type=script&lang=ts&
|
|
82599
|
+
|
|
82600
|
+
|
|
82601
|
+
|
|
82602
|
+
|
|
82603
|
+
|
|
82604
|
+
|
|
82605
|
+
|
|
82606
|
+
var HtDrawervue_type_script_lang_ts_Index = /*#__PURE__*/function (_Vue) {
|
|
82607
|
+
_inherits(Index, _Vue);
|
|
82608
|
+
|
|
82609
|
+
var _super = _createSuper(Index);
|
|
82610
|
+
|
|
82611
|
+
function Index() {
|
|
82612
|
+
var _this;
|
|
82613
|
+
|
|
82614
|
+
_classCallCheck(this, Index);
|
|
82615
|
+
|
|
82616
|
+
_this = _super.apply(this, arguments);
|
|
82617
|
+
/** 数据 */
|
|
82618
|
+
|
|
82619
|
+
_this.state = {
|
|
82620
|
+
loading: false,
|
|
82621
|
+
visible: false
|
|
82622
|
+
};
|
|
82623
|
+
/** 计算属性 */
|
|
82624
|
+
|
|
82625
|
+
return _this;
|
|
82626
|
+
}
|
|
82627
|
+
/** 生命周期 */
|
|
82628
|
+
|
|
82629
|
+
/** 方法 */
|
|
82630
|
+
|
|
82631
|
+
|
|
82632
|
+
_createClass(Index, [{
|
|
82633
|
+
key: "onCancel",
|
|
82634
|
+
value: function onCancel() {
|
|
82635
|
+
this.state.visible = false;
|
|
82636
|
+
this.$emit('onCancel', false);
|
|
82637
|
+
}
|
|
82638
|
+
}, {
|
|
82639
|
+
key: "onOk",
|
|
82640
|
+
value: function onOk() {
|
|
82641
|
+
this.$emit('onOk', true);
|
|
82642
|
+
}
|
|
82643
|
+
/** 监听 */
|
|
82644
|
+
|
|
82645
|
+
}, {
|
|
82646
|
+
key: "getVisible",
|
|
82647
|
+
value: function getVisible(val, old) {
|
|
82648
|
+
if (val !== old) {
|
|
82649
|
+
this.state.visible = val;
|
|
82650
|
+
}
|
|
82651
|
+
}
|
|
82652
|
+
/** 监听 */
|
|
82653
|
+
|
|
82654
|
+
}, {
|
|
82655
|
+
key: "setVisible",
|
|
82656
|
+
value: function setVisible(val) {
|
|
82657
|
+
this.$emit('input', val);
|
|
82658
|
+
this.$emit('change', val);
|
|
82659
|
+
}
|
|
82660
|
+
}]);
|
|
82661
|
+
|
|
82662
|
+
return Index;
|
|
82663
|
+
}(external_commonjs_vue_commonjs2_vue_root_Vue_default.a);
|
|
82664
|
+
|
|
82665
|
+
__decorate([Prop({
|
|
82666
|
+
default: '50%'
|
|
82667
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "size", void 0);
|
|
82668
|
+
|
|
82669
|
+
__decorate([Prop()], HtDrawervue_type_script_lang_ts_Index.prototype, "title", void 0);
|
|
82670
|
+
|
|
82671
|
+
__decorate([Prop()], HtDrawervue_type_script_lang_ts_Index.prototype, "value", void 0);
|
|
82672
|
+
|
|
82673
|
+
__decorate([Prop({
|
|
82674
|
+
default: 'rtl'
|
|
82675
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "direction", void 0);
|
|
82676
|
+
|
|
82677
|
+
__decorate([Prop({
|
|
82678
|
+
default: true
|
|
82679
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "appendToBody", void 0);
|
|
82680
|
+
|
|
82681
|
+
__decorate([Prop({
|
|
82682
|
+
default: false
|
|
82683
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "wrapperClosable", void 0);
|
|
82684
|
+
|
|
82685
|
+
__decorate([Prop({
|
|
82686
|
+
default: false
|
|
82687
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "closeOnPressEscape", void 0);
|
|
82688
|
+
|
|
82689
|
+
__decorate([Prop({
|
|
82690
|
+
default: false
|
|
82691
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "destroyOnClose", void 0);
|
|
82692
|
+
|
|
82693
|
+
__decorate([Prop({
|
|
82694
|
+
default: true
|
|
82695
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "modal", void 0);
|
|
82696
|
+
|
|
82697
|
+
__decorate([Prop()], HtDrawervue_type_script_lang_ts_Index.prototype, "customClass", void 0);
|
|
82698
|
+
|
|
82699
|
+
__decorate([Prop({
|
|
82700
|
+
default: true
|
|
82701
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "modalAppendToBody", void 0);
|
|
82702
|
+
|
|
82703
|
+
__decorate([Prop({
|
|
82704
|
+
default: true
|
|
82705
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "showClose", void 0);
|
|
82706
|
+
|
|
82707
|
+
__decorate([Prop({
|
|
82708
|
+
default: true
|
|
82709
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "withHeader", void 0);
|
|
82710
|
+
|
|
82711
|
+
__decorate([Prop({
|
|
82712
|
+
default: true
|
|
82713
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "withFooter", void 0);
|
|
82714
|
+
|
|
82715
|
+
__decorate([Watch('value', {
|
|
82716
|
+
immediate: true
|
|
82717
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "getVisible", null);
|
|
82718
|
+
|
|
82719
|
+
__decorate([Watch('state.visible', {
|
|
82720
|
+
immediate: true
|
|
82721
|
+
})], HtDrawervue_type_script_lang_ts_Index.prototype, "setVisible", null);
|
|
82722
|
+
|
|
82723
|
+
HtDrawervue_type_script_lang_ts_Index = __decorate([vue_class_component_esm({
|
|
82724
|
+
name: 'HtDrawer',
|
|
82725
|
+
components: {}
|
|
82726
|
+
})], HtDrawervue_type_script_lang_ts_Index);
|
|
82727
|
+
/* harmony default export */ var HtDrawervue_type_script_lang_ts_ = (HtDrawervue_type_script_lang_ts_Index);
|
|
82728
|
+
// CONCATENATED MODULE: ./src/packages/HtDrawer/index.vue?vue&type=script&lang=ts&
|
|
82729
|
+
/* harmony default export */ var packages_HtDrawervue_type_script_lang_ts_ = (HtDrawervue_type_script_lang_ts_);
|
|
82730
|
+
// CONCATENATED MODULE: ./src/packages/HtDrawer/index.vue
|
|
82731
|
+
|
|
82732
|
+
|
|
82733
|
+
|
|
82734
|
+
|
|
82735
|
+
|
|
82736
|
+
/* normalize component */
|
|
82737
|
+
|
|
82738
|
+
var HtDrawer_component = normalizeComponent(
|
|
82739
|
+
packages_HtDrawervue_type_script_lang_ts_,
|
|
82740
|
+
HtDrawervue_type_template_id_70c2853f_scoped_true_render,
|
|
82741
|
+
HtDrawervue_type_template_id_70c2853f_scoped_true_staticRenderFns,
|
|
82742
|
+
false,
|
|
82743
|
+
null,
|
|
82744
|
+
"70c2853f",
|
|
82745
|
+
null
|
|
82746
|
+
|
|
82747
|
+
)
|
|
82748
|
+
|
|
82749
|
+
/* harmony default export */ var HtDrawer = (HtDrawer_component.exports);
|
|
82750
|
+
// CONCATENATED MODULE: ./src/packages/HtDrawer/index.ts
|
|
82751
|
+
/*
|
|
82752
|
+
* @Descripttion: 基础数据展示组件
|
|
82753
|
+
* @version:
|
|
82754
|
+
* @Author: hutao
|
|
82755
|
+
* @Date: 2022-04-12 17:34:51
|
|
82756
|
+
* @LastEditors: hutao
|
|
82757
|
+
* @LastEditTime: 2022-09-28 11:18:26
|
|
82758
|
+
*/
|
|
82759
|
+
|
|
82760
|
+
|
|
82761
|
+
HtDrawer.install = function (Vue) {
|
|
82762
|
+
Vue.component("HtDrawer", HtDrawer);
|
|
82763
|
+
};
|
|
82764
|
+
|
|
82765
|
+
/* harmony default export */ var packages_HtDrawer = (HtDrawer);
|
|
82591
82766
|
// CONCATENATED MODULE: ./src/packages/index.ts
|
|
82592
82767
|
|
|
82593
82768
|
|
|
@@ -82598,7 +82773,7 @@ packages_HtShowBaseType.install = function (Vue) {
|
|
|
82598
82773
|
* @Author: hutao
|
|
82599
82774
|
* @Date: 2021-10-21 10:08:41
|
|
82600
82775
|
* @LastEditors: hutao
|
|
82601
|
-
* @LastEditTime: 2022-
|
|
82776
|
+
* @LastEditTime: 2022-09-28 11:19:36
|
|
82602
82777
|
*/
|
|
82603
82778
|
|
|
82604
82779
|
/** 下拉table选择控件 */
|
|
@@ -82618,9 +82793,10 @@ packages_HtShowBaseType.install = function (Vue) {
|
|
|
82618
82793
|
|
|
82619
82794
|
|
|
82620
82795
|
|
|
82796
|
+
|
|
82621
82797
|
// 存储组件列表
|
|
82622
82798
|
|
|
82623
|
-
var components = [packages_HtBaseData, src_packages_HtShowBaseType, packages_SelectTable, packages_PageInfo, src_packages_HtTable, src_packages_HtExport, src_packages_HtUpload, src_packages_HtMd, src_packages_HtCountDown, src_packages_HtUploadFiles, src_packages_HtSelectBaseData, src_packages_HtSelectOrg, src_packages_HtSelectUser, packages_HtShowBaseData, packages_HtOrgInfo]; // 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
82799
|
+
var components = [packages_HtBaseData, packages_HtDrawer, src_packages_HtShowBaseType, packages_SelectTable, packages_PageInfo, src_packages_HtTable, src_packages_HtExport, src_packages_HtUpload, src_packages_HtMd, src_packages_HtCountDown, src_packages_HtUploadFiles, src_packages_HtSelectBaseData, src_packages_HtSelectOrg, src_packages_HtSelectUser, packages_HtShowBaseData, packages_HtOrgInfo]; // 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
82624
82800
|
|
|
82625
82801
|
var install = function install(Vue) {
|
|
82626
82802
|
// 判断是否安装
|
|
@@ -82654,7 +82830,8 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
82654
82830
|
HtSelectUser: src_packages_HtSelectUser,
|
|
82655
82831
|
HtShowBaseData: packages_HtShowBaseData,
|
|
82656
82832
|
HtOrgInfo: packages_HtOrgInfo,
|
|
82657
|
-
HtBaseData: packages_HtBaseData
|
|
82833
|
+
HtBaseData: packages_HtBaseData,
|
|
82834
|
+
HtDrawer: packages_HtDrawer
|
|
82658
82835
|
});
|
|
82659
82836
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
82660
82837
|
|
package/lib/htui.umd.js.gz
CHANGED
|
Binary file
|