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
c0fd7c84
Commit
c0fd7c84
authored
Apr 19, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
08960432
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
3 deletions
+39
-3
CostNewPrice.vue
...ponents/TravelManager/TravelNewQuotation/CostNewPrice.vue
+1
-1
newQuotation.vue
...ponents/TravelManager/TravelNewQuotation/newQuotation.vue
+36
-0
index.js
src/plug/index.js
+2
-2
No files found.
src/components/TravelManager/TravelNewQuotation/CostNewPrice.vue
View file @
c0fd7c84
...
...
@@ -259,7 +259,7 @@
<td
align=
"center"
v-if=
"childIndex==0"
:rowspan=
"CostNumberList.length"
>
{{
subItem
.
DayNum
}}
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"CostNumberList.length"
colspan=
"2"
>
<td
v-if=
"childIndex==0"
:rowspan=
"CostNumberList.length"
>
<el-input
type=
"textarea"
resize=
"none"
class=
"w250"
v-model=
"subItem.Title"
></el-input>
</td>
<td
v-if=
"childIndex==0"
:rowspan=
"CostNumberList.length"
>
...
...
src/components/TravelManager/TravelNewQuotation/newQuotation.vue
View file @
c0fd7c84
...
...
@@ -89,6 +89,17 @@
</el-select>
</span>
</li>
<li>
<span>
<span>
{{
$t
(
'visa.v_czuser'
)
}}
</span>
<el-select
class=
"w150"
v-model=
"queryData.CreateBy"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"0"
>
</el-option>
<el-option
v-for=
"(item,index) in EmployeeList"
:label=
"item.EmName"
:value=
"item.EmployeeId"
:key=
"index"
></el-option>
</el-select>
</span>
</li>
<li>
<button
class=
"hollowFixedBtn"
@
click=
"getList(),resetPageIndex()"
>
查询
</button>
<button
class=
"hollowFixedBtn"
@
click=
"goMakeQuo('QuotationNewPrice',0)"
>
新增
</button>
...
...
@@ -327,9 +338,11 @@
export
default
{
data
()
{
return
{
EmployeeList
:
[],
EditBtn
:
false
,
//报价单修改权限
userInfo
:
{},
queryData
:
{
CreateBy
:
''
,
LineId
:
0
,
LineteamId
:
0
,
TravelState
:
0
,
...
...
@@ -407,6 +420,28 @@
commonTeamInfo
:
commonTeamInfo
},
methods
:
{
//根据当前员工所在部门获取该部门及子部门员工信息
getEmployeeList
()
{
let
userInfo
=
this
.
getLocalStorage
();
// console.log('userInfo', userInfo)
this
.
queryData
.
CreateBy
=
userInfo
.
EmployeeId
let
msg
=
{
GroupId
:
userInfo
.
RB_Group_id
,
BranchId
:
"-1"
,
DepartmentId
:
"-1"
,
PostId
:
"-1"
,
IsLeave
:
"0"
};
this
.
apipost
(
"admin_get_EmployeeGetList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
EmployeeList
=
res
.
data
.
data
;
}
},
err
=>
{}
);
},
goUrl
(
path
,
configId
,
qType
)
{
if
(
configId
>
0
)
{
this
.
$router
.
push
({
...
...
@@ -649,6 +684,7 @@
},
},
mounted
()
{
this
.
getEmployeeList
();
this
.
GetAuth
();
var
routeName
=
this
.
$route
.
name
;
if
(
routeName
==
'newQuotation'
)
{
...
...
src/plug/index.js
View file @
c0fd7c84
...
...
@@ -119,8 +119,8 @@ export default {
let
crmUrl
=
""
;
//crm API
let
locationName
=
window
.
location
.
hostname
;
// domainUrl = "http://192.168.10.128";
domainUrl
=
"http://192.168.10.9:8083"
// 刘东电脑
//
domainUrl = "http://192.168.10.226:8015";
//
domainUrl = "http://192.168.10.9:8083" // 刘东电脑
domainUrl
=
"http://192.168.10.226:8015"
;
// domainUrl = "http://reborn.oytour.com";
let
crmLocalFileStreamDownLoadUrl
=
""
;
crmLocalFileStreamDownLoadUrl
=
locationName
.
indexOf
(
'oytour'
)
!==
-
1
?
"http://crm.oytour.com"
:
"http://testcrm.oytour.com"
;
...
...
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