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
ec9d7675
Commit
ec9d7675
authored
Jan 09, 2025
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报价单调整
parent
e9573ddb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
413 additions
and
353 deletions
+413
-353
CostNewPriceAudit.vue
...ts/TravelManager/TravelNewQuotation/CostNewPriceAudit.vue
+354
-100
OfferChange.vue
...mponents/TravelManager/TravelNewQuotation/OfferChange.vue
+1
-0
priceDialog.vue
...mponents/TravelManager/TravelNewQuotation/priceDialog.vue
+36
-250
changeOffer.vue
src/components/commonPage/changeOffer.vue
+22
-3
No files found.
src/components/TravelManager/TravelNewQuotation/CostNewPriceAudit.vue
View file @
ec9d7675
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelNewQuotation/OfferChange.vue
View file @
ec9d7675
...
...
@@ -132,6 +132,7 @@
msg
,
res
=>
{
this
.
loading
=
false
;
console
.
log
(
"travel_get_GetMyTravelInfo_V4_OfferChange"
,
res
.
data
);
if
(
res
.
data
.
resultCode
==
1
)
{
var
tempData
=
res
.
data
.
data
;
if
(
tempData
.
ID
&&
tempData
.
ID
>
0
)
{
...
...
src/components/TravelManager/TravelNewQuotation/priceDialog.vue
View file @
ec9d7675
This diff is collapsed.
Click to expand it.
src/components/commonPage/changeOffer.vue
View file @
ec9d7675
...
...
@@ -36,6 +36,7 @@
border-bottom
:
1px
solid
#606266
;
padding-left
:
5px
!important
;
}
</
style
>
<
template
>
...
...
@@ -47,7 +48,7 @@
<td
style=
"width:100px;"
class=
"CP_ComTitle2 CostcomCenter"
>
变更类型
</td>
<td
style=
"width:100px;"
class=
"CP_ComTitle2 CostcomCenter"
>
天数
</td>
<td
style=
"width:100px;"
class=
"CP_ComTitle2 CostcomCenter"
>
变更值
</td>
<td
style=
"width:
10
0px;"
class=
"CP_ComTitle2 CostcomCenter"
>
变更备注
</td>
<td
style=
"width:
25
0px;"
class=
"CP_ComTitle2 CostcomCenter"
>
变更备注
</td>
<td
style=
"width:100px;"
class=
"CP_ComTitle2 CostcomCenter"
>
<a
style=
"color:blue;cursor:pointer;"
@
click=
"AddOfferObj()"
>
添加
</a>
</td>
...
...
@@ -75,7 +76,10 @@
<el-input
v-model=
"item.ChangeValue"
style=
"width:100px;"
max=
"6"
></el-input>
</td>
<td>
<el-input
v-model=
"item.ChangeRemarks"
style=
"width:100px;"
maxlength=
"50"
></el-input>
<el-select
v-model=
"item.ChangeRemarks"
placeholder=
"请选择"
>
<el-option
v-for=
"(cItem,cIndex) in changeRemarkList"
:key=
"cIndex"
:label=
"cItem.Name"
:value=
"cItem.Name"
></el-option>
</el-select>
</td>
<td>
<a
style=
"color:red;cursor:pointer;"
@
click=
"DeleteOfferChange(item,index)"
>
删除
</a>
...
...
@@ -98,6 +102,9 @@
loading
:
false
,
dataList
:
[],
changeTypeList
:
[],
//变更类型
changeRemarkList
:
[
]
};
},
methods
:
{
...
...
@@ -197,13 +204,25 @@
this
.
changeTypeList
=
res
.
data
.
data
;
}
});
},
getChangeRemark
()
{
var
posMsg
=
{
Key
:
"Travel_Offer_ChangeRemark"
};
this
.
apipost
(
"dict_get_GetDictValueCommonList"
,
posMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
changeRemarkList
=
res
.
data
.
data
;
}
});
}
},
created
()
{
this
.
getChangeType
();
this
.
getChangeRemark
();
},
mounted
()
{
this
.
getOfferChange
();
}
};
</
script
>
\ No newline at end of file
</
script
>
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