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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven",
3
- "version": "1.1.65",
3
+ "version": "1.1.66",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
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: "1494180846406602752", actionType: 2}
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
- .icon-more{
226
- background: url(../../assets/vertical.png)no-repeat;
227
- background-size: 100% 100%;
228
- height: 12px;
229
- width: 14px;
230
- display: inline-block;
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" :disabled="model.lock" autocomplete="on">
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
- let col = {
31
- get code() {
32
- return f.code;
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 style() {
45
- return f.style;
35
+ get name() {
36
+ return f.name;
46
37
  },
47
- get size() {
48
- return "mini";
38
+ get isHyperLink() {
39
+ return true;
49
40
  },
50
- get class() {
51
- var size = f.size ? f.size : "mini";
52
- f.className=f.className||'ct-font-size-' + size;
53
- return f.className;
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;