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
b1c30f46
Commit
b1c30f46
authored
Jun 20, 2019
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
ad6f044b
64f5b097
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
3 deletions
+35
-3
BasicDocuments.vue
src/components/FinancialModule/BasicDocuments.vue
+1
-1
addFinancialProcess.vue
src/components/FinancialModule/addFinancialProcess.vue
+34
-2
No files found.
src/components/FinancialModule/BasicDocuments.vue
View file @
b1c30f46
...
...
@@ -998,7 +998,7 @@
<table
border=
"1"
bordercolor=
"#D2D2D2"
style=
"border-collapse:collapse;"
>
<tr>
<th>
账户分类
收支冲抵
</th>
<th>
账户分类
</th>
<th>
付款方式
</th>
<th>
账户
</th>
<!-- <th width="100px">账户余额</th> -->
...
...
src/components/FinancialModule/addFinancialProcess.vue
View file @
b1c30f46
...
...
@@ -327,8 +327,17 @@
<el-radio
v-model=
"addMsg.IsUploadPic"
:label=
"1"
>
{{
$t
(
'fnc.qiyong'
)
}}
</el-radio>
</el-form-item>
<el-form-item
:label=
"$t('ios.sfxianshi')"
>
<el-radio
v-model=
"addMsg.IsShow"
:label=
"1"
>
{{
$t
(
'pub.yes'
)
}}
</el-radio>
<el-radio
v-model=
"addMsg.IsShow"
:label=
"2"
>
{{
$t
(
'pub.no'
)
}}
</el-radio>
<el-radio
@
change=
"RadioShow"
v-model=
"addMsg.IsShow"
:label=
"1"
>
{{
$t
(
'pub.yes'
)
}}
</el-radio>
<el-radio
@
change=
"RadioShow"
v-model=
"addMsg.IsShow"
:label=
"2"
>
{{
$t
(
'pub.no'
)
}}
</el-radio>
</el-form-item>
<el-form-item
v-show=
"addMsg.IsShow==2"
label=
"可显示人"
>
<el-select
filterable
multiple
v-model=
'addMsg.ShowEmployeeList'
class=
"w200"
style=
"max-height:100px;overflow:hidden"
size=
"small"
>
<el-option
v-for=
'item in EmployeeList'
:label=
'item.EmName'
:value=
'item.EmployeeId'
:key=
'item.EmployeeId'
>
</el-option>
</el-select>
</el-form-item>
<el-form-item
:label=
"$t('fnc.syfeiyong')"
v-if=
"addMsg.TemplateType==8"
class=
"_treeselect"
>
<!--
<el-select
filterable
multiple
v-model=
'CostIdS'
class=
"w200"
@
change=
"disabledOption2"
>
...
...
@@ -525,6 +534,7 @@ export default {
components
:
{
Treeselect
},
data
(){
return
{
EmployeeList
:[],
Auditshow
:
false
,
accListShow
:
true
,
TemplateId
:
0
,
...
...
@@ -544,6 +554,7 @@ export default {
AuditUserList
:[],
},
IsShow
:
1
,
ShowEmployeeList
:[],
},
AuditUserList
:{
EmName
:
''
,
...
...
@@ -714,8 +725,27 @@ export default {
}
this
.
getFinancialFlowTemplate_post_GetNodeList
();
this
.
getRole
()
this
.
getEmployeeList
();
},
methods
:{
RadioShow
(
val
){
console
.
log
(
val
);
if
(
val
==
1
){
this
.
addMsg
.
ShowEmployeeList
=
[];
}
},
getEmployeeList
()
{
this
.
apipost
(
'admin_get_EmployeeGetList'
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
EmployeeList
=
res
.
data
.
data
}
},
err
=>
{
}
)
},
AuditSort
(){
let
sum
=
0
;
let
sortnum
=
0
;
...
...
@@ -771,6 +801,8 @@ export default {
this
.
addMsg
.
TempLateClass
=
data
.
TempLateClass
;
this
.
addMsg
.
IsUploadPic
=
data
.
IsUploadPic
;
this
.
addMsg
.
IsShow
=
data
.
IsShow
;
this
.
addMsg
.
ShowEmployeeList
=
data
.
ShowEmployeeList
;
if
(
data
.
list
&&
data
.
list
[
0
]
!==
-
1
)
{
this
.
accListMsg
=
data
.
list
;
}
...
...
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