Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
545dbe8e
Commit
545dbe8e
authored
Aug 05, 2020
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
d92d93de
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
RecommendBill.vue
src/components/orderMan/RecommendBill.vue
+19
-3
No files found.
src/components/orderMan/RecommendBill.vue
View file @
545dbe8e
...
...
@@ -40,7 +40,7 @@
</el-select>
</el-form-item>
<el-form-item
label=
"期数"
style=
"display:inline-block;margin-bottom:0;"
>
<el-input
type=
"text"
size=
"small"
@
keyup
.
enter
.
native=
"msg.pageIndex=1,getList()"
v-model=
"msg.Periods"
>
<el-input
type=
"text"
class=
"w150"
size=
"small"
@
keyup
.
enter
.
native=
"msg.pageIndex=1,getList()"
v-model=
"msg.Periods"
>
</el-input>
</el-form-item>
</el-form>
...
...
@@ -88,7 +88,7 @@
</div>
</template>
<!-- 选择返佣订单列表 -->
<el-dialog
title=
"新增账单"
:visible
.
sync=
"choiceOrder"
width=
"1240px"
>
<el-dialog
title=
"新增账单"
:visible
.
sync=
"choiceOrder"
width=
"1240px"
@
close=
'closeDialog'
>
<el-form
label-width=
"80px"
>
<el-form-item
label=
"用户"
style=
"display:inline-block;"
>
<el-select
size=
"small"
v-model=
"orderMsg.UserId"
:filter-method=
"ChangeListName"
filterable
...
...
@@ -148,7 +148,7 @@
</el-table-column>
</el-table>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
size=
"small"
@
click=
"choiceOrder = false"
>
取消
</el-button>
<el-button
size=
"small"
@
click=
"choiceOrder = false
,toggleSelection()
"
>
取消
</el-button>
<el-button
type=
"primary"
size=
"small"
@
click=
"saveOrderChoice"
>
确定
</el-button>
</span>
</el-dialog>
...
...
@@ -305,6 +305,8 @@
this
.
Success
(
res
.
data
.
message
);
this
.
choiceOrder
=
false
;
this
.
getList
();
//清空勾选
this
.
toggleSelection
();
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
...
...
@@ -371,6 +373,20 @@
}
})
});
},
//清空多选方法
toggleSelection
(
rows
)
{
if
(
rows
)
{
rows
.
forEach
(
row
=>
{
this
.
$refs
.
multipleTable
.
toggleRowSelection
(
row
);
});
}
else
{
this
.
$refs
.
multipleTable
.
clearSelection
();
}
},
//关闭弹窗事件
closeDialog
(){
this
.
toggleSelection
();
}
},
mounted
()
{
...
...
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