Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
12a4843c
Commit
12a4843c
authored
May 06, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
9caf7257
d51d0e6c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
17 deletions
+28
-17
ChoiceAddFinancialDocuments2.vue
...mponents/FinancialModule/ChoiceAddFinancialDocuments2.vue
+15
-5
Announcement.vue
src/components/administrative/Announcement.vue
+11
-6
TravelPrice2.vue
...ents/newTravelmanager/TravelGroupControl/TravelPrice2.vue
+2
-6
No files found.
src/components/FinancialModule/ChoiceAddFinancialDocuments2.vue
View file @
12a4843c
...
@@ -87,6 +87,7 @@
...
@@ -87,6 +87,7 @@
showTab
:
0
,
showTab
:
0
,
templateID
:
null
,
templateID
:
null
,
DepartID
:
null
,
DepartID
:
null
,
EmployeeId
:
null
,
}
}
},
methods
:{
},
methods
:{
goUrl
(
path
,
id
,
Name
,
Type
,
IsUploadPic
)
{
goUrl
(
path
,
id
,
Name
,
Type
,
IsUploadPic
)
{
...
@@ -162,11 +163,19 @@
...
@@ -162,11 +163,19 @@
}
}
// 5-5 仅茈、而巳。 14:32:06
// 5-5 仅茈、而巳。 14:32:06
// 部门id = 242 或者 240 就展示出 templeteId=33 的流程, 流程名字叫做 公司佣金收款
// 部门id = 242 或者 240 就展示出 templeteId=33 的流程, 流程名字叫做 公司佣金收款
if
(
x
.
Id
===
33
)
{
if
(
x
.
Id
===
33
||
x
.
Id
===
48
)
{
if
(
this
.
DepartID
===
242
||
this
.
DepartID
===
240
)
{
if
(
x
.
Id
===
33
)
{
x
.
bigShow
=
true
if
(
this
.
DepartID
===
242
||
this
.
DepartID
===
240
)
{
}
else
{
x
.
bigShow
=
true
x
.
bigShow
=
false
}
else
{
x
.
bigShow
=
false
}
}
else
if
(
x
.
Id
===
48
)
{
if
(
this
.
EmployeeId
===
1725
)
{
x
.
bigShow
=
true
}
else
{
x
.
bigShow
=
false
}
}
}
}
else
{
}
else
{
x
.
bigShow
=
true
x
.
bigShow
=
true
...
@@ -188,6 +197,7 @@
...
@@ -188,6 +197,7 @@
},
mounted
(){
},
mounted
(){
let
userInfo
=
this
.
getLocalStorage
();
let
userInfo
=
this
.
getLocalStorage
();
this
.
DepartID
=
userInfo
.
RB_Department_Id
;
this
.
DepartID
=
userInfo
.
RB_Department_Id
;
this
.
EmployeeId
=
userInfo
.
EmployeeId
;
this
.
templateID
=
this
.
$route
.
query
.
templateID
?
JSON
.
parse
(
this
.
$route
.
query
.
templateID
)
:
null
this
.
templateID
=
this
.
$route
.
query
.
templateID
?
JSON
.
parse
(
this
.
$route
.
query
.
templateID
)
:
null
this
.
Financial_post_GetList
();
this
.
Financial_post_GetList
();
this
.
showTab
=
this
.
$route
.
query
.
Type
?
this
.
$route
.
query
.
Type
:
0
;
this
.
showTab
=
this
.
$route
.
query
.
Type
?
this
.
$route
.
query
.
Type
:
0
;
...
...
src/components/administrative/Announcement.vue
View file @
12a4843c
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
<td>
<td>
<el-button-group>
<el-button-group>
<el-tooltip
v-if=
"item.Status!='0'"
class=
"item"
effect=
"dark"
:content=
"$t('fnc.xiangqing')"
placement=
"top-start"
>
<el-tooltip
v-if=
"item.Status!='0'"
class=
"item"
effect=
"dark"
:content=
"$t('fnc.xiangqing')"
placement=
"top-start"
>
<el-button
@
click=
'getDetails(item.Id)'
type=
"primary"
icon=
"el-icon-tickets"
></el-button>
<el-button
@
click=
'getDetails(item.Id
, item.Title
)'
type=
"primary"
icon=
"el-icon-tickets"
></el-button>
</el-tooltip>
</el-tooltip>
<el-tooltip
v-if=
"item.Status=='0'"
class=
"item"
effect=
"dark"
:content=
"$t('pub.updateMsg')"
placement=
"top-start"
>
<el-tooltip
v-if=
"item.Status=='0'"
class=
"item"
effect=
"dark"
:content=
"$t('pub.updateMsg')"
placement=
"top-start"
>
<el-button
@
click=
'updateNotice(item.Id)'
type=
"primary"
icon=
"el-icon-edit"
></el-button>
<el-button
@
click=
'updateNotice(item.Id)'
type=
"primary"
icon=
"el-icon-edit"
></el-button>
...
@@ -88,12 +88,11 @@
...
@@ -88,12 +88,11 @@
</el-pagination>
</el-pagination>
<el-dialog
custom-class=
'w800'
:title=
"dialogTitle"
:visible
.
sync=
"outerVisible"
center
:before-close=
"closeChangeMachie"
>
<el-dialog
custom-class=
'w800'
:title=
"dialogTitle"
:visible
.
sync=
"outerVisible"
center
:before-close=
"closeChangeMachie"
>
<div
v-if=
'layerType==1'
>
<div
v-if=
'layerType==1'
>
<p
class=
"ann_detail_title"
>
{{
detailMessage
.
Title
}}
</p>
<p
style=
"text-align: right; padding: 5px 0;"
>
{{
detailMessage
.
EmName
}}
{{
detailMessage
.
UpdateTime
}}
</p>
<p
style=
"text-align: right; padding: 5px 0;"
>
{{
detailMessage
.
EmName
}}
{{
detailMessage
.
UpdateTime
}}
</p>
<pre
style=
"letter-spacing: 1px; font-size: 14px; color: #333;"
>
{{
detailMessage
.
Content
}}
</pre>
<pre
style=
"letter-spacing: 1px; font-size: 14px; color: #333;"
>
{{
detailMessage
.
Content
}}
</pre>
<p
style=
"padding:0 10px; margin: 10px 0; background: #f1f1f1;"
>
{{
$t
(
'adm.adm_fujian'
)
}}
:
</p>
<p
style=
"padding:0 10px; margin: 10px 0; background: #f1f1f1;"
>
{{
$t
(
'adm.adm_fujian'
)
}}
:
</p>
<p
style=
"height: 28px; padding: 0 10px; line-height: 28px;"
v-for=
"item in downLoadList"
class=
"AnnFileListPMeta"
>
<p
style=
"height: 28px; padding: 0 10px; line-height: 28px;"
v-for=
"item in downLoadList"
class=
"AnnFileListPMeta"
>
<
span
@
click=
"downloadSingle(item)"
>
{{
item
.
Name
}}
--
{{
$t
(
'adm.adm_download'
)
}}
</span>
<
i
class=
"iconfont icon-xiazai"
></i>
--
<span
@
click=
"downloadSingle(item)"
>
{{
item
.
Name
}}
</span>
</p>
</p>
</div>
</div>
...
@@ -357,10 +356,10 @@
...
@@ -357,10 +356,10 @@
}
}
},
err
=>
{})
},
err
=>
{})
},
},
getDetails
(
id
){
getDetails
(
id
,
tit
){
this
.
outerVisible
=
true
;
this
.
outerVisible
=
true
;
this
.
layerType
=
1
;
this
.
layerType
=
1
;
this
.
dialogTitle
=
t
his
.
$t
(
'tips.adm_noticexiangqing'
)
;
this
.
dialogTitle
=
t
it
;
this
.
apipost
(
'User_get_NoticeGet'
,{
noticeId
:
id
},
res
=>
{
this
.
apipost
(
'User_get_NoticeGet'
,{
noticeId
:
id
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
detailMessage
=
res
.
data
.
data
this
.
detailMessage
=
res
.
data
.
data
...
@@ -434,5 +433,11 @@
...
@@ -434,5 +433,11 @@
.AnnfileList
li
{
height
:
30px
;
line-height
:
30px
;
padding
:
0
10px
;}
.AnnfileList
li
{
height
:
30px
;
line-height
:
30px
;
padding
:
0
10px
;}
.AnnfileList
li
:hover
{
background
:
#f1f1f1
;}
.AnnfileList
li
:hover
{
background
:
#f1f1f1
;}
.AnnfileList
li
>
i
{
float
:
right
;
margin-top
:
8px
;}
.AnnfileList
li
>
i
{
float
:
right
;
margin-top
:
8px
;}
.AnnfileList
li
>
span
:hover
,
.AnnFileListPMeta
>
span
:hover
{
text-decoration
:
underline
;
color
:
#E95252
;
cursor
:
pointer
;}
.AnnfileList
li
:hover
,
.AnnFileListPMeta
:hover
{
text-decoration
:
underline
;
color
:
#E95252
;
cursor
:
pointer
;}
.AnnFileListPMeta
{
color
:
blue
}
.AnnFileListPMeta
.iconfon
{
font-size
:
12px
;
}
</
style
>
</
style
>
\ No newline at end of file
src/components/newTravelmanager/TravelGroupControl/TravelPrice2.vue
View file @
12a4843c
...
@@ -694,7 +694,7 @@
...
@@ -694,7 +694,7 @@
<div
class=
"TPright"
style=
"float:left;"
>
<div
class=
"TPright"
style=
"float:left;"
>
<span>
团期标签
</span>
<span>
团期标签
</span>
<span>
<span>
<el-checkbox-group
v-model=
"priceData.PriceTag
List
"
>
<el-checkbox-group
v-model=
"priceData.PriceTag
Ids
"
>
<el-checkbox
v-for=
"team in teamTips"
:label=
"team.ID"
<el-checkbox
v-for=
"team in teamTips"
:label=
"team.ID"
:key=
"team.Content"
>
{{team.Content}}
</el-checkbox>
:key=
"team.Content"
>
{{team.Content}}
</el-checkbox>
</el-checkbox-group>
</el-checkbox-group>
...
@@ -811,7 +811,6 @@
...
@@ -811,7 +811,6 @@
},
},
//点击选中日历日期
//点击选中日历日期
clickedDay
(
item
)
{
clickedDay
(
item
)
{
console
.
log
(
item
,
'item'
);
this
.
chooseDay
=
this
.
getDayStr
(
item
.
day
);
this
.
chooseDay
=
this
.
getDayStr
(
item
.
day
);
switch
(
item
.
checkState
)
{
switch
(
item
.
checkState
)
{
case
this
.
$calendarUtils
.
checkState
.
hasValue
:
case
this
.
$calendarUtils
.
checkState
.
hasValue
:
...
@@ -884,7 +883,7 @@
...
@@ -884,7 +883,7 @@
LowNum
:
2
,
LowNum
:
2
,
TeamType
:
1
,
TeamType
:
1
,
//选中团期标签
//选中团期标签
PriceTag
List
:[],
PriceTag
Ids
:[],
PriceFlight
:
JSON
.
parse
(
PriceFlight
:
JSON
.
parse
(
JSON
.
stringify
(
this
.
PostConfig
.
FlightList
)
JSON
.
stringify
(
this
.
PostConfig
.
FlightList
)
)
)
...
@@ -1418,9 +1417,6 @@
...
@@ -1418,9 +1417,6 @@
},
err
=>
{}
},
err
=>
{}
);
);
},
},
getCkedTips
(
item
){
console
.
log
(
item
,
'itemmmmmmm'
);
},
},
created
(){
},
created
(){
localStorage
.
removeItem
(
'queryFlightAirMsg'
);
localStorage
.
removeItem
(
'queryFlightAirMsg'
);
if
(
this
.
TeamType
==
1
){
if
(
this
.
TeamType
==
1
){
...
...
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