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
29b652ca
Commit
29b652ca
authored
Dec 12, 2023
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
d76f4734
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
9 deletions
+24
-9
prestoreList.vue
...nts/FinancialModule/PrestorageManagement/prestoreList.vue
+24
-9
No files found.
src/components/FinancialModule/PrestorageManagement/prestoreList.vue
View file @
29b652ca
...
...
@@ -9,17 +9,11 @@
<div
class=
"query-box"
style=
"margin-bottom: 0px;"
>
<el-form
class=
"_info_box clearfix"
label-width=
"110px"
>
<el-row
style=
"padding:15px 20px 0 0;"
>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
4
"
>
<el-form-item
label=
"客户/电话:"
>
<el-input
placeholder=
""
class=
""
v-model=
"msg.RemitterName"
@
keyup
.
native=
"checkInteger(msg,'FrID')"
maxlength=
"8"
></el-input>
</el-form-item>
</el-col>
<!--
<el-col
:span=
"6"
>
<el-form-item
label=
"ID:"
>
<el-input
placeholder=
""
class=
""
v-model=
"msg.ClientIdStr"
@
keyup
.
native=
"checkInteger(msg,'FrID')"
maxlength=
"8"
placeholder=
"多个ID英文逗号,分隔"
></el-input>
</el-form-item>
</el-col>
-->
<el-col
:span=
"6"
>
<el-form-item
label=
"使用日期:"
>
<el-date-picker
class=
"h34"
...
...
@@ -30,6 +24,15 @@
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"公司别"
>
<el-select
placeholder=
"请选择"
filterable
v-model=
"msg.RB_Branch_Id"
>
<el-option
label=
"不限"
:value=
"-1"
></el-option>
<el-option
v-for=
"(item,index) in branchList"
:key=
"index"
:label=
"item.BName"
:value=
"item.Id"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<ul
class=
"clearfix"
>
...
...
@@ -114,18 +117,20 @@ export default {
ClientIdStr
:
''
,
QStartDate
:
''
,
QEndDate
:
''
,
RB_Branch_Id
:
-
1
},
loading
:
false
,
total
:
0
,
productionDate
:[]
productionDate
:[],
branchList
:[]
}
},
created
(){
},
mounted
(){
let
userInfo
=
this
.
getLocalStorage
();
this
.
getPageList
();
this
.
getBranchList
();
this
.
msg
.
ClientIdStr
=
this
.
$route
.
query
.
ClientIdStr
?
this
.
$route
.
query
.
ClientIdStr
:
""
if
(
this
.
$route
.
query
.
startDate
&&
this
.
$route
.
query
.
endDate
){
this
.
productionDate
=
this
.
$route
.
query
.
startDate
?[
this
.
$route
.
query
.
startDate
,
this
.
$route
.
query
.
endDate
]:[]
...
...
@@ -179,6 +184,16 @@ export default {
this
.
msg
.
pageIndex
=
1
;
this
.
getPageList
();
},
getBranchList
(){
// 获取列表数据
let
userInfo
=
this
.
getLocalStorage
();
this
.
apipost
(
'admin_get_BranchGetList'
,{
RB_Group_Id
:
userInfo
.
RB_Group_Id
,
Status
:
"0"
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
branchList
=
res
.
data
.
data
;
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
}
},
err
=>
{})
},
}
}
</
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