mirror of
https://github.com/kuaifan/dootask.git
synced 2026-02-23 17:30:33 +00:00
no message
This commit is contained in:
parent
edd5cd1ca1
commit
9c91f7cf83
2
public/tools/map/main.js
vendored
2
public/tools/map/main.js
vendored
@ -527,7 +527,7 @@ class BaiduMapPicker {
|
|||||||
// 按距离排序(如果有距离信息)
|
// 按距离排序(如果有距离信息)
|
||||||
pois.sort((a, b) => {
|
pois.sort((a, b) => {
|
||||||
if (a.distance_current && b.distance_current) {
|
if (a.distance_current && b.distance_current) {
|
||||||
return a.distance_current - b.distance_current;
|
return $A.sortFloat(a.distance_current, b.distance_current);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
});
|
});
|
||||||
|
|||||||
@ -18,7 +18,9 @@
|
|||||||
<Input type="search" ref="searchKey" v-model="searchKey" :placeholder="$L('请输入关键字')"/>
|
<Input type="search" ref="searchKey" v-model="searchKey" :placeholder="$L('请输入关键字')"/>
|
||||||
</Form>
|
</Form>
|
||||||
</div>
|
</div>
|
||||||
<i class="taskfont search-close" @click="onHide"></i>
|
<div class="search-close" @click="onHide">
|
||||||
|
<i class="taskfont"></i>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="search-body" @touchstart="onTouchstart">
|
<div class="search-body" @touchstart="onTouchstart">
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="dialog-group-info">
|
<div class="dialog-group-info">
|
||||||
|
<div class="dialog-group-head">
|
||||||
<div class="group-info-title">{{$L('群名')}}</div>
|
<div class="group-info-title">{{$L('群名')}}</div>
|
||||||
<div class="group-info-value">
|
<div class="group-info-value">
|
||||||
<QuickEdit :value="dialogData.name" :disabled="dialogData.owner_id != userId" @on-update="updateName">{{dialogData.name}}</QuickEdit>
|
<QuickEdit :value="dialogData.name" :disabled="dialogData.owner_id != userId" @on-update="updateName">{{dialogData.name}}</QuickEdit>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="group-info-title">{{$L('群组 ID')}}</div>
|
<div class="group-info-title">{{$L('群组 ID')}}</div>
|
||||||
<div class="group-info-value">{{ dialogId }}</div>
|
<div class="group-info-value">{{ dialogId }}</div>
|
||||||
|
|||||||
17
resources/assets/sass/components/search-box.scss
vendored
17
resources/assets/sass/components/search-box.scss
vendored
@ -6,9 +6,6 @@
|
|||||||
max-width: none;
|
max-width: none;
|
||||||
|
|
||||||
.ivu-modal-content {
|
.ivu-modal-content {
|
||||||
margin-top: 46px;
|
|
||||||
border-top-left-radius: 18px !important;
|
|
||||||
border-top-right-radius: 18px !important;
|
|
||||||
|
|
||||||
.ivu-modal-body {
|
.ivu-modal-body {
|
||||||
|
|
||||||
@ -84,13 +81,23 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.search-close {
|
.search-close {
|
||||||
font-size: 16px;
|
|
||||||
color: #808695;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
> i {
|
||||||
|
color: #808695;
|
||||||
|
font-size: 16px;
|
||||||
|
transition: transform 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
> i {
|
||||||
color: #303133;
|
color: #303133;
|
||||||
|
transform: rotate(-90deg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1
resources/assets/sass/pages/common.scss
vendored
1
resources/assets/sass/pages/common.scss
vendored
@ -290,6 +290,7 @@ body {
|
|||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
.ivu-modal-content {
|
.ivu-modal-content {
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -8,13 +8,22 @@
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
||||||
|
.dialog-group-head {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 2;
|
||||||
|
margin-bottom: -8px;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.group-info-title {
|
.group-info-title {
|
||||||
color: #b7b1b1;
|
color: #b7b1b1;
|
||||||
margin: 18px 24px 0;
|
margin: 18px 24px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.group-info-value {
|
.group-info-value {
|
||||||
margin: 4px 24px 0;
|
margin: 2px 24px 0;
|
||||||
line-height: 34px;
|
line-height: 34px;
|
||||||
|
|
||||||
.quick-text {
|
.quick-text {
|
||||||
@ -33,11 +42,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.group-info-search {
|
.group-info-search {
|
||||||
background: #fff;
|
margin: 20px 24px 0;
|
||||||
margin: 24px 24px 0;
|
|
||||||
position: sticky;
|
|
||||||
top: 0;
|
|
||||||
z-index: 9;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.group-info-user {
|
.group-info-user {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user