Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CRM
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
华国豪
CRM
Commits
130d2365
Commit
130d2365
authored
Jun 07, 2022
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
c13bfd32
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
175 additions
and
22 deletions
+175
-22
Home.vue
src/components/Home.vue
+8
-0
customerOrder.vue
src/components/customerManage/customerOrder.vue
+5
-0
myCustomerOrder.vue
src/components/customerManage/myCustomerOrder.vue
+5
-0
orderList.vue
src/components/customerManage/orderList.vue
+9
-0
Agreement.vue
src/components/guestManagement/Agreement.vue
+14
-0
ticketOrder.vue
src/components/guestManagement/ticketOrder.vue
+128
-22
index.vue
src/views/index.vue
+6
-0
No files found.
src/components/Home.vue
View file @
130d2365
...
...
@@ -511,6 +511,14 @@ export default {
created
()
{
this
.
initRankRangeList
();
},
watch
:{
diyDateRange
:
{
handler
(
val
,
oldVal
)
{
this
.
diyDateRange
=
val
this
.
setDiyDateRange
()
},
},
},
mounted
()
{
this
.
changeRankTypeHandler
();
this
.
GetBriefing
();
...
...
src/components/customerManage/customerOrder.vue
View file @
130d2365
...
...
@@ -548,6 +548,11 @@ export default {
Id
:
"7"
,
show
:
true
,
},
{
Name
:
"修改日期"
,
Id
:
"10"
,
show
:
item
.
OrderType
&&
item
.
OrderType
.
indexOf
(
1
)
!=
-
1
?
true
:
false
,
}
];
});
};
...
...
src/components/customerManage/myCustomerOrder.vue
View file @
130d2365
...
...
@@ -511,6 +511,11 @@ export default {
Id
:
"7"
,
show
:
true
,
},
{
Name
:
"修改日期"
,
Id
:
"10"
,
show
:
item
.
OrderType
&&
item
.
OrderType
.
indexOf
(
1
)
!=
-
1
?
true
:
false
,
}
];
});
};
...
...
src/components/customerManage/orderList.vue
View file @
130d2365
...
...
@@ -489,6 +489,15 @@ export default {
if
(
row
.
More
==
"9"
)
{
this
.
endOfLoss
(
row
);
}
// 修改日期
if
(
row
.
More
==
"10"
)
{
this
.
modifiedDate
(
row
);
}
},
// 修改日期
modifiedDate
(
row
){
let
$this
=
this
this
.
MsgBus
.
$emit
(
"modifiedDateOrderBoxOpen"
,
$this
.
ID
,
row
,
true
);
},
// 订单收损完结
endOfLoss
(
row
){
...
...
src/components/guestManagement/Agreement.vue
View file @
130d2365
...
...
@@ -644,6 +644,15 @@
if
(
row
.
More
==
"9"
)
{
this
.
endOfLoss
(
row
);
}
// 修改日期
if
(
row
.
More
==
"10"
)
{
this
.
modifiedDate
(
row
);
}
},
// 修改日期
modifiedDate
(
row
){
let
$this
=
this
this
.
MsgBus
.
$emit
(
"modifiedDateOrderBoxOpen"
,
$this
.
ID
,
row
,
true
);
},
// 订单收损完结
endOfLoss
(
row
)
{
...
...
@@ -1115,6 +1124,11 @@
Name
:
"操作日志"
,
Id
:
"7"
,
show
:
true
,
},
{
Name
:
"修改日期"
,
Id
:
"10"
,
show
:
item
.
OrderType
&&
item
.
OrderType
.
indexOf
(
1
)
!=
-
1
?
true
:
false
,
}
]
});
...
...
src/components/guestManagement/ticketOrder.vue
View file @
130d2365
This diff is collapsed.
Click to expand it.
src/views/index.vue
View file @
130d2365
...
...
@@ -375,6 +375,12 @@
$this
.
obj
=
obj
;
$this
.
dialogTicketOrderVisible
=
true
;
});
this
.
MsgBus
.
$on
(
"modifiedDateOrderBoxOpen"
,
function
(
GuestId
,
obj
)
{
$this
.
dialogTicketOrderVisibleName
=
"修改日期"
;
$this
.
GuestId
=
GuestId
;
$this
.
obj
=
obj
;
$this
.
dialogTicketOrderVisible
=
true
;
});
this
.
MsgBus
.
$on
(
"closeTicketOrderDialogBox"
,
function
()
{
$this
.
dialogTicketOrderVisible
=
false
;
this
.
$emit
(
"getList"
);
...
...
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