centaline-data-driven 1.2.51 → 1.2.52

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.2.51",
3
+ "version": "1.2.52",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/src/Detail.vue CHANGED
@@ -10,7 +10,7 @@
10
10
  name: 'DataDrivendetail',
11
11
  data() {
12
12
  return {
13
- apiParam: {actionType: 1,chanceID: "2"} ,
13
+ apiParam: {actionType: 1,chanceID: "1"} ,
14
14
  }
15
15
  },
16
16
  mounted() {
@@ -313,7 +313,8 @@ html {
313
313
  height: 26px;
314
314
  font-size: 12px;
315
315
  color: #ff5b5b !important;
316
- padding: 3px 5px;
316
+ padding: 0 5px;
317
+ line-height: 26px;
317
318
  white-space: nowrap;
318
319
  }
319
320
  .spanMessage {
@@ -712,6 +713,7 @@ html {
712
713
 
713
714
  .el-date-editor .el-range-input, .el-date-editor .el-range-separator {
714
715
  font-size: 12px;
716
+ height: 22px;
715
717
  }
716
718
  .ct-text{
717
719
  position: relative
@@ -240,3 +240,4 @@
240
240
  .el-radio__input.is-checked + .el-radio__label {
241
241
  color: #409eff;
242
242
  }
243
+
@@ -27,8 +27,8 @@
27
27
  <span>{{model.fields1Dic.DistrictName.value}}</span>
28
28
  <span>{{model.fields1Dic.AreaName.value}}</span>
29
29
  </div>
30
- <div style="margin-top: 24px;">
31
- <div v-for="(tag, index) in model.actionRouterLabel" :key="index"
30
+ <div style="margin-top: 7px;display: flex;">
31
+ <div v-for="(tag, index) in model.actionRouterLabel" :key="index" class="t-tag"
32
32
  :style="{color:tag.textColor,backgroundColor:tag.bgColor,borderColor:tag.borderColor}">
33
33
  {{tag.label}}
34
34
  </div>
@@ -354,7 +354,15 @@
354
354
  }
355
355
  </script>
356
356
  <style lang="scss" scoped>
357
-
357
+ .t-tag {
358
+ color: #999;
359
+ background: #f3f3f3;
360
+ border: 1px solid #d8d8d8;
361
+ padding: 2px 9px;
362
+ border-radius: 3px;
363
+ margin-right: 10px;
364
+ font-size: 12px;
365
+ }
358
366
  </style>
359
367
 
360
368
 
@@ -80,7 +80,6 @@
80
80
  :rowspan="tdRowspan(column, row)"
81
81
  class="ct-td"
82
82
  :class="[colHasWidth[colIndex],model.tdClass,
83
- column.router?'cursor':null,
84
83
  colIndex === leftShadow?'shadowLeft':null,
85
84
  colIndex === rightShadow?'shadowRight':null,
86
85
  column.fixed === 'left'?'left-fixation':null,
@@ -1,7 +1,7 @@
1
1
  <template>
2
- <div :class="isOperationalColumn?'subdiv_allinline':''" v-if="isShowLabel" @click="clickHandler($event)">
3
- <img v-if="router.imgUrl && isShowImg" class="ct-tablecurrencyImg ct-tablecurrencyItem" :src="router.imgUrl" :title="router.label" />
4
- <a v-else href="javascript:void(0);" class="ct-tablecurrencyItem" >
2
+ <div :class="isOperationalColumn?'subdiv_allinline':''" v-if="isShowLabel" @click="isOperationalColumn?clickHandler($event):null">
3
+ <img v-if="router.imgUrl && isShowImg" class="ct-tablecurrencyImg ct-tablecurrencyItem" :src="router.imgUrl" :title="router.label" @click="!isOperationalColumn?clickHandler($event):null"/>
4
+ <a v-else href="javascript:void(0);" class="ct-tablecurrencyItem" @click="!isOperationalColumn?clickHandler($event):null">
5
5
  {{label}}
6
6
  </a>
7
7
  </div>