@fmdeui/fmui 1.0.108 → 1.0.110
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/es/api/index.d.ts +4 -0
- package/es/index.mjs +1 -1
- package/es/packages/api/index.mjs +39 -1
- package/es/packages/components/fm-autocomplete/component/supplierSelectDialog.vue2.mjs +6 -14
- package/index.js +53 -22
- package/index.min.js +6 -6
- package/index.min.mjs +6 -6
- package/index.mjs +53 -23
- package/lib/api/index.d.ts +4 -0
- package/lib/index.js +1 -0
- package/lib/packages/api/index.js +39 -0
- package/lib/packages/components/fm-autocomplete/component/supplierSelectDialog.vue2.js +5 -13
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/package.json +1 -1
- /package/es/{component.css → make-installer.css} +0 -0
- /package/lib/{component.css → index.css} +0 -0
package/es/api/index.d.ts
CHANGED
package/es/index.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import commonFunction from './packages/hooks/commonFunction.mjs';
|
|
|
6
6
|
export { default as other } from './packages/hooks/other.mjs';
|
|
7
7
|
export { default as initIconfont } from './packages/utils/getStyleSheets.mjs';
|
|
8
8
|
import './packages/types/index.mjs';
|
|
9
|
-
export { AccountTypeEnum, AppSysTypeData, AppSysTypeEnum, HttpMethodEnum, JobCreateTypeEnum, PowerAreaData } from './packages/api/index.mjs';
|
|
9
|
+
export { AccountTypeEnum, AppSysTypeData, AppSysTypeEnum, CurrencyData, HttpMethodEnum, JobCreateTypeEnum, PowerAreaData } from './packages/api/index.mjs';
|
|
10
10
|
import './packages/utils/index.mjs';
|
|
11
11
|
import './packages/stores/index.mjs';
|
|
12
12
|
import './packages/hooks/index.mjs';
|
|
@@ -164,5 +164,43 @@ const PowerAreaData = [
|
|
|
164
164
|
value: 5
|
|
165
165
|
}
|
|
166
166
|
];
|
|
167
|
+
const CurrencyData = [
|
|
168
|
+
{
|
|
169
|
+
label: "\u4EBA\u6C11\u5E01",
|
|
170
|
+
value: "CNY"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
label: "\u7F8E\u5143",
|
|
174
|
+
value: "USD"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
label: "\u6B27\u5143",
|
|
178
|
+
value: "EUR"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
label: "\u82F1\u9551",
|
|
182
|
+
value: "GBP"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
label: "\u65E5\u5143",
|
|
186
|
+
value: "JPY"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
label: "\u97E9\u5143",
|
|
190
|
+
value: "KRW"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
label: "\u6CF0\u94E2",
|
|
194
|
+
value: "THB"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
label: "\u8D8A\u5357\u76FE",
|
|
198
|
+
value: "VND"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
label: "\u8001\u631D\u57FA\u666E",
|
|
202
|
+
value: "LAK"
|
|
203
|
+
}
|
|
204
|
+
];
|
|
167
205
|
|
|
168
|
-
export { AccountTypeEnum, AppSysTypeData, AppSysTypeEnum, HttpMethodEnum, JobCreateTypeEnum, PowerAreaData };
|
|
206
|
+
export { AccountTypeEnum, AppSysTypeData, AppSysTypeEnum, CurrencyData, HttpMethodEnum, JobCreateTypeEnum, PowerAreaData };
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { defineComponent, ref, reactive, computed, onMounted, resolveComponent, openBlock, createBlock, isRef, unref, withCtx, createVNode, createElementVNode,
|
|
1
|
+
import { defineComponent, ref, reactive, computed, onMounted, resolveComponent, openBlock, createBlock, isRef, unref, withCtx, createVNode, createElementVNode, withKeys, createTextVNode, toDisplayString, createCommentVNode } from 'vue';
|
|
2
2
|
import '../../../api/index.mjs';
|
|
3
3
|
import { useBaseApi } from '../../../api/base/index.mjs';
|
|
4
4
|
|
|
5
5
|
const _hoisted_1 = { style: { "color": "#fff" } };
|
|
6
|
-
const _hoisted_2 = { style: { "
|
|
7
|
-
const _hoisted_3 = {
|
|
8
|
-
const _hoisted_4 = { class: "dialog-footer" };
|
|
6
|
+
const _hoisted_2 = { style: { "margin-top": "10px" } };
|
|
7
|
+
const _hoisted_3 = { class: "dialog-footer" };
|
|
9
8
|
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
10
9
|
__name: "supplierSelectDialog",
|
|
11
10
|
props: {
|
|
@@ -139,7 +138,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
139
138
|
])
|
|
140
139
|
]),
|
|
141
140
|
footer: withCtx(() => [
|
|
142
|
-
createElementVNode("div",
|
|
141
|
+
createElementVNode("div", _hoisted_3, [
|
|
143
142
|
createVNode(_component_el_button, {
|
|
144
143
|
icon: "ele-CircleCloseFilled",
|
|
145
144
|
onClick: closeDialog
|
|
@@ -160,16 +159,9 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
160
159
|
default: withCtx(() => [
|
|
161
160
|
createVNode(_component_el_row, { gutter: 10 }, {
|
|
162
161
|
default: withCtx(() => [
|
|
163
|
-
createVNode(_component_el_col, { span:
|
|
162
|
+
createVNode(_component_el_col, { span: 24 }, {
|
|
164
163
|
default: withCtx(() => [
|
|
165
|
-
createElementVNode(
|
|
166
|
-
"p",
|
|
167
|
-
_hoisted_2,
|
|
168
|
-
toDisplayString(_ctx.$t(__props.title)) + toDisplayString(_ctx.$t("\u5217\u8868")),
|
|
169
|
-
1
|
|
170
|
-
/* TEXT */
|
|
171
|
-
),
|
|
172
|
-
createElementVNode("div", _hoisted_3, [
|
|
164
|
+
createElementVNode("div", _hoisted_2, [
|
|
173
165
|
createVNode(_component_el_form, {
|
|
174
166
|
model: state.queryParams,
|
|
175
167
|
ref: "queryRef",
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.110 */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vxe-table'), require('@vxe-ui/plugin-render-element'), require('@vxe-ui/plugin-export-xlsx'), require('vxe-pc-ui'), require('exceljs'), require('@element-plus/icons-vue'), require('vue'), require('element-plus'), require('lodash-es'), require('js-cookie'), require('pinia'), require('vue-router'), require('@vueuse/core'), require('crypto-js'), require('xlsx-js-style'), require('vue-i18n'), require('sortablejs'), require('screenfull'), require('push.js'), require('mitt'), require('@microsoft/signalr'), require('axios')) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports', 'vxe-table', '@vxe-ui/plugin-render-element', '@vxe-ui/plugin-export-xlsx', 'vxe-pc-ui', 'exceljs', '@element-plus/icons-vue', 'vue', 'element-plus', 'lodash-es', 'js-cookie', 'pinia', 'vue-router', '@vueuse/core', 'crypto-js', 'xlsx-js-style', 'vue-i18n', 'sortablejs', 'screenfull', 'push.js', 'mitt', '@microsoft/signalr', 'axios'], factory) :
|
|
@@ -3726,6 +3726,44 @@
|
|
|
3726
3726
|
value: 5
|
|
3727
3727
|
}
|
|
3728
3728
|
];
|
|
3729
|
+
const CurrencyData = [
|
|
3730
|
+
{
|
|
3731
|
+
label: "\u4EBA\u6C11\u5E01",
|
|
3732
|
+
value: "CNY"
|
|
3733
|
+
},
|
|
3734
|
+
{
|
|
3735
|
+
label: "\u7F8E\u5143",
|
|
3736
|
+
value: "USD"
|
|
3737
|
+
},
|
|
3738
|
+
{
|
|
3739
|
+
label: "\u6B27\u5143",
|
|
3740
|
+
value: "EUR"
|
|
3741
|
+
},
|
|
3742
|
+
{
|
|
3743
|
+
label: "\u82F1\u9551",
|
|
3744
|
+
value: "GBP"
|
|
3745
|
+
},
|
|
3746
|
+
{
|
|
3747
|
+
label: "\u65E5\u5143",
|
|
3748
|
+
value: "JPY"
|
|
3749
|
+
},
|
|
3750
|
+
{
|
|
3751
|
+
label: "\u97E9\u5143",
|
|
3752
|
+
value: "KRW"
|
|
3753
|
+
},
|
|
3754
|
+
{
|
|
3755
|
+
label: "\u6CF0\u94E2",
|
|
3756
|
+
value: "THB"
|
|
3757
|
+
},
|
|
3758
|
+
{
|
|
3759
|
+
label: "\u8D8A\u5357\u76FE",
|
|
3760
|
+
value: "VND"
|
|
3761
|
+
},
|
|
3762
|
+
{
|
|
3763
|
+
label: "\u8001\u631D\u57FA\u666E",
|
|
3764
|
+
value: "LAK"
|
|
3765
|
+
}
|
|
3766
|
+
];
|
|
3729
3767
|
|
|
3730
3768
|
const useUserInfo = pinia$1.defineStore("userInfo", {
|
|
3731
3769
|
state: () => ({
|
|
@@ -21710,7 +21748,7 @@
|
|
|
21710
21748
|
const _hoisted_1$r = { class: "inside_box" };
|
|
21711
21749
|
const _hoisted_2$j = { class: "inside_box_title" };
|
|
21712
21750
|
const _hoisted_3$c = { class: "check-box" };
|
|
21713
|
-
const _hoisted_4$
|
|
21751
|
+
const _hoisted_4$8 = { class: "more_dropdown_icon" };
|
|
21714
21752
|
const _hoisted_5$7 = { class: "out_box" };
|
|
21715
21753
|
var _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
21716
21754
|
...{
|
|
@@ -21832,7 +21870,7 @@
|
|
|
21832
21870
|
ref: "popover"
|
|
21833
21871
|
}, {
|
|
21834
21872
|
reference: vue.withCtx(() => [
|
|
21835
|
-
vue.createElementVNode("div", _hoisted_4$
|
|
21873
|
+
vue.createElementVNode("div", _hoisted_4$8, [
|
|
21836
21874
|
vue.createElementVNode(
|
|
21837
21875
|
"span",
|
|
21838
21876
|
_hoisted_5$7,
|
|
@@ -22730,7 +22768,7 @@
|
|
|
22730
22768
|
};
|
|
22731
22769
|
const _hoisted_2$i = ["element-loading-text"];
|
|
22732
22770
|
const _hoisted_3$b = { key: 2 };
|
|
22733
|
-
const _hoisted_4$
|
|
22771
|
+
const _hoisted_4$7 = {
|
|
22734
22772
|
key: 0,
|
|
22735
22773
|
class: "f-table-select__page"
|
|
22736
22774
|
};
|
|
@@ -23517,7 +23555,7 @@
|
|
|
23517
23555
|
_: 3
|
|
23518
23556
|
/* FORWARDED */
|
|
23519
23557
|
}, 16, ["data", "class"]),
|
|
23520
|
-
__props.isShowPagination ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_4$
|
|
23558
|
+
__props.isShowPagination ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_4$7, [
|
|
23521
23559
|
vue.createVNode(_component_el_pagination, vue.mergeProps({
|
|
23522
23560
|
"current-page": __props.table.currentPage,
|
|
23523
23561
|
"onUpdate:currentPage": _cache[6] || (_cache[6] = ($event) => __props.table.currentPage = $event),
|
|
@@ -24519,7 +24557,7 @@
|
|
|
24519
24557
|
const _hoisted_1$n = { class: "layout-breadcrumb-seting" };
|
|
24520
24558
|
const _hoisted_2$g = { class: "layout-breadcrumb-seting-bar-flex" };
|
|
24521
24559
|
const _hoisted_3$a = { class: "layout-breadcrumb-seting-bar-flex-label" };
|
|
24522
|
-
const _hoisted_4$
|
|
24560
|
+
const _hoisted_4$6 = { class: "layout-breadcrumb-seting-bar-flex-value" };
|
|
24523
24561
|
const _hoisted_5$6 = { style: { "margin": "10px 0" } };
|
|
24524
24562
|
const _hoisted_6$3 = { class: "layout-breadcrumb-seting-bar-flex mt15" };
|
|
24525
24563
|
const _hoisted_7$3 = { class: "layout-breadcrumb-seting-bar-flex-label" };
|
|
@@ -24938,7 +24976,7 @@
|
|
|
24938
24976
|
1
|
|
24939
24977
|
/* TEXT */
|
|
24940
24978
|
),
|
|
24941
|
-
vue.createElementVNode("div", _hoisted_4$
|
|
24979
|
+
vue.createElementVNode("div", _hoisted_4$6, [
|
|
24942
24980
|
vue.createVNode(_component_el_color_picker, {
|
|
24943
24981
|
modelValue: getThemeConfig.value.primary,
|
|
24944
24982
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => getThemeConfig.value.primary = $event),
|
|
@@ -26984,7 +27022,7 @@
|
|
|
26984
27022
|
const _hoisted_1$m = { style: { "color": "#fff" } };
|
|
26985
27023
|
const _hoisted_2$f = { style: { "padding": "8px 16px", "background-color": "var(--el-color-primary-light-9)", "border-left": "5px solid var(--el-color-primary)", "margin-bottom": "5px" } };
|
|
26986
27024
|
const _hoisted_3$9 = { style: { "padding": "8px 16px", "background-color": "var(--el-color-primary-light-9)", "border-left": "5px solid var(--el-color-primary)", "margin-bottom": "5px" } };
|
|
26987
|
-
const _hoisted_4$
|
|
27025
|
+
const _hoisted_4$5 = { style: { "margin-top": "10px" } };
|
|
26988
27026
|
const _hoisted_5$5 = { class: "dialog-footer" };
|
|
26989
27027
|
var _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
26990
27028
|
__name: "userSelectDialog",
|
|
@@ -27196,7 +27234,7 @@
|
|
|
27196
27234
|
1
|
|
27197
27235
|
/* TEXT */
|
|
27198
27236
|
),
|
|
27199
|
-
vue.createElementVNode("div", _hoisted_4$
|
|
27237
|
+
vue.createElementVNode("div", _hoisted_4$5, [
|
|
27200
27238
|
vue.createVNode(_component_el_form, {
|
|
27201
27239
|
model: state.queryParams,
|
|
27202
27240
|
ref: "queryRef",
|
|
@@ -27376,9 +27414,8 @@
|
|
|
27376
27414
|
});
|
|
27377
27415
|
|
|
27378
27416
|
const _hoisted_1$l = { style: { "color": "#fff" } };
|
|
27379
|
-
const _hoisted_2$e = { style: { "
|
|
27380
|
-
const _hoisted_3$8 = {
|
|
27381
|
-
const _hoisted_4$5 = { class: "dialog-footer" };
|
|
27417
|
+
const _hoisted_2$e = { style: { "margin-top": "10px" } };
|
|
27418
|
+
const _hoisted_3$8 = { class: "dialog-footer" };
|
|
27382
27419
|
var _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
27383
27420
|
__name: "supplierSelectDialog",
|
|
27384
27421
|
props: {
|
|
@@ -27512,7 +27549,7 @@
|
|
|
27512
27549
|
])
|
|
27513
27550
|
]),
|
|
27514
27551
|
footer: vue.withCtx(() => [
|
|
27515
|
-
vue.createElementVNode("div",
|
|
27552
|
+
vue.createElementVNode("div", _hoisted_3$8, [
|
|
27516
27553
|
vue.createVNode(_component_el_button, {
|
|
27517
27554
|
icon: "ele-CircleCloseFilled",
|
|
27518
27555
|
onClick: closeDialog
|
|
@@ -27533,16 +27570,9 @@
|
|
|
27533
27570
|
default: vue.withCtx(() => [
|
|
27534
27571
|
vue.createVNode(_component_el_row, { gutter: 10 }, {
|
|
27535
27572
|
default: vue.withCtx(() => [
|
|
27536
|
-
vue.createVNode(_component_el_col, { span:
|
|
27573
|
+
vue.createVNode(_component_el_col, { span: 24 }, {
|
|
27537
27574
|
default: vue.withCtx(() => [
|
|
27538
|
-
vue.createElementVNode(
|
|
27539
|
-
"p",
|
|
27540
|
-
_hoisted_2$e,
|
|
27541
|
-
vue.toDisplayString(_ctx.$t(__props.title)) + vue.toDisplayString(_ctx.$t("\u5217\u8868")),
|
|
27542
|
-
1
|
|
27543
|
-
/* TEXT */
|
|
27544
|
-
),
|
|
27545
|
-
vue.createElementVNode("div", _hoisted_3$8, [
|
|
27575
|
+
vue.createElementVNode("div", _hoisted_2$e, [
|
|
27546
27576
|
vue.createVNode(_component_el_form, {
|
|
27547
27577
|
model: state.queryParams,
|
|
27548
27578
|
ref: "queryRef",
|
|
@@ -32355,6 +32385,7 @@
|
|
|
32355
32385
|
exports.AccountTypeEnum = AccountTypeEnum;
|
|
32356
32386
|
exports.AppSysTypeData = AppSysTypeData;
|
|
32357
32387
|
exports.AppSysTypeEnum = AppSysTypeEnum;
|
|
32388
|
+
exports.CurrencyData = CurrencyData;
|
|
32358
32389
|
exports.HttpMethodEnum = HttpMethodEnum;
|
|
32359
32390
|
exports.JobCreateTypeEnum = JobCreateTypeEnum;
|
|
32360
32391
|
exports.Local = Local;
|