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.
- package/library/viewModules/viewWalking/schemas/walking.js +2 -1
- package/library/viewModules/viewWalking/viewWalking/config.vue +14 -3
- package/library/viewModules/viewsMaterial/viewsMaterial/common/common.scss +0 -4
- package/library/viewModules/viewsMaterial/viewsMaterial/dialog/component/company.vue +7 -0
- package/library/viewModules/viewsMaterial/viewsMaterial/dialog/component/detail.vue +3 -0
- package/library/viewModules/viewsMaterial/viewsMaterial/dialog/component/my.vue +7 -0
- package/library/viewModules/viewsMaterial/viewsMaterial/dialog/component/platform.vue +8 -0
- package/library/viewModules/viewsMaterial/viewsMaterial/dialog/component/share.vue +7 -0
- package/package.json +1 -1
|
@@ -228,7 +228,8 @@ module.exports = {
|
|
|
228
228
|
isRule: false,
|
|
229
229
|
data: {
|
|
230
230
|
id:['点位ID', 'string', '必填'],
|
|
231
|
-
map_point_color:['
|
|
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
|
|
34
|
-
<el-color-picker v-model="
|
|
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
|
-
|
|
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
|
})
|
|
@@ -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>
|
|
@@ -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>
|