Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bms-vue-obear
Project
Project
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
daywrite
bms-vue-obear
Commits
9bf7aab3
Commit
9bf7aab3
authored
Apr 18, 2019
by
huai.li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复一些小bug
parent
8c437984
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
scheduleItem.vue
src/components/common/scheduleItem.vue
+2
-2
scheduleForm.vue
src/components/schedule/scheduleForm.vue
+1
-1
scheduleModal.vue
src/components/schedule/scheduleModal.vue
+1
-0
scheduleHome.vue
src/components/schedule_list/scheduleHome.vue
+1
-2
No files found.
src/components/common/scheduleItem.vue
View file @
9bf7aab3
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<el-row
:gutter=
"10"
>
<el-row
:gutter=
"10"
>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
<router-link
:to=
"
{ app: 'client', name: 'viewClient', params: {id: item.client_id} }">
<router-link
:to=
"
{ app: 'client', name: 'viewClient', params: {id: item.client_id} }">
<i
class=
"fa fa-star"
aria-hidden=
"true"
></i>
客户名称(
{{
isNullClient
?
'未设置'
:
item
.
client
.
name
}}
)
<i
class=
"fa fa-star"
aria-hidden=
"true"
></i>
{{
isNullClient
?
'客户名称(未设置)'
:
item
.
client
.
name
}}
</router-link>
</router-link>
</el-col>
</el-col>
<el-col
:span=
"24"
style=
"padding-left: 3px;"
>
<el-col
:span=
"24"
style=
"padding-left: 3px;"
>
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
</el-col>
</el-col>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
<span><i
class=
"fa fa-sitemap"
aria-hidden=
"true"
></i>
{{
item
.
department
.
name
}}
</span>
<span><i
class=
"fa fa-sitemap"
aria-hidden=
"true"
></i>
{{
item
.
department
.
name
}}
</span>
<span
class=
"obear-schedule-left__private colWhite"
>
{{
isPublic
?
'私人'
:
'共享'
}}
</span>
<span
class=
"obear-schedule-left__private colWhite"
>
{{
!
isPublic
?
'私人'
:
'共享'
}}
</span>
</el-col>
</el-col>
</el-row>
</el-row>
</el-col>
</el-col>
...
...
src/components/schedule/scheduleForm.vue
View file @
9bf7aab3
...
@@ -139,7 +139,7 @@ export default {
...
@@ -139,7 +139,7 @@ export default {
computed
:
{
computed
:
{
isCreate
()
{
isCreate
()
{
return
true
return
!
this
.
model
.
id
}
}
},
},
...
...
src/components/schedule/scheduleModal.vue
View file @
9bf7aab3
...
@@ -66,6 +66,7 @@ export default {
...
@@ -66,6 +66,7 @@ export default {
requestAPI
(
Object
.
assign
(
_apiUrl
,
{
method
:
'POST'
}),
_params
)
requestAPI
(
Object
.
assign
(
_apiUrl
,
{
method
:
'POST'
}),
_params
)
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
this
.
$refs
.
scheduleSidePopup
.
close
()
this
.
$refs
.
scheduleSidePopup
.
close
()
this
.
$parent
.
reload
()
this
.
$message
.
success
(
'操作成功'
)
this
.
$message
.
success
(
'操作成功'
)
})
})
}
}
...
...
src/components/schedule_list/scheduleHome.vue
View file @
9bf7aab3
...
@@ -40,8 +40,7 @@
...
@@ -40,8 +40,7 @@
</div>
</div>
</div>
</div>
<ScheduleModal
<ScheduleModal
ref=
"scheduleModal"
ref=
"scheduleModal"
>
v-click-outside=
"scheduleClose"
>
</ScheduleModal>
</ScheduleModal>
<ReportModal
<ReportModal
ref=
"reportModal"
>
ref=
"reportModal"
>
...
...
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