Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
schedule
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fengzhaoyu
schedule
Commits
07736137
Commit
07736137
authored
Nov 04, 2020
by
xiexiaoqin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release/dev/2.0.0' into release/2.0.0
parents
8a7d8b7a
24cbd3b8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
14 deletions
+24
-14
request.js
api/request.js
+5
-3
fileList.js
components/fileList/fileList.js
+1
-1
createMeeting.acss
pages/createMeeting/createMeeting.acss
+2
-2
createMeeting.axml
pages/createMeeting/createMeeting.axml
+5
-5
createMeeting.js
pages/createMeeting/createMeeting.js
+8
-0
meetingDetail.acss
pages/meetingDetail/meetingDetail.acss
+3
-3
No files found.
api/request.js
View file @
07736137
...
@@ -289,9 +289,10 @@ export function setRead(meetingId) {
...
@@ -289,9 +289,10 @@ export function setRead(meetingId) {
})
})
}
}
export
function
previewOssFile
(
fileId
)
{
export
function
previewOssFile
(
data
)
{
return
$http
({
return
$http
({
method
:
'get'
,
method
:
'post'
,
url
:
`/meet/fileDetail?objectName=
${
fileId
}
`
url
:
`/meet/fileDetail`
,
data
:
JSON
.
stringify
(
data
)
})
})
}
}
\ No newline at end of file
components/fileList/fileList.js
View file @
07736137
...
@@ -71,7 +71,7 @@ create.Component({
...
@@ -71,7 +71,7 @@ create.Component({
});
});
}
else
{
}
else
{
// 预览文件
// 预览文件
previewOssFile
(
encodeURIComponent
(
file
.
fileId
)
).
then
(
res
=>
{
previewOssFile
(
{
objectName
:
file
.
fileId
}
).
then
(
res
=>
{
openLink
({
openLink
({
url
:
res
.
data
.
data
.
webUrl
url
:
res
.
data
.
data
.
webUrl
});
});
...
...
pages/createMeeting/createMeeting.acss
View file @
07736137
...
@@ -63,11 +63,11 @@ input {
...
@@ -63,11 +63,11 @@ input {
.place, .time, .participator, .meetingWay, .aheadTime {
.place, .time, .participator, .meetingWay, .aheadTime {
display: flex;
display: flex;
padding:
0
32rpx;
padding:
24rpx
32rpx;
font-family: PingFangSC-Regular;
font-family: PingFangSC-Regular;
color: #191F25;
color: #191F25;
overflow: hidden;
overflow: hidden;
margin-top: 48rpx;
/* margin-top: 48rpx; */
}
}
.place>.icon, .time>.icon, .participator>.icon, .meetingWay>.icon, .aheadTime>.icon {
.place>.icon, .time>.icon, .participator>.icon, .meetingWay>.icon, .aheadTime>.icon {
...
...
pages/createMeeting/createMeeting.axml
View file @
07736137
...
@@ -11,16 +11,16 @@
...
@@ -11,16 +11,16 @@
</view>
</view>
</view>
</view>
<!-- $data.$data.roomId locationName 地点 -->
<!-- $data.$data.roomId locationName 地点 -->
<view class="place">
<view class="place"
onTap="goSelectPlace"
>
<view class="iconicon_room iconfont icon " a:if="{{$data.roomId}}">
<view class="iconicon_room iconfont icon " a:if="{{$data.roomId}}">
</view>
</view>
<view class="iconicon_location1 iconfont icon {{$data.locationName ? '' : 'noValueIcon'}}" a:else>
<view class="iconicon_location1 iconfont icon {{$data.locationName ? '' : 'noValueIcon'}}" a:else>
</view>
</view>
<view class="placeContaint">
<view class="placeContaint">
<view class="noPlace" a:if="{{!$data.locationName}}"
onTap="goSelectPlace"
>
<view class="noPlace" a:if="{{!$data.locationName}}">
添加地点
添加地点
</view>
</view>
<view class="hasplace"
onTap="goSelectPlace"
a:else>
<view class="hasplace" a:else>
{{$data.locationName}}
{{$data.locationName}}
</view>
</view>
<view class=" icon iconfont iconicon_close close" a:if="{{!!$data.locationName}}" catchTap="handleDeletePlace">
<view class=" icon iconfont iconicon_close close" a:if="{{!!$data.locationName}}" catchTap="handleDeletePlace">
...
@@ -76,11 +76,11 @@
...
@@ -76,11 +76,11 @@
</view>
</view>
</view>
</view>
</view>
</view>
<view class="aheadTime">
<view class="aheadTime"
onTap="handleSelectAheadTime"
>
<view class="iconicon_time1 iconfont icon">
<view class="iconicon_time1 iconfont icon">
</view>
</view>
<view class="aheadTimeContent">
<view class="aheadTimeContent">
<view class="aheadTimeItem"
onTap="handleSelectAheadTime"
>
<view class="aheadTimeItem">
<text class="aheadTimeText" a:for="{{aheadTime.aheadTimeList}}" a:if="{{aheadTime.aheadTimes.includes(item.id)}}">
<text class="aheadTimeText" a:for="{{aheadTime.aheadTimeList}}" a:if="{{aheadTime.aheadTimes.includes(item.id)}}">
{{item.text}}
{{item.text}}
<text class="divder">{{"、"}}</text>
<text class="divder">{{"、"}}</text>
...
...
pages/createMeeting/createMeeting.js
View file @
07736137
...
@@ -55,9 +55,17 @@ create.Page({
...
@@ -55,9 +55,17 @@ create.Page({
this
.
reset
()
this
.
reset
()
},
},
onShow
()
{
onShow
()
{
if
(
this
.
$store
.
data
.
shouldUpdateShowTime
)
{
this
.
setData
({
showTime
:
getShowTime
(
this
.
$store
.
data
.
startTime
,
this
.
$store
.
data
.
endTime
)
})
this
.
$store
.
data
.
shouldUpdateShowTime
=
false
;
this
.
update
();
}
setTimeout
(()
=>
{
setTimeout
(()
=>
{
this
.
update
()
this
.
update
()
},
100
)
},
100
)
},
},
// 添加标题
// 添加标题
...
...
pages/meetingDetail/meetingDetail.acss
View file @
07736137
...
@@ -220,11 +220,11 @@ input {
...
@@ -220,11 +220,11 @@ input {
.place, .time, .participator, .meetingWay, .meetingWayShowTop, .taskNumber {
.place, .time, .participator, .meetingWay, .meetingWayShowTop, .taskNumber {
display: flex;
display: flex;
padding:
0
32rpx;
padding:
24rpx
32rpx;
font-family: PingFangSC-Regular;
font-family: PingFangSC-Regular;
color: #191F25;
color: #191F25;
overflow: hidden;
overflow: hidden;
margin-top: 48rpx;
/* margin-top: 48rpx; */
}
}
.place>.icon, .time>.icon, .participator>.icon, .meetingWay>.icon, .meetingWayShowTop>.icon, .taskNumber>.icon {
.place>.icon, .time>.icon, .participator>.icon, .meetingWay>.icon, .meetingWayShowTop>.icon, .taskNumber>.icon {
...
@@ -363,7 +363,7 @@ input {
...
@@ -363,7 +363,7 @@ input {
}
}
.editeMeeting .delete-task-wrap {
.editeMeeting .delete-task-wrap {
padding:
74
rpx 0 32rpx 0;
padding:
32
rpx 0 32rpx 0;
}
}
.delete-task {
.delete-task {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment