centaline-data-driven 1.1.65 → 1.1.66
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 +1 -1
- package/src/Form.vue +1 -1
- package/src/centaline/css/max.css +6 -8
- package/src/centaline/dynamicHyperLinkList/src/dynamicHyperLinkList.vue +1 -1
- package/src/centaline/dynamicL/src/dynamicL.vue +1 -1
- package/src/centaline/loader/src/ctl/HyperLinkList.js +26 -24
- package/wwwroot/static/centaline/centaline-data-driven.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
package/src/Form.vue
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
// apiParam: {SN: "13557_132", UserID: "wuhan3"},
|
|
25
25
|
// apiParam: {actionType: 3,formId: "2c12649f-09c5-4aa9-8011-b6d1c7b56a41"} ,
|
|
26
26
|
// apiParam: {chanceID: "1", actionType: 2} ,
|
|
27
|
-
apiParam: {worklistID: "
|
|
27
|
+
apiParam: {worklistID: "1494206747714392064", actionType: 2}
|
|
28
28
|
// apiParam: {
|
|
29
29
|
// actionType: 2,
|
|
30
30
|
// agentId: "1450283160825425922",
|
|
@@ -222,11 +222,9 @@
|
|
|
222
222
|
.details-content .ct-search-list .ct-searchtable .ct-table-content{
|
|
223
223
|
padding: 0;
|
|
224
224
|
}
|
|
225
|
-
.
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
margin-right: 2px;
|
|
232
|
-
}
|
|
225
|
+
.ct-unitname {
|
|
226
|
+
display: contents;
|
|
227
|
+
}
|
|
228
|
+
.hyperLinkList .el-button + .el-button{
|
|
229
|
+
margin-left: 0!important;
|
|
230
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="field-top">
|
|
3
|
-
<div v-if="model !== null" class="ct-text ct-flex-div" :class="[model.showLabel?'el-input-group el-input-group--prepend':'',!valid?'inputError':'',model.attrs.size?'ct-font-size-'+model.attrs.size:'']">
|
|
3
|
+
<div v-if="model !== null" class="ct-text ct-flex-div hyperLinkList" :class="[model.showLabel?'el-input-group el-input-group--prepend':'',!valid?'inputError':'',model.attrs.size?'ct-font-size-'+model.attrs.size:'']">
|
|
4
4
|
<div v-if="model.showLabel && model.label" class="el-input-group__prepend field-label-div" :class="[model.labelClass]">
|
|
5
5
|
<span>{{model.label}}</span>
|
|
6
6
|
</div>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<el-input v-model="model.labelValue" v-bind="model.attrs"
|
|
5
5
|
:class="[model.showLabel?'showLabel':'',!valid?'inputError':'','lableinput']"
|
|
6
6
|
:type="model.showLabel? 'text':'textarea'"
|
|
7
|
-
style="flex:1" autosize :readonly="true"
|
|
7
|
+
style="flex:1" autosize :readonly="true" autocomplete="on">
|
|
8
8
|
<div v-if="model.showLabel && model.label" slot="prepend" class="" :class="[model.labelClass]">
|
|
9
9
|
{{model.label}}
|
|
10
10
|
</div>
|
|
@@ -27,34 +27,36 @@ const HyperLinkList = function (source) {
|
|
|
27
27
|
if (source.code1) {
|
|
28
28
|
let codeList=JSON.parse(source.code1);
|
|
29
29
|
codeList.forEach((f) => {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
get name() {
|
|
35
|
-
return f.name;
|
|
36
|
-
},
|
|
37
|
-
get isHyperLink() {
|
|
38
|
-
return true;
|
|
39
|
-
},
|
|
40
|
-
attrs: {
|
|
41
|
-
get placeholder() {
|
|
42
|
-
return f.placeholder1 || '';
|
|
30
|
+
if(!f.flagDeleted){
|
|
31
|
+
let col = {
|
|
32
|
+
get code() {
|
|
33
|
+
return f.code;
|
|
43
34
|
},
|
|
44
|
-
get
|
|
45
|
-
return f.
|
|
35
|
+
get name() {
|
|
36
|
+
return f.name;
|
|
46
37
|
},
|
|
47
|
-
get
|
|
48
|
-
return
|
|
38
|
+
get isHyperLink() {
|
|
39
|
+
return true;
|
|
49
40
|
},
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
41
|
+
attrs: {
|
|
42
|
+
get placeholder() {
|
|
43
|
+
return f.placeholder1 || '';
|
|
44
|
+
},
|
|
45
|
+
get style() {
|
|
46
|
+
return f.style;
|
|
47
|
+
},
|
|
48
|
+
get size() {
|
|
49
|
+
return "mini";
|
|
50
|
+
},
|
|
51
|
+
get class() {
|
|
52
|
+
var size = f.size ? f.size : "mini";
|
|
53
|
+
f.className=f.className||'ct-font-size-' + size;
|
|
54
|
+
return f.className;
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
}
|
|
58
|
+
rtn._list.push(col);
|
|
56
59
|
}
|
|
57
|
-
rtn._list.push(col);
|
|
58
60
|
});
|
|
59
61
|
}
|
|
60
62
|
return rtn._list;
|