cloud-web-corejs 1.0.210 → 1.0.212

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,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.210",
4
+ "version": "1.0.212",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -140,7 +140,8 @@ export default {
140
140
  this.currentRow = item;
141
141
  this.handleRead(index)
142
142
  },
143
- handleRead(index, callback) {
143
+ handleRead(index, callback) {
144
+ if(this.page.records.length <= index)return
144
145
  let row = this.page.records[index];
145
146
  if (row.readed !== 1) {
146
147
  this.$http({
@@ -541,4 +541,15 @@ export default {
541
541
  display: none;
542
542
  }
543
543
 
544
+ ::v-deep .el-color-picker--medium {
545
+ height: 26px;
546
+ }
547
+ ::v-deep .el-color-picker--medium .el-color-picker__trigger {
548
+ height: 26px;
549
+ width: 26px;
550
+ }
551
+ ::v-deep .el-color-picker--medium .el-color-picker__mask {
552
+ height: 24px;
553
+ width: 24px;
554
+ }
544
555
  </style>