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
930e94cf
Commit
930e94cf
authored
Aug 24, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
线路配置调整
parent
65afa1f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
32 deletions
+31
-32
lineManagement.vue
src/components/systemManagement/lineManagement.vue
+31
-32
No files found.
src/components/systemManagement/lineManagement.vue
View file @
930e94cf
...
...
@@ -549,18 +549,9 @@
</el-col>
<el-col
:span=
"5"
v-if=
'addMsg.travelEndAudit==1'
>
<el-form-item
label=
"审批人员"
prop=
"auditEmpId"
>
<el-select
v-model=
"addMsg.auditEmpId"
filterable
placeholder=
"审批人员"
@
change=
"$forceUpdate()"
>
<el-option
v-for=
"item in searchList"
:label=
"item.name"
:value=
"item.empId"
:key=
"item.empId"
></el-option>
<el-select
v-model=
"addMsg.auditEmpId"
filterable
placeholder=
"审批人员"
@
change=
"$forceUpdate()"
>
<el-option
v-for=
"item in searchList"
:label=
"item.name"
:value=
"item.empId"
:key=
"item.empId"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
...
...
@@ -579,6 +570,11 @@
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"行程主色"
>
<el-color-picker
v-model=
"addMsg.LineTripColor"
></el-color-picker>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
:label=
"$t('op.b2bxianlubjt')"
>
<div
class=
"TFimgList"
>
...
...
@@ -613,7 +609,6 @@
</div>
</div>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
:label=
"$t('op.apptubiao')"
>
...
...
@@ -664,6 +659,8 @@
</div>
</el-form-item>
</el-col>
<div
class=
"LM_Btcontent"
>
<input
type=
"button"
class=
"normalBtn"
@
click=
"submitForm('addMsg')"
:value=
"$t('pub.saveBtn')"
/>
<input
type=
"button"
class=
"hollowFixedBtn"
@
click=
"isShowDIv=false"
:value=
"$t('pub.cancelBtn')"
/>
...
...
@@ -740,6 +737,7 @@
</
template
>
<
script
>
import
getters
from
'../../store/getters'
;
export
default
{
data
()
{
return
{
...
...
@@ -773,8 +771,9 @@
RebateMoney
:
0
,
//人头返佣
TripFeatureTopBg
:
""
,
//行程特色顶部图片
TripFeatureBottomBg
:
""
,
//行程特色顶部图片
travelEndAudit
:
0
,
//结团审批
auditEmpId
:
''
,
//审批人
travelEndAudit
:
0
,
//结团审批
auditEmpId
:
''
,
//审批人
LineTripColor
:
""
,
//行程主色
},
departCompany
:
""
,
departDepartment
:
""
,
...
...
@@ -832,12 +831,11 @@
}],
},
searchList
:[]
searchList
:
[]
};
},
methods
:
{
handleChange3
(
file
,
fileList
)
{
this
.
fileList3
=
fileList
.
slice
(
-
1
);
},
handleChange1
(
file
,
fileList
)
{
...
...
@@ -955,13 +953,13 @@
};
this
.
addMsg
.
lineCountryList
.
push
(
countryObj
);
});
if
(
this
.
addMsg
.
travelEndAudit
==
1
){
//结团审核等于1 的时候 审批人员不能为空
if
(
this
.
addMsg
.
auditEmpId
==
''
)
{
if
(
this
.
addMsg
.
travelEndAudit
==
1
)
{
//结团审核等于1 的时候 审批人员不能为空
if
(
this
.
addMsg
.
auditEmpId
==
''
)
{
this
.
Error
(
'请选择结团审批人'
);
return
;
}
}
else
{
this
.
addMsg
.
auditEmpId
=
0
}
else
{
this
.
addMsg
.
auditEmpId
=
0
}
this
.
apipost
(
"line_post_Set"
,
...
...
@@ -1003,10 +1001,11 @@
this
.
addMsg
.
BroadsideImage
=
getInfo
.
broadsideImage
;
this
.
addMsg
.
AppLineIcon
=
getInfo
.
appLineIcon
;
this
.
addMsg
.
RebateMoney
=
getInfo
.
rebateMoney
;
this
.
addMsg
.
TripFeatureTopBg
=
getInfo
.
tripFeatureTopBg
;
this
.
addMsg
.
TripFeatureBottomBg
=
getInfo
.
tripFeatureBottomBg
;
this
.
addMsg
.
travelEndAudit
=
getInfo
.
travelEndAudit
;
this
.
addMsg
.
auditEmpId
=
getInfo
.
auditEmpId
==
0
?
''
:
getInfo
.
auditEmpId
;
this
.
addMsg
.
TripFeatureTopBg
=
getInfo
.
tripFeatureTopBg
;
this
.
addMsg
.
TripFeatureBottomBg
=
getInfo
.
tripFeatureBottomBg
;
this
.
addMsg
.
travelEndAudit
=
getInfo
.
travelEndAudit
;
this
.
addMsg
.
auditEmpId
=
getInfo
.
auditEmpId
==
0
?
''
:
getInfo
.
auditEmpId
;
this
.
addMsg
.
LineTripColor
=
getInfo
.
lineTripColor
;
},
deletelist
(
lineID
)
{
var
that
=
this
;
...
...
@@ -1352,13 +1351,13 @@
}
});
},
getEmployee
()
{
//所有人员下拉
let
employeeMsg
=
{
RB_Group_id
:
"0"
,
RB_Branch_id
:
"-1"
,
departmentId
:
"0"
,
IsLeave
:
"0"
,
}
getEmployee
()
{
//所有人员下拉
let
employeeMsg
=
{
RB_Group_id
:
"0"
,
RB_Branch_id
:
"-1"
,
departmentId
:
"0"
,
IsLeave
:
"0"
,
}
this
.
apipost
(
"app_get_company_employee"
,
employeeMsg
,
...
...
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