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
8b2c5cb2
Commit
8b2c5cb2
authored
1 year ago
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
门票 发票详情调整
parent
0cf1a517
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
77 additions
and
43 deletions
+77
-43
OrderList.vue
src/components/Hotel/reservation/OrderList.vue
+19
-7
OrderList.vue
src/components/SingleAirTicket/components/OrderList.vue
+1
-1
orderList.vue
...omponents/busManagement/BookAcar/components/orderList.vue
+17
-6
OrderList.vue
src/components/myOrdersAllType/components/OrderList.vue
+22
-22
OrderList.vue
src/components/scenicSpot/reservation/OrderList.vue
+18
-7
No files found.
src/components/Hotel/reservation/OrderList.vue
View file @
8b2c5cb2
...
@@ -336,7 +336,7 @@
...
@@ -336,7 +336,7 @@
{{
scope
.
row
.
OrderType
==
1
?
"散拼订房"
:
"团队订房"
}}
{{
scope
.
row
.
OrderType
==
1
?
"散拼订房"
:
"团队订房"
}}
</div>
</div>
</div>
</div>
<div
class=
"cblack fz14 mr"
<div
class=
"cblack fz14 mr"
:class=
"
{ cF1416C: scope.row.IsFinish == 0,c20C997: scope.row.IsFinish == 1 }">
:class=
"
{ cF1416C: scope.row.IsFinish == 0,c20C997: scope.row.IsFinish == 1 }">
...
@@ -715,7 +715,7 @@
...
@@ -715,7 +715,7 @@
'c3FC4FF':x.InvoiceApplyState===6,'cF1416C':x.InvoiceApplyState===1||x.InvoiceApplyState===3,
'c3FC4FF':x.InvoiceApplyState===6,'cF1416C':x.InvoiceApplyState===1||x.InvoiceApplyState===3,
'cff9800':x.InvoiceApplyState===2||x.InvoiceApplyState===4||x.InvoiceApplyState===5}"
'cff9800':x.InvoiceApplyState===2||x.InvoiceApplyState===4||x.InvoiceApplyState===5}"
v-for=
"(x, i) in scope.row.InvoiceApplyList"
v-for=
"(x, i) in scope.row.InvoiceApplyList"
@
click=
"openDetails(x)"
@
click=
"openDetails(x
,scope.row
)"
>
{{ x.ID }}
</span
>
{{ x.ID }}
</span
>
>
<span
v-if=
"scope.row.InvoiceApplyList&&scope.row.InvoiceApplyList.length == 0"
class=
"c9e fz12"
>
<span
v-if=
"scope.row.InvoiceApplyList&&scope.row.InvoiceApplyList.length == 0"
class=
"c9e fz12"
>
...
@@ -1206,15 +1206,27 @@ export default {
...
@@ -1206,15 +1206,27 @@ export default {
);
);
},
},
// 单据详情
// 单据详情
openDetails
(
item
)
{
openDetails
(
item
,
x
)
{
let
query
=
{
let
query
=
{
id
:
item
.
FrID
?
item
.
FrID
:
item
.
ID
,
id
:
item
.
FrID
?
item
.
FrID
:
item
.
ID
,
blank
:
"y"
,
blank
:
"y"
,
};
};
this
.
$router
.
push
({
// 跳转发票详情页面
path
:
"/FinancialDocumentsDetail"
,
if
(
x
){
query
this
.
$router
.
push
({
});
name
:
"invoicesManagerDetail"
,
query
:
{
id
:
x
.
OrderId
,
blank
:
"y"
,
},
});
}
else
{
this
.
$router
.
push
({
path
:
"/FinancialDocumentsDetail"
,
query
});
}
},
},
// 制作单据
// 制作单据
makeAdocument
(
row
,
index
,
num
,
name
,
Offset
)
{
makeAdocument
(
row
,
index
,
num
,
name
,
Offset
)
{
...
...
This diff is collapsed.
Click to expand it.
src/components/SingleAirTicket/components/OrderList.vue
View file @
8b2c5cb2
...
@@ -774,7 +774,7 @@
...
@@ -774,7 +774,7 @@
<div
class=
"row wrap orderNo fz12 py"
>
<div
class=
"row wrap orderNo fz12 py"
>
<span
class=
"cursor-pointer radius5 mr px5"
:class=
"{'bgD9F3FF':x.InvoiceApplyState==0,'bgFAEAED':x.InvoiceApplyState==1,'bjFFF3E0':x.InvoiceApplyState==2,
<span
class=
"cursor-pointer radius5 mr px5"
:class=
"{'bgD9F3FF':x.InvoiceApplyState==0,'bgFAEAED':x.InvoiceApplyState==1,'bjFFF3E0':x.InvoiceApplyState==2,
'c3FC4FF':x.InvoiceApplyState==0,'cF1416C':x.InvoiceApplyState==1,'cff9800':x.InvoiceApplyState==2}"
'c3FC4FF':x.InvoiceApplyState==0,'cF1416C':x.InvoiceApplyState==1,'cff9800':x.InvoiceApplyState==2}"
v-for=
"(x, i) in item.InvoiceApplyList"
@
click=
"goInvoiceDetail(x)"
:key=
"i+40000"
>
{{ x.ID }}
</span>
v-for=
"(x, i) in item.InvoiceApplyList"
@
click=
"goInvoiceDetail(x
,item
)"
:key=
"i+40000"
>
{{ x.ID }}
</span>
<span
v-if=
"item.InvoiceApplyList.length == 0"
class=
"c9e fz12"
>
<span
v-if=
"item.InvoiceApplyList.length == 0"
class=
"c9e fz12"
>
暂无发票单据
暂无发票单据
</span>
</span>
...
...
This diff is collapsed.
Click to expand it.
src/components/busManagement/BookAcar/components/orderList.vue
View file @
8b2c5cb2
...
@@ -817,7 +817,7 @@
...
@@ -817,7 +817,7 @@
'c3FC4FF':x.InvoiceApplyState===6,'cF1416C':x.InvoiceApplyState===1||x.InvoiceApplyState===3,
'c3FC4FF':x.InvoiceApplyState===6,'cF1416C':x.InvoiceApplyState===1||x.InvoiceApplyState===3,
'cff9800':x.InvoiceApplyState===2||x.InvoiceApplyState===4||x.InvoiceApplyState===5}"
'cff9800':x.InvoiceApplyState===2||x.InvoiceApplyState===4||x.InvoiceApplyState===5}"
v-for=
"(x, i) in scope.row.InvoiceApplyList"
v-for=
"(x, i) in scope.row.InvoiceApplyList"
@
click=
"openDetails(x)"
@
click=
"openDetails(x
,scope.row
)"
>
{{ x.ID }}
</span
>
{{ x.ID }}
</span
>
>
<span
v-if=
"scope.row.InvoiceApplyList&&scope.row.InvoiceApplyList.length == 0"
class=
"c9e fz12"
>
<span
v-if=
"scope.row.InvoiceApplyList&&scope.row.InvoiceApplyList.length == 0"
class=
"c9e fz12"
>
...
@@ -1412,15 +1412,26 @@ export default {
...
@@ -1412,15 +1412,26 @@ export default {
);
);
},
},
// 单据详情
// 单据详情
openDetails
(
item
)
{
openDetails
(
item
,
x
)
{
let
query
=
{
let
query
=
{
id
:
item
.
FrID
?
item
.
FrID
:
item
.
ID
,
id
:
item
.
FrID
?
item
.
FrID
:
item
.
ID
,
blank
:
"y"
,
blank
:
"y"
,
};
};
this
.
$router
.
push
({
// 跳转发票详情页面
path
:
"/FinancialDocumentsDetail"
,
if
(
x
){
query
,
this
.
$router
.
push
({
});
name
:
"invoicesManagerDetail"
,
query
:
{
id
:
x
.
OrderId
,
blank
:
"y"
,
},
});
}
else
{
this
.
$router
.
push
({
path
:
"/FinancialDocumentsDetail"
,
query
});
}
},
},
// 制作单据
// 制作单据
makeAdocument
(
row
,
index
,
num
,
Offset
)
{
makeAdocument
(
row
,
index
,
num
,
Offset
)
{
...
...
This diff is collapsed.
Click to expand it.
src/components/myOrdersAllType/components/OrderList.vue
View file @
8b2c5cb2
...
@@ -603,7 +603,6 @@
...
@@ -603,7 +603,6 @@
<!-- 申请弹窗 -->
<!-- 申请弹窗 -->
<div
class=
"combottomDiv OPremarkDiv"
v-if=
"changePriceMsg.outerVisible"
>
<div
class=
"combottomDiv OPremarkDiv"
v-if=
"changePriceMsg.outerVisible"
>
<div
class=
"combottomTitle"
>
{{ titlePrice }}
<div
class=
"combottomTitle"
>
{{ titlePrice }}
<span
style=
"margin-left: 20px;"
>
<span
style=
"margin-left: 20px;"
>
提示:
提示:
<span
style=
"color: red;"
>
<span
style=
"color: red;"
>
...
@@ -612,37 +611,38 @@
...
@@ -612,37 +611,38 @@
方可帐平
</span>
方可帐平
</span>
</span>
</span>
</div>
</div>
<div
slot=
"footer"
class=
"dialog-footer"
style=
"float: right;margin-right: 5%;position: relative; z-index: 1;"
>
<button
class=
"hollowFixedBtn"
@
click=
"changePriceMsg.outerVisible = false"
>
{{ $t("pub.cancelBtn") }}
</button>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"setChangePrice"
>
{{ $t("pub.sureBtn") }}
</button>
</div>
<el-form
label-width=
"100px"
>
<el-form
label-width=
"100px"
>
<el-col
:span=
"
8
"
>
<el-col
:span=
"
4
"
>
<el-form-item
label=
"应收总金额"
prop=
""
>
<el-form-item
label=
"应收总金额"
prop=
""
>
<el-input
<el-input
type=
"number"
type=
"number"
v-model=
"changePriceMsg.Money"
v-model=
"changePriceMsg.Money"
rows=
"6"
></el-input>
></el-input>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<el-col
:span=
"
8
"
>
<el-col
:span=
"
6
"
>
<el-form-item
label=
"改价原因"
prop=
""
>
<el-form-item
label=
"改价原因"
prop=
""
>
<el-input
<el-input
type=
"textarea"
type=
"textarea"
v-model=
"changePriceMsg.ApplyForReason"
v-model=
"changePriceMsg.ApplyForReason"
rows=
"6"
autosize
></el-input>
></el-input>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-form>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<button
class=
"hollowFixedBtn"
@
click=
"changePriceMsg.outerVisible = false"
>
{{ $t("pub.cancelBtn") }}
</button>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"setChangePrice"
>
{{ $t("pub.sureBtn") }}
</button>
</div>
</div>
</div>
<!-- 审核弹窗 -->
<!-- 审核弹窗 -->
<div
<div
...
@@ -699,22 +699,22 @@
...
@@ -699,22 +699,22 @@
<el-row>
<el-row>
<el-col
:span=
"4"
>
<el-col
:span=
"4"
>
<el-form-item
label=
"订单应收总金额"
>
<el-form-item
label=
"订单应收总金额"
>
<span
rows=
"6"
>
<span>
{{ changePriceMsg.PreferPrice }}
{{ changePriceMsg.PreferPrice }}
</span>
</span>
</el-form-item></el-col
</el-form-item></el-col
>
>
<el-col
:span=
"
8
"
>
<el-col
:span=
"
16
"
>
<el-form-item
label=
"申请理由"
>
<el-form-item
label=
"申请理由"
>
<span
rows=
"6"
>
{{ changePriceMsg.ApplyForReason
}}
</span>
<span
>
{{ changePriceMsg.ApplyForReason?changePriceMsg.ApplyForReason:'-'
}}
</span>
</el-form-item></el-col
</el-form-item></el-col
>
>
</el-row>
</el-row>
<el-row>
<el-row>
<el-col
:span=
"4"
>
<el-col
:span=
"4"
>
<el-form-item
label=
"申请总金额"
>
<el-form-item
label=
"申请总金额"
>
<span
rows=
"6"
>
{{ changePriceMsg.ApplyForMoney }}
</span>
<span>
{{ changePriceMsg.ApplyForMoney }}
</span>
</el-form-item></el-col
</el-form-item></el-col
>
>
<el-col
:span=
"4"
>
<el-col
:span=
"4"
>
...
@@ -738,13 +738,13 @@
...
@@ -738,13 +738,13 @@
</el-radio-group>
</el-radio-group>
</el-form-item></el-col
</el-form-item></el-col
>
>
<el-col
:span=
"
8
"
>
<el-col
:span=
"
6
"
>
<el-form-item
label=
"审核理由"
prop=
""
>
<el-form-item
label=
"审核理由"
prop=
""
>
<el-input
<el-input
:readonly=
"changePriceMsg.DialogType == 1 ? true : false"
:readonly=
"changePriceMsg.DialogType == 1 ? true : false"
type=
"textarea"
type=
"textarea"
v-model=
"changePriceMsg.RefuseReason"
v-model=
"changePriceMsg.RefuseReason"
rows=
"6"
autosize
></el-input>
</el-form-item
></el-input>
</el-form-item
></el-col>
></el-col>
</el-row>
</el-row>
...
...
This diff is collapsed.
Click to expand it.
src/components/scenicSpot/reservation/OrderList.vue
View file @
8b2c5cb2
...
@@ -792,7 +792,7 @@
...
@@ -792,7 +792,7 @@
'bjFFF3E0':x.InvoiceApplyState===2||x.InvoiceApplyState===4||x.InvoiceApplyState===5,
'bjFFF3E0':x.InvoiceApplyState===2||x.InvoiceApplyState===4||x.InvoiceApplyState===5,
'c3FC4FF':x.InvoiceApplyState===6,'cF1416C':x.InvoiceApplyState===1||x.InvoiceApplyState===3,
'c3FC4FF':x.InvoiceApplyState===6,'cF1416C':x.InvoiceApplyState===1||x.InvoiceApplyState===3,
'cff9800':x.InvoiceApplyState===2||x.InvoiceApplyState===4||x.InvoiceApplyState===5}"
'cff9800':x.InvoiceApplyState===2||x.InvoiceApplyState===4||x.InvoiceApplyState===5}"
v-for=
"(x, i) in scope.row.InvoiceApplyList"
@
click=
"openDetails(x)"
>
{{ x.ID }}
</span>
v-for=
"(x, i) in scope.row.InvoiceApplyList"
@
click=
"openDetails(x
,scope.row
)"
>
{{ x.ID }}
</span>
<span
v-if=
"scope.row.InvoiceApplyList&&scope.row.InvoiceApplyList.length == 0"
class=
"c9e fz12"
>
<span
v-if=
"scope.row.InvoiceApplyList&&scope.row.InvoiceApplyList.length == 0"
class=
"c9e fz12"
>
暂无发票单据
暂无发票单据
</span>
</span>
...
@@ -1197,7 +1197,7 @@
...
@@ -1197,7 +1197,7 @@
},
},
OrderList
:
{
OrderList
:
{
handler
(
val
,
oldVal
)
{
handler
(
val
,
oldVal
)
{
}
}
}
}
},
},
...
@@ -1421,15 +1421,26 @@
...
@@ -1421,15 +1421,26 @@
);
);
},
},
// 单据详情
// 单据详情
openDetails
(
item
)
{
openDetails
(
item
,
x
)
{
let
query
=
{
let
query
=
{
id
:
item
.
FrID
?
item
.
FrID
:
item
.
ID
,
id
:
item
.
FrID
?
item
.
FrID
:
item
.
ID
,
blank
:
"y"
,
blank
:
"y"
,
};
};
this
.
$router
.
push
({
// 跳转发票详情页面
path
:
"/FinancialDocumentsDetail"
,
if
(
x
){
query
this
.
$router
.
push
({
});
name
:
"invoicesManagerDetail"
,
query
:
{
id
:
x
.
OrderId
,
blank
:
"y"
,
},
});
}
else
{
this
.
$router
.
push
({
path
:
"/FinancialDocumentsDetail"
,
query
});
}
},
},
// 制作单据
// 制作单据
makeAdocument
(
row
,
index
,
num
,
Offset
)
{
makeAdocument
(
row
,
index
,
num
,
Offset
)
{
...
...
This diff is collapsed.
Click to expand it.
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