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
60ec6896
Commit
60ec6896
authored
May 17, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save
parent
f209068a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
10 deletions
+31
-10
productOrderList.vue
src/components/SalesModule/productOrderList.vue
+9
-0
entryForm.vue
src/components/rank/entryForm.vue
+8
-1
salesVolumeRank.vue
src/components/rank/salesVolumeRank.vue
+14
-9
No files found.
src/components/SalesModule/productOrderList.vue
View file @
60ec6896
...
...
@@ -286,6 +286,15 @@
type=
"date"
></el-date-picker>
</span>
</li>
<li>
<span
style=
"margin: 0 0 0 24px"
><em>
未维护OP
</em>
<el-select
class=
"w150"
v-model=
"msg.SelectOP"
filterable
placeholder=
"未维护OP"
>
<el-option
label=
"不限"
:value=
"0"
></el-option>
<el-option
v-if=
"!isVisa"
label=
"主团"
:value=
"1"
></el-option>
<el-option
label=
"签证"
:value=
"2"
></el-option>
</el-select>
</span>
</li>
<li>
<div
style=
"margin: 8px 0 0 24px"
>
<span><em>
只查询有签证的团
</em>
...
...
src/components/rank/entryForm.vue
View file @
60ec6896
...
...
@@ -557,7 +557,12 @@ export default {
);
},
getSummaryData
()
{
if
(
this
.
msg
.
pageIndex
!=
1
)
{
return
}
let
param
=
this
.
getParams
();
delete
param
.
pageIndex
delete
param
.
pageSize
this
.
apipost
(
"sellorder_get_GetSalesVolumeRankDetailStatistics"
,
param
,
...
...
@@ -598,11 +603,13 @@ export default {
this
.
getCompanyMsg
.
RB_Group_Id
=
this
.
getLocalStorage
().
RB_Group_id
;
this
.
getDepartmentMsg
.
RB_Group_Id
=
this
.
getLocalStorage
().
RB_Group_id
;
this
.
employeeMsg
.
employeeMsg
=
this
.
getLocalStorage
().
RB_Group_id
;
const
{
BranchId
=
0
,
EnterID
=
0
,
RB_Department_Id
=
0
}
=
this
.
$route
.
query
;
const
{
BranchId
=
0
,
EnterID
=
0
,
RB_Department_Id
=
0
,
tStartDates
=
[],
qStartDates
=
[]
}
=
this
.
$route
.
query
;
console
.
log
(
"this.$route.query."
,
this
.
$route
);
this
.
queryMsg
.
RB_Branch_Id
=
Number
(
BranchId
);
this
.
queryMsg
.
EnterID
=
Number
(
EnterID
);
this
.
queryMsg
.
RB_Department_Id
=
Number
(
RB_Department_Id
);
this
.
queryMsg
.
tStartDates
=
tStartDates
;
this
.
queryMsg
.
qStartDates
=
qStartDates
;
this
.
getCompanyList
();
if
(
this
.
queryMsg
.
RB_Branch_Id
>=
0
)
{
this
.
getDepartment
(
false
);
...
...
src/components/rank/salesVolumeRank.vue
View file @
60ec6896
...
...
@@ -127,6 +127,7 @@
:is-loading=
"loading"
sort-always
@
sort-change=
"sortChange"
@
on-custom-comp=
"customCompFunc"
></v-table>
</div>
</
template
>
...
...
@@ -166,15 +167,7 @@ Vue.component("table-operation", {
},
methods
:
{
update
(
rowData
,
index
)
{
this
.
$router
.
push
({
path
:
"/salesVolumeRankEntryForm"
,
query
:
{
BranchId
:
rowData
.
BranchId
,
EnterID
:
rowData
.
EnterID
,
RB_Department_Id
:
rowData
.
RB_Department_Id
,
blank
:
"y"
,
},
});
this
.
$emit
(
'on-custom-comp'
,
rowData
);
},
},
});
...
...
@@ -246,6 +239,18 @@ export default {
//this.pageSize = this.calcPageSize(40); 此页不需要分页
},
methods
:
{
customCompFunc
(
rowData
)
{
this
.
$router
.
push
({
path
:
"/salesVolumeRankEntryForm"
,
query
:
{
BranchId
:
rowData
.
BranchId
,
EnterID
:
rowData
.
EnterID
,
RB_Department_Id
:
rowData
.
RB_Department_Id
,
blank
:
"y"
,
tStartDates
:
this
.
msg
.
tStartDates
,
qStartDates
:
this
.
msg
.
qStartDates
,
},
});},
GetAuth
()
{
var
actionCode
=
this
.
$AuthCode
.
S_CheckAllOrder
;
this
.
CheckUserAuth
(
actionCode
,
res
=>
{
...
...
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