sun-biz 0.0.4-beta.21 → 0.0.4-beta.22
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/dist/components/index.js +16 -10
- package/dist/index.js +16 -10
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
|
@@ -4171,7 +4171,7 @@ const patient_accessvue_type_script_setup_true_lang_ts_hoisted_1 = {
|
|
|
4171
4171
|
columns: res.data.titleAndAttribute,
|
|
4172
4172
|
data: res.data.data.data ?? []
|
|
4173
4173
|
};
|
|
4174
|
-
handleSearchResult(accessResult.value);
|
|
4174
|
+
handleSearchResult(accessResult.value, cardInfo);
|
|
4175
4175
|
}
|
|
4176
4176
|
};
|
|
4177
4177
|
/**
|
|
@@ -9430,7 +9430,7 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9430
9430
|
__name: 'index',
|
|
9431
9431
|
props: {
|
|
9432
9432
|
btnTitle: {
|
|
9433
|
-
default:
|
|
9433
|
+
default: '新患者'
|
|
9434
9434
|
},
|
|
9435
9435
|
code: {},
|
|
9436
9436
|
menuId: {},
|
|
@@ -9447,9 +9447,9 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9447
9447
|
invoiceConfig: {}
|
|
9448
9448
|
},
|
|
9449
9449
|
emits: [
|
|
9450
|
-
|
|
9451
|
-
|
|
9452
|
-
|
|
9450
|
+
'searchChange',
|
|
9451
|
+
'invoiceChange',
|
|
9452
|
+
'clear',
|
|
9453
9453
|
'avatarClick'
|
|
9454
9454
|
],
|
|
9455
9455
|
setup (__props, { expose: __expose, emit: __emit }) {
|
|
@@ -9471,13 +9471,13 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9471
9471
|
return false;
|
|
9472
9472
|
});
|
|
9473
9473
|
/** 检索方法 */ const handleSearchChange = async (data)=>{
|
|
9474
|
-
emit(
|
|
9474
|
+
emit('searchChange', data);
|
|
9475
9475
|
};
|
|
9476
9476
|
/** 新患者按钮 */ const clearFn = async ()=>{
|
|
9477
|
-
emit(
|
|
9477
|
+
emit('clear');
|
|
9478
9478
|
};
|
|
9479
9479
|
/** 票据方法 */ const handleInvoiceChange = async (data)=>{
|
|
9480
|
-
emit(
|
|
9480
|
+
emit('invoiceChange', data);
|
|
9481
9481
|
};
|
|
9482
9482
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.watch)(()=>__props.bannerConfig?.bizId, ()=>{});
|
|
9483
9483
|
__expose({
|
|
@@ -9487,6 +9487,7 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9487
9487
|
});
|
|
9488
9488
|
return (_ctx, _cache)=>{
|
|
9489
9489
|
const _component_el_button = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveComponent)("el-button");
|
|
9490
|
+
const _directive_shortcut = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveDirective)("shortcut");
|
|
9490
9491
|
return (0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createElementBlock)("div", access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_1, [
|
|
9491
9492
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createElementVNode)("div", access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_2, [
|
|
9492
9493
|
searchCode.value && _ctx.menuId ? ((0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(patient_access), {
|
|
@@ -9501,7 +9502,7 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9501
9502
|
"code"
|
|
9502
9503
|
])) : (0, __WEBPACK_EXTERNAL_MODULE_vue__.createCommentVNode)("", true),
|
|
9503
9504
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createElementVNode)("div", access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3, [
|
|
9504
|
-
_ctx.clearBtn ? ((0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)(_component_el_button, {
|
|
9505
|
+
_ctx.clearBtn ? (0, __WEBPACK_EXTERNAL_MODULE_vue__.withDirectives)(((0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)(_component_el_button, {
|
|
9505
9506
|
key: 0,
|
|
9506
9507
|
type: "primary",
|
|
9507
9508
|
plain: "",
|
|
@@ -9511,7 +9512,12 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9511
9512
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createTextVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.toDisplayString)(_ctx.btnTitle), 1)
|
|
9512
9513
|
]),
|
|
9513
9514
|
_: 1
|
|
9514
|
-
}))
|
|
9515
|
+
})), [
|
|
9516
|
+
[
|
|
9517
|
+
_directive_shortcut,
|
|
9518
|
+
'Ctrl+C'
|
|
9519
|
+
]
|
|
9520
|
+
]) : (0, __WEBPACK_EXTERNAL_MODULE_vue__.createCommentVNode)("", true),
|
|
9515
9521
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.renderSlot)(_ctx.$slots, "default"),
|
|
9516
9522
|
_ctx.invoiceConfig ? ((0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(invoice), {
|
|
9517
9523
|
key: 1,
|
package/dist/index.js
CHANGED
|
@@ -4663,7 +4663,7 @@ const patient_accessvue_type_script_setup_true_lang_ts_hoisted_1 = {
|
|
|
4663
4663
|
columns: res.data.titleAndAttribute,
|
|
4664
4664
|
data: res.data.data.data ?? []
|
|
4665
4665
|
};
|
|
4666
|
-
handleSearchResult(accessResult.value);
|
|
4666
|
+
handleSearchResult(accessResult.value, cardInfo);
|
|
4667
4667
|
}
|
|
4668
4668
|
};
|
|
4669
4669
|
/**
|
|
@@ -9778,7 +9778,7 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9778
9778
|
__name: 'index',
|
|
9779
9779
|
props: {
|
|
9780
9780
|
btnTitle: {
|
|
9781
|
-
default:
|
|
9781
|
+
default: '新患者'
|
|
9782
9782
|
},
|
|
9783
9783
|
code: {},
|
|
9784
9784
|
menuId: {},
|
|
@@ -9795,9 +9795,9 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9795
9795
|
invoiceConfig: {}
|
|
9796
9796
|
},
|
|
9797
9797
|
emits: [
|
|
9798
|
-
|
|
9799
|
-
|
|
9800
|
-
|
|
9798
|
+
'searchChange',
|
|
9799
|
+
'invoiceChange',
|
|
9800
|
+
'clear',
|
|
9801
9801
|
'avatarClick'
|
|
9802
9802
|
],
|
|
9803
9803
|
setup (__props, { expose: __expose, emit: __emit }) {
|
|
@@ -9819,13 +9819,13 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9819
9819
|
return false;
|
|
9820
9820
|
});
|
|
9821
9821
|
/** 检索方法 */ const handleSearchChange = async (data)=>{
|
|
9822
|
-
emit(
|
|
9822
|
+
emit('searchChange', data);
|
|
9823
9823
|
};
|
|
9824
9824
|
/** 新患者按钮 */ const clearFn = async ()=>{
|
|
9825
|
-
emit(
|
|
9825
|
+
emit('clear');
|
|
9826
9826
|
};
|
|
9827
9827
|
/** 票据方法 */ const handleInvoiceChange = async (data)=>{
|
|
9828
|
-
emit(
|
|
9828
|
+
emit('invoiceChange', data);
|
|
9829
9829
|
};
|
|
9830
9830
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.watch)(()=>__props.bannerConfig?.bizId, ()=>{});
|
|
9831
9831
|
__expose({
|
|
@@ -9835,6 +9835,7 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9835
9835
|
});
|
|
9836
9836
|
return (_ctx, _cache)=>{
|
|
9837
9837
|
const _component_el_button = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveComponent)("el-button");
|
|
9838
|
+
const _directive_shortcut = (0, __WEBPACK_EXTERNAL_MODULE_vue__.resolveDirective)("shortcut");
|
|
9838
9839
|
return (0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createElementBlock)("div", access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_1, [
|
|
9839
9840
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createElementVNode)("div", access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_2, [
|
|
9840
9841
|
searchCode.value && _ctx.menuId ? ((0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(patient_access), {
|
|
@@ -9849,7 +9850,7 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9849
9850
|
"code"
|
|
9850
9851
|
])) : (0, __WEBPACK_EXTERNAL_MODULE_vue__.createCommentVNode)("", true),
|
|
9851
9852
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createElementVNode)("div", access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3, [
|
|
9852
|
-
_ctx.clearBtn ? ((0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)(_component_el_button, {
|
|
9853
|
+
_ctx.clearBtn ? (0, __WEBPACK_EXTERNAL_MODULE_vue__.withDirectives)(((0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)(_component_el_button, {
|
|
9853
9854
|
key: 0,
|
|
9854
9855
|
type: "primary",
|
|
9855
9856
|
plain: "",
|
|
@@ -9859,7 +9860,12 @@ const access_infovue_type_script_setup_true_lang_ts_name_accessInfo_hoisted_3 =
|
|
|
9859
9860
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.createTextVNode)((0, __WEBPACK_EXTERNAL_MODULE_vue__.toDisplayString)(_ctx.btnTitle), 1)
|
|
9860
9861
|
]),
|
|
9861
9862
|
_: 1
|
|
9862
|
-
}))
|
|
9863
|
+
})), [
|
|
9864
|
+
[
|
|
9865
|
+
_directive_shortcut,
|
|
9866
|
+
'Ctrl+C'
|
|
9867
|
+
]
|
|
9868
|
+
]) : (0, __WEBPACK_EXTERNAL_MODULE_vue__.createCommentVNode)("", true),
|
|
9863
9869
|
(0, __WEBPACK_EXTERNAL_MODULE_vue__.renderSlot)(_ctx.$slots, "default"),
|
|
9864
9870
|
_ctx.invoiceConfig ? ((0, __WEBPACK_EXTERNAL_MODULE_vue__.openBlock)(), (0, __WEBPACK_EXTERNAL_MODULE_vue__.createBlock)((0, __WEBPACK_EXTERNAL_MODULE_vue__.unref)(invoice), {
|
|
9865
9871
|
key: 1,
|