jufubao-admin-library 1.1.133 → 1.1.135

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.
@@ -228,7 +228,8 @@ module.exports = {
228
228
  isRule: false,
229
229
  data: {
230
230
  id:['点位ID', 'string', '必填'],
231
- map_point_color:['map_point_color', 'string', '必填'],
231
+ map_point_color:['地图点位颜色(已到达点位)', 'string', '必填'],
232
+ map_point_color_for_no_arrived:['地图点位颜色(未到达点位)', 'string', '必填'],
232
233
  },
233
234
  disabled: true,
234
235
  role: '',
@@ -30,8 +30,12 @@
30
30
  ></el-slider>
31
31
  </div>
32
32
  <div class="btn-item">
33
- <span>点位颜色:</span>
34
- <el-color-picker v-model="color" size="small" @change="handleColorChange"></el-color-picker>
33
+ <span>未到达点位颜色:</span>
34
+ <el-color-picker v-model="noArriveColor" size="small" @change="e => handleColorChange(e)"></el-color-picker>
35
+ </div>
36
+ <div class="btn-item">
37
+ <span>到达点位颜色:</span>
38
+ <el-color-picker v-model="color" size="small" @change="e => handleColorChange(e)"></el-color-picker>
35
39
  </div>
36
40
  </div>
37
41
  <div class="right">
@@ -120,6 +124,7 @@ export default {
120
124
 
121
125
  //页面可编辑数据
122
126
  color:'rgb(52, 152, 219)',
127
+ noArriveColor:'#999999',
123
128
  name:'',
124
129
  status:'Y',
125
130
  backgroundImage:'',
@@ -247,6 +252,7 @@ export default {
247
252
  this.getImageInfo(backgroundImage,()=>{
248
253
  this.radius = info['map_point_size'] || 43;
249
254
  this.color = info['map_point_color'] || '#3498db';
255
+ this.noArriveColor = info['map_point_color_for_no_arrived'] || '#999999';
250
256
  this.name = info['map_name'];
251
257
  this.backgroundImage = backgroundImage;
252
258
  loading.close()
@@ -482,7 +488,12 @@ export default {
482
488
  handleColorChange(e){
483
489
  console.log(e,'eee')
484
490
  if(e){
485
- this.walkingPointColor({id:this.map_id,map_point_color:e})
491
+ let data = {
492
+ id: this.map_id,
493
+ map_point_color_for_no_arrived: this.noArriveColor,
494
+ map_point_color: this.color
495
+ };
496
+ this.walkingPointColor(data)
486
497
  .then(res=>{
487
498
  this.$message.success('修改点位颜色成功')
488
499
  })
@@ -1,7 +1,3 @@
1
- .el-icon-circle-check {
2
- display: none !important;
3
- }
4
-
5
1
  .text-overflow {
6
2
  overflow: hidden;
7
3
  white-space: nowrap;
@@ -24,6 +24,7 @@
24
24
  v-model="file_name"
25
25
  placeholder="请输入素材名称"
26
26
  clearable
27
+ class="main-content-search"
27
28
  >
28
29
  <el-button type="primary" slot="append" icon="el-icon-search" @click="handleSearch()"></el-button>
29
30
  </el-input>
@@ -335,9 +336,15 @@ export default {
335
336
  </script>
336
337
 
337
338
  <style scoped lang="scss">
339
+ .main-content-search ::v-deep .el-input__validateIcon {
340
+ display: none !important;
341
+ }
338
342
  .active {
339
343
  border: 2px solid #409eff;
340
344
  position: relative;
341
345
  overflow: hidden;
342
346
  }
347
+ .el-icon-circle-check {
348
+ display: none !important;
349
+ }
343
350
  </style>
@@ -1135,6 +1135,9 @@ export default {
1135
1135
  display: flex;
1136
1136
  justify-content: center;
1137
1137
  }
1138
+ .el-icon-circle-check {
1139
+ display: none !important;
1140
+ }
1138
1141
  .el-empty {
1139
1142
  display: flex;
1140
1143
  justify-content: center;
@@ -24,6 +24,7 @@
24
24
  v-model="file_name"
25
25
  placeholder="请输入素材名称"
26
26
  clearable
27
+ class="main-content-search"
27
28
  >
28
29
  <el-button type="primary" slot="append" icon="el-icon-search" @click="handleSearch()"></el-button>
29
30
  </el-input>
@@ -352,9 +353,15 @@ export default {
352
353
  </script>
353
354
 
354
355
  <style scoped lang="scss">
356
+ .main-content-search ::v-deep .el-input__validateIcon {
357
+ display: none !important;
358
+ }
355
359
  .active {
356
360
  border: 2px solid #409eff;
357
361
  position: relative;
358
362
  overflow: hidden;
359
363
  }
364
+ .el-icon-circle-check {
365
+ display: none !important;
366
+ }
360
367
  </style>
@@ -19,6 +19,7 @@
19
19
  placeholder="请输入素材名称"
20
20
  clearable
21
21
  @clear="handleClearSearch"
22
+ class="main-content-search"
22
23
  >
23
24
  <el-button type="primary" slot="append" icon="el-icon-search" @click="handleNameSearch()"></el-button>
24
25
  </el-input>
@@ -335,6 +336,9 @@ export default {
335
336
  </script>
336
337
 
337
338
  <style scoped lang="scss">
339
+ .main-content-search ::v-deep .el-input__validateIcon {
340
+ display: none !important;
341
+ }
338
342
  .platform-content {
339
343
  height: calc(100% - 114px);
340
344
  display: flex;
@@ -434,4 +438,8 @@ export default {
434
438
  width: auto!important;
435
439
  }
436
440
 
441
+ .el-icon-circle-check {
442
+ display: none !important;
443
+ }
444
+
437
445
  </style>
@@ -24,6 +24,7 @@
24
24
  style="width: 264px"
25
25
  v-model="file_name"
26
26
  placeholder="请输入素材名称"
27
+ class="main-content-search"
27
28
  >
28
29
  <el-button type="primary" slot="append" icon="el-icon-search" @click="handleSearch()"></el-button>
29
30
  </el-input>
@@ -238,9 +239,15 @@ export default {
238
239
  </script>
239
240
 
240
241
  <style scoped lang="scss">
242
+ .main-content-search ::v-deep .el-input__validateIcon {
243
+ display: none !important;
244
+ }
241
245
  .active {
242
246
  border: 2px solid #409eff;
243
247
  position: relative;
244
248
  overflow: hidden;
245
249
  }
250
+ .el-icon-circle-check {
251
+ display: none !important;
252
+ }
246
253
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-admin-library",
3
- "version": "1.1.133",
3
+ "version": "1.1.135",
4
4
  "description": "聚福宝福利后台管理系统公共模块",
5
5
  "author": "goashiyong <gaoshiyong1272@vip.163.com>",
6
6
  "scripts": {