centaline-data-driven 1.3.73 → 1.3.74

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.3.73",
3
+ "version": "1.3.74",
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: "1524927953715204096"} ,
13
+ apiParam: {actionType: 1,chanceID: "1"} ,
14
14
  }
15
15
  },
16
16
  mounted() {
@@ -258,7 +258,6 @@ const common = {
258
258
  self.closeDialog(dialogOption);
259
259
  reject()
260
260
  },
261
-
262
261
  }
263
262
  }]
264
263
  };
@@ -4,4 +4,5 @@
4
4
  }
5
5
  .ccai.button-absolute{
6
6
  bottom: 26px;
7
+ width: calc(100% - 47px);
7
8
  }
@@ -307,6 +307,8 @@
307
307
  field.disabled = true;//提交按钮禁用
308
308
  self.model.pageDisabled= true;
309
309
  field.doAction(self.getFormObj(), (data) => {
310
+ field.disabled = false;
311
+ self.model.pageDisabled= false;
310
312
  if (data.rtnCode === 200) {
311
313
  if(data.notification===17){
312
314
  self.clickHandler(self.model.getRtnRouter(data.content),null)
@@ -335,8 +337,6 @@
335
337
  self.parentModel.$vue.closeTabThen(data);
336
338
  }
337
339
  }
338
- field.disabled = false;
339
- self.model.pageDisabled= false;
340
340
  },self.model.scripts);
341
341
  }
342
342
  //无值,触发submit事件
@@ -1,12 +1,12 @@
1
1
  <template>
2
2
  <div v-if="model.routerKey&&model.visibility!='0'">
3
- <div v-if="model.rightRouter&&model.value!=''" :style="model.styleObject">
3
+ <div v-if="model.rightRouter&&model.value!=''" class="wb" :style="model.styleObject">
4
4
  <a href="javascript:void(0);" @click="clickHandler($event)" class="ct-tablecurrencyItem">
5
5
  {{model.value}}
6
6
  </a>
7
7
  </div>
8
8
  </div>
9
- <div v-else-if="model.value!=''&&model.visibility!='0'" :style="model.styleObject" v-html="model.value">
9
+ <div v-else-if="model.value!=''&&model.visibility!='0'" class="wb" :style="model.styleObject" v-html="model.value">
10
10
  </div>
11
11
  </template>
12
12
 
@@ -28,8 +28,8 @@
28
28
  }
29
29
  },
30
30
  created() {
31
- this.model = this.loaderObj.CellLayout(this.vmodel, this.actionRouter, this.rowdata, this.forname, this.forrowindex);
32
-
31
+ this.model = this.loaderObj.CellLayout(this.vmodel, this.actionRouter, this.rowdata, this.forname, this.forrowindex);
32
+ console.log(this.model);
33
33
  },
34
34
 
35
35
  methods: {
@@ -62,4 +62,7 @@
62
62
  width: 24px;
63
63
  margin-top: 2px;
64
64
  }
65
+ .wb {
66
+ word-break: break-all;
67
+ }
65
68
  </style>
@@ -31,21 +31,14 @@
31
31
  <label class="el-checkbox">
32
32
  <span class="el-checkbox__input" :class="model.selectAllType">
33
33
  <span class="el-checkbox__inner"></span>
34
- <input type="checkbox"
35
- @click="selectAll($event)"
36
- v-model="model.selectAll"
37
- class="el-checkbox__original checkbox-td-1"
38
- aria-hidden="false" />
34
+ <input type="checkbox" @click="selectAll($event)" v-model="model.selectAll" class="el-checkbox__original checkbox-td-1" aria-hidden="false" />
39
35
  </span>
40
36
  </label>
41
37
  </th>
42
38
  <th :ref=" column.fixed ? column.fixed === 'left' ? 'headLeftThs' : 'headRightThs' : 'headThs'"
43
39
  v-for="(column, colIndex) in columns" :key="colIndex" v-if="column.show"
44
40
  class="ct-td ct-searchtable-th" :rowspan="column.rowspan" :colspan="column.colspan"
45
- :class="[
46
- colHasWidth[colIndex],
47
- column.sortAction,
48
- model.tdClass,
41
+ :class="[ colHasWidth[colIndex],column.sortAction,model.tdClass,
49
42
  colIndex === leftShadow ? 'shadowLeft' : null,
50
43
  colIndex === rightShadow ? 'shadowRight' : null,
51
44
  column.fixed === 'left' ? 'left-fixation-th' : null,
@@ -1,10 +1,12 @@
1
1
  <template>
2
2
  <div :class="isOperationalColumn?'subdiv_allinline':''" v-if="isShowLabel" @click="isOperationalColumn?clickHandler($event):null">
3
3
  <div v-if="isShowVoice" style="line-height: 16px;padding-top: 3px;">
4
- <video ref="video" :src="rowData[router.submitFormField]" controls="true" controlslist="nodownload"
4
+ <video ref="video" v-if="!router.rightField || rowData[router.rightField] == 1"
5
+ :src="rowData[router.submitFormField]" controls="true" controlslist="nodownload"
5
6
  @timeupdate="saveVoiceHistoryHandler" @ended="voiceEndedHandler"
6
7
  height="20" width="100%">您的浏览器不支持 video 标签。
7
8
  </video>
9
+ <span v-else>没有权限听录音</span>
8
10
  </div>
9
11
  <div v-else-if="router.isListenVoice">
10
12
  <el-popover class="Stats-popover" :popper-class="'el-listenVoice'" :placement="option.placement?option.placement:'left'"
package/src/main.js CHANGED
@@ -43,7 +43,7 @@ Vue.use(centaline, {
43
43
  getRequestHeaders: function () {
44
44
  return {
45
45
  oldToken: '42ccd644-040d-4e01-9521-1623f1884058',
46
- token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjEOgkAQRe8yNZMwu-PsDp0u2HgIsitLgpURSDTGu6sROnpf8YrX_P-EcU5QgVvADa20uoAbWmmJWB1Jg3t1AVnYoqfgMbAEPtaNDYcaCsj3K1QkYq0nY1wBQ5x-wSj7b5jHfDvlxz_OXabhM5tdjLGkjEq9ImtMqHLuUZxoyruu60qC1xsAAP__.MSfJsiY9RKazxrFK7Tti9qCpFUH2tJtbkf_V7d_yNMQ',
46
+ token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjEOwjAMRe_iuZYS2XHibpCWhUNUFIxUJkRbqQhxd0BKt-684Q1v-f8F49xDDbGAG1rptIAbWum8Z41eWtxpzMjChMnnhJkl86FpKe8bqMCWO9RehEiFXKpgOE0lONVfmEd7HO35j3O3afjOah9iDBaRxBKyCw7VkyJfL3Y2ZkeU4P0BAAD__w.HjoMmzp2c7OQPXM0kAwZHvrSJ3DDh2Weh073vbi99rs',
47
47
 
48
48
  originalRequestURL: 'http://10.88.22.67:8080',
49
49
  EstateInfo: '{"estateId":"FAF029E8-EC28-4297-83CF-B8FFD826DB91","estateName":"AABBCC"}',