@bytenew/bn-bus-ui 1.1.461 → 1.1.463
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/install.js +134 -0
- package/package.json +20 -4
- package/packages/BnAddress/index.vue +141 -0
- package/packages/BnAddressParse/index.vue +75 -0
- package/packages/BnAdvancedFilter/BnFilterView.vue +145 -0
- package/packages/BnAdvancedFilter/index.vue +345 -0
- package/packages/BnAdvancedFilter/util.js +171 -0
- package/packages/BnCascader/BnCascader.vue +543 -0
- package/packages/BnCascader/BnCascaderPanel.vue +1331 -0
- package/packages/BnCascader/cascaderDisplay.js +102 -0
- package/packages/BnCheck/BnCheck.vue +253 -0
- package/packages/BnColumnConfig/columnConfigDialog.vue +134 -0
- package/packages/BnColumnConfig/component/childrenFormSetting/assocTable.vue +143 -0
- package/packages/BnColumnConfig/component/childrenFormSetting/assocTableSearch.vue +314 -0
- package/packages/BnColumnConfig/component/childrenFormSetting/index.vue +243 -0
- package/packages/BnColumnConfig/component/defaultSet/defaultSet.vue +114 -0
- package/packages/BnColumnConfig/component/defaultSet/stringDefault.vue +210 -0
- package/packages/BnColumnConfig/component/funcExprDialog/funcExprDialog.vue +126 -0
- package/packages/BnColumnConfig/component/packageFilter/index.vue +141 -0
- package/packages/BnColumnConfig/component/paraExplainSet/index.vue +156 -0
- package/packages/BnColumnConfig/component/setOption/setOption.vue +321 -0
- package/packages/BnColumnConfig/component/setRelationOption/ConditionList.vue +277 -0
- package/packages/BnColumnConfig/component/setRelationOption/LevelHeader.vue +144 -0
- package/packages/BnColumnConfig/component/setRelationOption/setRelationOption.vue +642 -0
- package/packages/BnColumnConfig/data.js +129 -0
- package/packages/BnColumnConfig/index.scss +23 -0
- package/packages/BnColumnConfig/index.vue +309 -0
- package/packages/BnCondVal/BnCondVal.vue +112 -0
- package/packages/BnCondVal/itemVal/dateRegVal.vue +39 -0
- package/packages/BnCondVal/itemVal/dateVal.vue +39 -0
- package/packages/BnCondVal/itemVal/numRegVal.vue +67 -0
- package/packages/BnCondVal/itemVal/numVal.vue +44 -0
- package/packages/BnCondVal/itemVal/relationVal.vue +73 -0
- package/packages/BnCondVal/itemVal/selectColumnVal.vue +58 -0
- package/packages/BnCondVal/itemVal/selectVal.vue +59 -0
- package/packages/BnCondVal/itemVal/stringVal.vue +156 -0
- package/packages/BnCondition/index.vue +551 -0
- package/packages/BnCondition/util.js +232 -0
- package/packages/BnDatePicker/BnDatePicker.vue +194 -0
- package/packages/BnDrop/BnDrop.vue +917 -0
- package/packages/BnEmptyTip/BnEmptyTip.vue +107 -0
- package/packages/BnExportOrder/BnExportOrder.vue +241 -0
- package/packages/BnExportOrder/validatorCode.vue +94 -0
- package/packages/BnFileView/BnFileView.vue +271 -0
- package/packages/BnFileView/FileDetail.vue +125 -0
- package/packages/BnFileView/videoPreview.vue +70 -0
- package/packages/BnFilterOption/BnFilterOption.vue +160 -0
- package/packages/BnFunExpr/BnFunExpr.vue +608 -0
- package/packages/BnImportOrder/BnImportOrder.vue +323 -0
- package/packages/BnImportTemplate/BnImportTemplate.vue +866 -0
- package/packages/BnImportTemplate/assets/merge_tip_img.png +0 -0
- package/packages/BnImportTemplate/assets/sheet_tip.png +0 -0
- package/packages/BnImportTemplate/assets/xls.png +0 -0
- package/packages/BnImportTemplate/components/ImportTemplateTrigger.vue +198 -0
- package/packages/BnImportTemplate/components/TemplateEditDialog.vue +340 -0
- package/packages/BnImportTemplate/components/TemplateFieldsConfig.vue +401 -0
- package/packages/BnImportTemplate/components/TemplateListDialog.vue +297 -0
- package/packages/BnInpNum/BnInpNum.vue +165 -0
- package/packages/BnMenus/BnMenus.vue +502 -0
- package/packages/BnMenus/MenuItem.vue +321 -0
- package/packages/BnOrderCard/BnOrderCard.vue +389 -0
- package/packages/BnOrderCard/orderRemark.vue +178 -0
- package/packages/BnOrderCard/util.js +94 -0
- package/packages/BnOrderDetail/BnOrderDetail.vue +338 -0
- package/packages/BnOrderDetail/filterLogByUser.vue +108 -0
- package/packages/BnOrderDetail/orderLogs.vue +53 -0
- package/packages/BnOrderDetail/showSubForm/index.vue +41 -0
- package/packages/BnOrderDetail/showSubForm/showChildTable.vue +61 -0
- package/packages/BnOrderDetail/showSubForm/showTimeLine.vue +131 -0
- package/packages/BnOrderDetail/showSubForm/tableCellCopy.vue +84 -0
- package/packages/BnOrderShare/index.vue +378 -0
- package/packages/BnOrderShare/shareUrlInp.vue +54 -0
- package/packages/BnRadio/BnRadio.vue +181 -0
- package/packages/BnRelation/BnRelation.vue +120 -0
- package/packages/BnSelect/BnSelect.vue +485 -0
- package/packages/BnSmartForm/BnBatchForm.vue +334 -0
- package/packages/BnSmartForm/BnBatchFormDialog.vue +423 -0
- package/packages/BnSmartForm/BnSmartElf/elfLog/index.vue +57 -0
- package/packages/BnSmartForm/BnSmartElf/index.vue +95 -0
- package/packages/BnSmartForm/BnSmartFormPsychic.js +629 -0
- package/packages/BnSmartForm/BnSmartFormUtil.js +524 -0
- package/packages/BnSmartForm/addressForm/index.vue +73 -0
- package/packages/BnSmartForm/checkboxForm/index.vue +99 -0
- package/packages/BnSmartForm/childrenForm/childFormFile.vue +237 -0
- package/packages/BnSmartForm/childrenForm/childrenFormBody.vue +260 -0
- package/packages/BnSmartForm/childrenForm/index.vue +110 -0
- package/packages/BnSmartForm/childrenForm/searchInventory.vue +115 -0
- package/packages/BnSmartForm/chooseAssocTable/chooseAssocTable.vue +451 -0
- package/packages/BnSmartForm/chooseAssocTable/chooseChildGood.vue +229 -0
- package/packages/BnSmartForm/chooseAssocTable/tableCellCopy.vue +84 -0
- package/packages/BnSmartForm/chooseChildOrder/chooseChildOrder.vue +158 -0
- package/packages/BnSmartForm/chooseIPaasData/chooseIPaasData.vue +307 -0
- package/packages/BnSmartForm/chooseIPaasData/tableCellCopy.vue +84 -0
- package/packages/BnSmartForm/choosePackage/choosePackage.vue +361 -0
- package/packages/BnSmartForm/dateDualForm/index.vue +37 -0
- package/packages/BnSmartForm/dateForm/index.vue +38 -0
- package/packages/BnSmartForm/fileForm/fileFormData.js +50 -0
- package/packages/BnSmartForm/fileForm/index.vue +240 -0
- package/packages/BnSmartForm/formItemFooter/formItemFooter.vue +38 -0
- package/packages/BnSmartForm/formItemTop/formItemTop.vue +42 -0
- package/packages/BnSmartForm/index.vue +1201 -0
- package/packages/BnSmartForm/numberForm/index.vue +63 -0
- package/packages/BnSmartForm/radioForm/index.vue +72 -0
- package/packages/BnSmartForm/receiveForm/index.vue +112 -0
- package/packages/BnSmartForm/relationForm/index.vue +82 -0
- package/packages/BnSmartForm/scoreForm/index.vue +39 -0
- package/packages/BnSmartForm/selectForm/index.vue +55 -0
- package/packages/BnSmartForm/showValForm/index.vue +42 -0
- package/packages/BnSmartForm/showValForm/showValFormTable.vue +104 -0
- package/packages/BnSmartForm/smartFormsCommon.scss +43 -0
- package/packages/BnSmartForm/stringForm/index.vue +170 -0
- package/packages/BnVirtPopover/index.vue +319 -0
- package/packages/BnWebLog/BnWebLog.vue +140 -0
- package/packages/BnWorkSettingDrop/advancedOptions.js +112 -0
- package/packages/BnWorkSettingDrop/benBenAIUtil.js +89 -0
- package/packages/BnWorkSettingDrop/index.vue +292 -0
- package/packages/font/iconfont.css +243 -0
- package/packages/font/iconfont.ttf +0 -0
- package/packages/font/iconfont.woff +0 -0
- package/packages/font/iconfont.woff2 +0 -0
- package/utils/addressParse-old.js +645 -0
- package/utils/addressParse.js +735 -0
- package/utils/config.js +68 -0
- package/utils/index.js +1171 -0
- package/dist/assocTableSearch-C14i_zJO.js +0 -349
- package/dist/assocTableSearch.css +0 -1
- package/dist/bn-bus-ui.es.js +0 -65
- package/dist/bn-bus-ui.umd.js +0 -49
- package/dist/chooseIPaasData-Cl_5qkFA.js +0 -391
- package/dist/chooseIPaasData.css +0 -1
- package/dist/defaultSet-I4xpf8a4.js +0 -297
- package/dist/defaultSet.css +0 -1
- package/dist/fileFormData-D_Q1vylE.js +0 -53
- package/dist/formItemFooter-CTA7rDtV.js +0 -108
- package/dist/formItemFooter.css +0 -1
- package/dist/funcExprDialog-Cm5BiRM3.js +0 -139
- package/dist/funcExprDialog.css +0 -1
- package/dist/index-B6b4uj8v.js +0 -51
- package/dist/index-BWdkDTbz.js +0 -109
- package/dist/index-BdZ1zOap.js +0 -89
- package/dist/index-BdzNjjMC.js +0 -64
- package/dist/index-BfpZqab2.js +0 -66
- package/dist/index-BmkiB4hr.js +0 -66
- package/dist/index-Br1sqCoo.js +0 -58
- package/dist/index-C9qrl-yc.js +0 -183
- package/dist/index-CXFJXCn5.js +0 -746
- package/dist/index-DF114jZq.js +0 -135
- package/dist/index-DFPfZ_Il.js +0 -178
- package/dist/index-DSEtu7TN.js +0 -44
- package/dist/index-Did0UUWV.js +0 -221
- package/dist/index-DrPj-tmI.js +0 -45
- package/dist/index-DzDf9s2W.js +0 -89
- package/dist/index-LnjudNEI.js +0 -118
- package/dist/index-ObCfCmDT.js +0 -45
- package/dist/index.css +0 -1
- package/dist/index2.css +0 -1
- package/dist/index3.css +0 -1
- package/dist/index4.css +0 -1
- package/dist/index5.css +0 -1
- package/dist/index6.css +0 -1
- package/dist/index7.css +0 -1
- package/dist/install-C-scqkds.js +0 -23103
- package/dist/install.css +0 -1
- package/dist/setOption-CSnWzOny.js +0 -329
- package/dist/setOption.css +0 -1
- package/dist/setRelationOption-CJcHdfaa.js +0 -5217
- package/dist/setRelationOption.css +0 -1
package/dist/index-DzDf9s2W.js
DELETED
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { debounce as h } from "lodash";
|
|
2
|
-
import { resolveComponent as n, openBlock as f, createElementBlock as w, createElementVNode as o, createVNode as l, withCtx as c, createTextVNode as r } from "vue";
|
|
3
|
-
import { _ } from "./install-C-scqkds.js";
|
|
4
|
-
const g = {
|
|
5
|
-
name: "BnAddressParse",
|
|
6
|
-
props: {
|
|
7
|
-
postFunc: Function
|
|
8
|
-
},
|
|
9
|
-
data() {
|
|
10
|
-
return {
|
|
11
|
-
address: "",
|
|
12
|
-
record: ""
|
|
13
|
-
};
|
|
14
|
-
},
|
|
15
|
-
methods: {
|
|
16
|
-
/**
|
|
17
|
-
* 自动识别方法(使用防抖)
|
|
18
|
-
*/
|
|
19
|
-
autoAds: h(function() {
|
|
20
|
-
!this.address || this.address == this.record || this.postFunc("/address/parse", { address: this.address }).then((e) => {
|
|
21
|
-
if (!e.code && e.data) {
|
|
22
|
-
let t = [];
|
|
23
|
-
["province", "city", "area", "street"].forEach((a, s) => {
|
|
24
|
-
e.data[a] && t.push({
|
|
25
|
-
id: e.data[`${a}Id`],
|
|
26
|
-
code: e.data[`${a}Id`],
|
|
27
|
-
title: e.data[a],
|
|
28
|
-
parentId: s ? t[s - 1].id : 1,
|
|
29
|
-
type: s + 2
|
|
30
|
-
//这个是后端定义的字段,不知道为啥是从2开始的
|
|
31
|
-
});
|
|
32
|
-
});
|
|
33
|
-
let d = {
|
|
34
|
-
name: e.data.name || "",
|
|
35
|
-
phone: e.data.phone || "",
|
|
36
|
-
detail: e.data.detail || "",
|
|
37
|
-
address: t
|
|
38
|
-
};
|
|
39
|
-
this.record = this.address, this.$emit("parse", d);
|
|
40
|
-
}
|
|
41
|
-
});
|
|
42
|
-
}, 60)
|
|
43
|
-
}
|
|
44
|
-
}, v = { class: "w-default-wrap" }, B = { class: "w-margin-bottom10 w-flex-center" };
|
|
45
|
-
function V(e, t, p, d, a, s) {
|
|
46
|
-
const i = n("el-popover"), u = n("el-input");
|
|
47
|
-
return f(), w("div", v, [
|
|
48
|
-
o("div", B, [
|
|
49
|
-
l(i, {
|
|
50
|
-
placement: "top-start",
|
|
51
|
-
width: 400,
|
|
52
|
-
trigger: "hover",
|
|
53
|
-
"show-arrow": !1
|
|
54
|
-
}, {
|
|
55
|
-
reference: c(() => [...t[1] || (t[1] = [
|
|
56
|
-
o("span", { class: "bnUIcon bnUIcon-searchAuto w-color-orange w-font22 w-margin-right10" }, null, -1)
|
|
57
|
-
])]),
|
|
58
|
-
default: c(() => [
|
|
59
|
-
t[2] || (t[2] = o("div", { class: "w-font13 w-margin-bottom5" }, [
|
|
60
|
-
o("div", null, [
|
|
61
|
-
r("地址自动识别用于辅助回填繁琐的地址信息,但任何自动化识别都会存在一定错误率。 为了你的愉快使用,请尽量使用格式规范的完整地址信息进行识别,比如包含完整的 "),
|
|
62
|
-
o("span", { class: "w-color-orange" }, "省市区级别标识"),
|
|
63
|
-
r(" , "),
|
|
64
|
-
o("span", { class: "w-color-orange" }, "姓名和手机号尽量放在地址前面"),
|
|
65
|
-
r(" ,不要穿插其中。 ")
|
|
66
|
-
]),
|
|
67
|
-
o("div", null, [
|
|
68
|
-
o("span", { class: "w-color-red" }, "文案不规范、信息有缺都有可能造成识别率下降,拆分地址出错。"),
|
|
69
|
-
o("span", null, "遇见这种情况请您手动调整文案并重试")
|
|
70
|
-
])
|
|
71
|
-
], -1))
|
|
72
|
-
]),
|
|
73
|
-
_: 1
|
|
74
|
-
}),
|
|
75
|
-
l(u, {
|
|
76
|
-
modelValue: a.address,
|
|
77
|
-
"onUpdate:modelValue": t[0] || (t[0] = (m) => a.address = m),
|
|
78
|
-
placeholder: "输入地址后自动识别",
|
|
79
|
-
clearable: "",
|
|
80
|
-
onChange: s.autoAds,
|
|
81
|
-
onBlur: s.autoAds
|
|
82
|
-
}, null, 8, ["modelValue", "onChange", "onBlur"])
|
|
83
|
-
])
|
|
84
|
-
]);
|
|
85
|
-
}
|
|
86
|
-
const x = /* @__PURE__ */ _(g, [["render", V]]);
|
|
87
|
-
export {
|
|
88
|
-
x as B
|
|
89
|
-
};
|
package/dist/index-LnjudNEI.js
DELETED
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
import { _ as g, X as w } from "./install-C-scqkds.js";
|
|
2
|
-
import { resolveComponent as p, openBlock as l, createElementBlock as o, createVNode as u, createElementVNode as i, withCtx as h, Fragment as b, renderList as _, createCommentVNode as I } from "vue";
|
|
3
|
-
const v = {
|
|
4
|
-
name: "paraExplainSet",
|
|
5
|
-
props: {
|
|
6
|
-
columnData: {
|
|
7
|
-
type: Object,
|
|
8
|
-
default: () => ({})
|
|
9
|
-
},
|
|
10
|
-
disabled: Boolean,
|
|
11
|
-
postFunc: Function,
|
|
12
|
-
// API请求函数
|
|
13
|
-
extendPost: Object
|
|
14
|
-
// 额外的请求参数
|
|
15
|
-
},
|
|
16
|
-
data() {
|
|
17
|
-
return {
|
|
18
|
-
fileType: ["png", "jpg", "jpeg", "gif"]
|
|
19
|
-
};
|
|
20
|
-
},
|
|
21
|
-
mounted() {
|
|
22
|
-
this.columnData.extraInfo.operationPictures || (this.columnData.extraInfo.operationPictures = []);
|
|
23
|
-
},
|
|
24
|
-
computed: {
|
|
25
|
-
uploadUrl() {
|
|
26
|
-
return `${w()}/v2/attachment/upload/remarkOperation`;
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
methods: {
|
|
30
|
-
/**
|
|
31
|
-
* 上传成功
|
|
32
|
-
* */
|
|
33
|
-
fileSuccess(a) {
|
|
34
|
-
var e, t;
|
|
35
|
-
a.code ? this.$message.warning(a.msg) : ((e = this.columnData.extraInfo.operationPictures) == null ? void 0 : e.length) < 15 ? ((t = this.columnData.extraInfo.operationPictures) == null || t.length, this.columnData.extraInfo.operationPictures.push(a.data.url)) : this.$message.warning("上传文件个数不能超过15个");
|
|
36
|
-
},
|
|
37
|
-
/**
|
|
38
|
-
* 附件上传前
|
|
39
|
-
* */
|
|
40
|
-
beforeUpload(a) {
|
|
41
|
-
var s;
|
|
42
|
-
if (((s = this.columnData.extraInfo.operationPictures) == null ? void 0 : s.length) >= 15)
|
|
43
|
-
return this.$message.warning("上传文件个数不能超过15个"), !1;
|
|
44
|
-
const e = 50, t = 1048576 * e;
|
|
45
|
-
if (a.size > t)
|
|
46
|
-
return this.$message.warning(`上传文件大小不能超出${e}MB`), !1;
|
|
47
|
-
const d = a.name.split(".").pop().toLowerCase();
|
|
48
|
-
return this.fileType.includes(d) ? !0 : (this.$message.warning("仅支持上传图片"), !1);
|
|
49
|
-
},
|
|
50
|
-
/**
|
|
51
|
-
* 删除图片
|
|
52
|
-
* */
|
|
53
|
-
deleteImage(a) {
|
|
54
|
-
this.columnData.extraInfo.operationPictures.splice(a, 1);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
}, D = { class: "paraExplainSet" }, E = { class: "w-flex-left w-flex-wrap w-flex-gap8 w-margin-top10" }, P = ["onClick"];
|
|
58
|
-
function S(a, e, t, d, s, n) {
|
|
59
|
-
const m = p("el-input"), f = p("el-upload"), x = p("el-image");
|
|
60
|
-
return l(), o("div", D, [
|
|
61
|
-
u(m, {
|
|
62
|
-
type: "textarea",
|
|
63
|
-
resize: "none",
|
|
64
|
-
rows: 3,
|
|
65
|
-
modelValue: t.columnData.extraInfo.paraExplain,
|
|
66
|
-
"onUpdate:modelValue": e[0] || (e[0] = (r) => t.columnData.extraInfo.paraExplain = r),
|
|
67
|
-
placeholder: "填写说明",
|
|
68
|
-
clearable: "",
|
|
69
|
-
disabled: t.disabled,
|
|
70
|
-
maxlength: 800,
|
|
71
|
-
"show-word-limit": ""
|
|
72
|
-
}, null, 8, ["modelValue", "disabled"]),
|
|
73
|
-
i("div", E, [
|
|
74
|
-
u(f, {
|
|
75
|
-
class: "paraExplainSet-upload",
|
|
76
|
-
ref: "uploadInput",
|
|
77
|
-
action: n.uploadUrl,
|
|
78
|
-
"show-file-list": !1,
|
|
79
|
-
disabled: t.disabled,
|
|
80
|
-
"before-upload": n.beforeUpload,
|
|
81
|
-
multiple: "",
|
|
82
|
-
"on-success": n.fileSuccess
|
|
83
|
-
}, {
|
|
84
|
-
default: h(() => [...e[1] || (e[1] = [
|
|
85
|
-
i("div", { class: "paraExplainSet-upload-btn w-flex-center w-flex-lrCenter" }, [
|
|
86
|
-
i("span", { class: "bnUIcon bnUIcon-upImg w-font24 w-color-blue" })
|
|
87
|
-
], -1)
|
|
88
|
-
])]),
|
|
89
|
-
_: 1
|
|
90
|
-
}, 8, ["action", "disabled", "before-upload", "on-success"]),
|
|
91
|
-
(l(!0), o(b, null, _(t.columnData.extraInfo.operationPictures, (r, c) => (l(), o("div", {
|
|
92
|
-
key: c,
|
|
93
|
-
class: "paraExplainSet-image-wrapper"
|
|
94
|
-
}, [
|
|
95
|
-
u(x, {
|
|
96
|
-
"preview-teleported": "",
|
|
97
|
-
style: { width: "40px", height: "40px" },
|
|
98
|
-
src: r,
|
|
99
|
-
"preview-src-list": t.columnData.extraInfo.operationPictures,
|
|
100
|
-
"show-progress": "",
|
|
101
|
-
"initial-index": c,
|
|
102
|
-
fit: "cover"
|
|
103
|
-
}, null, 8, ["src", "preview-src-list", "initial-index"]),
|
|
104
|
-
t.disabled ? I("", !0) : (l(), o("div", {
|
|
105
|
-
key: 0,
|
|
106
|
-
class: "paraExplainSet-image-delete",
|
|
107
|
-
onClick: (U) => n.deleteImage(c)
|
|
108
|
-
}, [...e[2] || (e[2] = [
|
|
109
|
-
i("span", { class: "bnUIcon bnUIcon-clear w-color-white" }, null, -1)
|
|
110
|
-
])], 8, P))
|
|
111
|
-
]))), 128))
|
|
112
|
-
])
|
|
113
|
-
]);
|
|
114
|
-
}
|
|
115
|
-
const C = /* @__PURE__ */ g(v, [["render", S], ["__scopeId", "data-v-7c881e71"]]);
|
|
116
|
-
export {
|
|
117
|
-
C as default
|
|
118
|
-
};
|
package/dist/index-ObCfCmDT.js
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { f as s, a as d } from "./formItemFooter-CTA7rDtV.js";
|
|
2
|
-
import { resolveComponent as o, openBlock as u, createElementBlock as i, createVNode as t, createElementVNode as f } from "vue";
|
|
3
|
-
import { _ } from "./install-C-scqkds.js";
|
|
4
|
-
const p = {
|
|
5
|
-
name: "dateForm",
|
|
6
|
-
components: { formItemTop: d, formItemFooter: s },
|
|
7
|
-
props: {
|
|
8
|
-
column: {
|
|
9
|
-
type: Object,
|
|
10
|
-
default() {
|
|
11
|
-
return {};
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
disabled: Boolean
|
|
15
|
-
},
|
|
16
|
-
methods: {
|
|
17
|
-
changeVal() {
|
|
18
|
-
this.column.error = "", this.column.warning = "", this.$emit("onChange", this.column, "change");
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}, h = { class: "w-default-wrap" }, Y = { class: "w-default-wrap" };
|
|
22
|
-
function g(V, n, e, b, v, m) {
|
|
23
|
-
const l = o("formItemTop"), a = o("el-date-picker"), c = o("formItemFooter");
|
|
24
|
-
return u(), i("div", h, [
|
|
25
|
-
t(l, { column: e.column }, null, 8, ["column"]),
|
|
26
|
-
f("div", Y, [
|
|
27
|
-
t(a, {
|
|
28
|
-
onChange: m.changeVal,
|
|
29
|
-
style: { width: "100%" },
|
|
30
|
-
disabled: e.disabled,
|
|
31
|
-
modelValue: e.column.value,
|
|
32
|
-
"onUpdate:modelValue": n[0] || (n[0] = (r) => e.column.value = r),
|
|
33
|
-
type: "datetime",
|
|
34
|
-
placement: "bottom-start",
|
|
35
|
-
format: "YYYY-MM-DD HH:mm:ss",
|
|
36
|
-
"value-format": "YYYY-MM-DD HH:mm:ss"
|
|
37
|
-
}, null, 8, ["onChange", "disabled", "modelValue"])
|
|
38
|
-
]),
|
|
39
|
-
t(c, { column: e.column }, null, 8, ["column"])
|
|
40
|
-
]);
|
|
41
|
-
}
|
|
42
|
-
const x = /* @__PURE__ */ _(p, [["render", g]]);
|
|
43
|
-
export {
|
|
44
|
-
x as default
|
|
45
|
-
};
|
package/dist/index.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.radioForm-empty[data-v-7a529164]{width:330px;line-height:32px;text-align:center;font-size:12px;color:#999}.radioForm-item[data-v-7a529164]{display:inline-block;line-height:32px;height:32px;min-width:200px;margin-right:16px}.radioForm-item .radio-box-label[data-v-7a529164]{width:100%;box-sizing:border-box;height:32px}.radioForm .radioForm-4[data-v-7a529164]{width:calc(25% - 16px);min-width:auto}.radioForm-evaluate[data-v-7a529164]{min-width:150px}
|
package/dist/index2.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.checkboxForm-title[data-v-81241159]{line-height:24px!important;margin-bottom:8px;font-size:14px;color:#666}.checkboxForm-tips[data-v-81241159]{line-height:32px;font-size:12px}.checkboxForm-item[data-v-81241159]{display:inline-block;width:calc(33% - 16px);line-height:32px;height:32px;min-width:200px;margin-right:16px;vertical-align:middle}.checkboxForm-empty[data-v-81241159]{width:330px;line-height:32px;text-align:center;font-size:12px;color:#999}
|
package/dist/index3.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.fileForm-btn[data-v-ce213ba4]{width:257px;height:20px;padding:5px 16px;border:1px solid rgba(0,0,0,.15);box-sizing:content-box;border-radius:2px;color:#666}.fileForm[data-v-ce213ba4] .fileForm-upload .el-upload{display:inline-block}.fileForm[data-v-ce213ba4] .fileForm-upload .el-upload-dragger{border:none;width:auto;height:auto;border-radius:0;padding:0}.fileForm-list[data-v-ce213ba4]{position:relative}.fileForm[data-v-ce213ba4] .fileForm-input{width:145px;display:inline-block}.fileForm[data-v-ce213ba4] .fileForm-input .el-input__wrapper{border:1px dashed rgba(0,0,0,.15)}.fileForm-tip[data-v-ce213ba4]{margin-left:8px;display:inline-block;font-size:12px;line-height:32px;color:#00000040}.fileForm-progress[data-v-ce213ba4]{width:100%;max-width:444px;margin-top:8px}
|
package/dist/index4.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.childFormFile-btn[data-v-a1b3b6de]{width:257px;height:20px;padding:5px 16px;border:1px solid rgba(0,0,0,.15);box-sizing:content-box;border-radius:2px;color:#666}.childFormFile[data-v-a1b3b6de] .childFormFile-upload .el-upload{display:inline-block}.childFormFile[data-v-a1b3b6de] .childFormFile-upload .el-upload-dragger{border:none;width:auto;height:auto;border-radius:0;padding:0}.childFormFile-list[data-v-a1b3b6de]{position:relative}.childFormFile[data-v-a1b3b6de] .childFormFile-input{width:145px;display:inline-block}.childFormFile[data-v-a1b3b6de] .childFormFile-input .el-input__wrapper{border:1px dashed rgba(0,0,0,.15)}.childFormFile-tip[data-v-a1b3b6de]{margin-left:8px;display:inline-block;font-size:12px;line-height:32px;color:#00000040}.childFormFile-progress[data-v-a1b3b6de]{width:100%;max-width:444px;margin-top:8px}.inventory[data-v-7c5817ba]{min-height:46px;padding:10px;border:1px solid #eee}.childFormBody-file[data-v-30ec2afe]{order:1;display:flex;align-items:center}.childFormBody-file-icon[data-v-30ec2afe]{font-size:22px}.childFormBody-file-view[data-v-30ec2afe]{width:calc(100% - 20px);overflow:hidden}.childFormBody-td[data-v-30ec2afe]{flex-grow:1}.childFormBody-operate[data-v-30ec2afe]{display:flex;align-items:center}
|
package/dist/index5.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.paraExplainSet[data-v-7c881e71]{width:100%}.paraExplainSet-upload[data-v-7c881e71]{width:40px;height:40px}.paraExplainSet-upload-btn[data-v-7c881e71]{width:40px;height:40px;border:1px solid rgba(0,0,0,.12);box-shadow:0 0 12px #0000001f}.paraExplainSet-image-wrapper[data-v-7c881e71]{position:relative;width:40px;height:40px}.paraExplainSet-image-wrapper:hover .paraExplainSet-image-delete[data-v-7c881e71]{opacity:1}.paraExplainSet-image-delete[data-v-7c881e71]{position:absolute;top:-6px;right:-6px;width:18px;height:18px;border-radius:50%;background-color:#0009;display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0;transition:opacity .2s;z-index:10}.paraExplainSet-image-delete[data-v-7c881e71]:hover{background-color:#000c}.paraExplainSet-image-delete .el-icon-close[data-v-7c881e71]{color:#fff;font-size:12px}
|
package/dist/index6.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.childrenSetOpt-top[data-v-290e160f]{height:32px;font-size:14px}.childrenSetOpt-top-title[data-v-290e160f]{font-weight:500}.childrenSetOpt-list[data-v-290e160f]{margin-top:10px;padding-right:10px}.childrenSetOpt-list .el-scrollbar__view>div[data-v-290e160f]{display:flex;flex-wrap:wrap;gap:10px}.childrenSetOpt-list-item[data-v-290e160f]{position:relative;cursor:pointer;background:#ebeef5;border-radius:6px;padding:10px}.childrenSetOpt-list-item.two[data-v-290e160f]{width:calc(50% - 5px)}.childrenSetOpt-list-item.one[data-v-290e160f]{width:100%}.childrenSetOpt-list-item[data-v-290e160f]:hover{background:#e4e7ed;box-shadow:0 0 6px #0000001f}.childrenSetOpt-list-item-content[data-v-290e160f]{flex:1;min-width:0;overflow:hidden}.childrenSetOpt-list-item-text[data-v-290e160f]{flex:1;min-width:0}.childrenSetOpt-list-item-memo[data-v-290e160f]{font-size:12px;padding:12px 0 4px 22px}.childrenSetOpt-list-item-drag[data-v-290e160f]{padding-right:8px;flex-shrink:0}
|
package/dist/index7.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.packageFilter-top[data-v-a92dc360]{height:32px;font-size:14px}.packageFilter-top-title[data-v-a92dc360]{font-weight:500}.packageFilter-list[data-v-a92dc360]{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px;max-height:300px;overflow-y:auto}.packageFilter-list-item[data-v-a92dc360]{position:relative;cursor:pointer;background:#ebeef5;border-radius:6px;padding:10px}.packageFilter-list-item.two[data-v-a92dc360]{width:calc(50% - 5px)}.packageFilter-list-item.one[data-v-a92dc360]{width:100%}.packageFilter-list-item[data-v-a92dc360]:hover{background:#e4e7ed;box-shadow:0 0 6px #0000001f}
|