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
11472c06
Commit
11472c06
authored
Aug 19, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/huangyuanyuan/electricitysheep
parents
be4abfbd
d72f9867
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1324 additions
and
154 deletions
+1324
-154
wdExamine.vue
src/components/UserMan/tinyMerchant/wdExamine.vue
+82
-39
wdOrder.vue
src/components/UserMan/tinyMerchant/wdOrder.vue
+701
-0
wdWithdrawal.vue
src/components/UserMan/tinyMerchant/wdWithdrawal.vue
+452
-0
LiveOrder.vue
src/components/orderMan/LiveOrder.vue
+66
-104
index.js
src/router/index.js
+23
-11
No files found.
src/components/UserMan/tinyMerchant/wdExamine.vue
View file @
11472c06
...
@@ -93,11 +93,11 @@
...
@@ -93,11 +93,11 @@
<img
@
click=
"pending(scope.row,2)"
v-if=
"scope.row.AuditStatus==1"
class=
"app-order-icon"
<img
@
click=
"pending(scope.row,2)"
v-if=
"scope.row.AuditStatus==1"
class=
"app-order-icon"
src=
"../../../assets/img/userman/nopass.png"
alt=
""
>
src=
"../../../assets/img/userman/nopass.png"
alt=
""
>
</el-tooltip>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"
添加
备注"
placement=
"top-start"
v-if=
"scope.row.AuditStatus==2"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"
修改
备注"
placement=
"top-start"
v-if=
"scope.row.AuditStatus==2"
>
<img
@
click=
"
openRemark(5,scope.row
)"
style=
"width:32px;height:32px"
src=
"../../../assets/img/userman/add_remark.png"
alt=
""
v-if=
"scope.row.AuditStatus==2"
>
<img
@
click=
"
pending(scope.row,3
)"
style=
"width:32px;height:32px"
src=
"../../../assets/img/userman/add_remark.png"
alt=
""
v-if=
"scope.row.AuditStatus==2"
>
</el-tooltip>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"删除"
placement=
"top-start"
v-if=
"scope.row.AuditStatus==2"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"删除"
placement=
"top-start"
v-if=
"scope.row.AuditStatus==2"
>
<img
@
click=
"
Delete(3,scope.row
)"
style=
"width:32px;height:32px"
src=
"../../../assets/img/userman/del.png"
alt=
""
v-if=
"scope.row.AuditStatus==2"
>
<img
@
click=
"
pending(scope.row,4
)"
style=
"width:32px;height:32px"
src=
"../../../assets/img/userman/del.png"
alt=
""
v-if=
"scope.row.AuditStatus==2"
>
</el-tooltip>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"修改微店佣金"
placement=
"top-start"
v-if=
"scope.row.AuditStatus==2"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"修改微店佣金"
placement=
"top-start"
v-if=
"scope.row.AuditStatus==2"
>
<img
@
click=
"openYongjin(scope.row)"
style=
"width:32px;height:32px"
src=
"../../../assets/img/userman/edit.png"
alt=
""
v-if=
"scope.row.AuditStatus==2"
>
<img
@
click=
"openYongjin(scope.row)"
style=
"width:32px;height:32px"
src=
"../../../assets/img/userman/edit.png"
alt=
""
v-if=
"scope.row.AuditStatus==2"
>
...
@@ -131,6 +131,19 @@
...
@@ -131,6 +131,19 @@
<el-button
size=
"small"
type=
"primary"
@
click=
"setCommission"
>
确 定
</el-button>
<el-button
size=
"small"
type=
"primary"
@
click=
"setCommission"
>
确 定
</el-button>
</span>
</span>
</el-dialog>
</el-dialog>
<!-- 修改备注 -->
<el-dialog
title=
"提示"
:visible
.
sync=
"reasonDig"
width=
"500px"
>
<el-form
:model=
"RemarkMsg"
ref=
"RemarkMsg"
label-width=
"0"
>
<p
style=
"margin-bottom:10px"
>
请输入备注
</p>
<el-form-item>
<el-input
size=
"small"
v-model=
"RemarkMsg.Remark"
type=
"textarea"
:rows=
"3"
></el-input>
</el-form-item>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
size=
"small"
@
click=
"reasonDig = false"
>
取 消
</el-button>
<el-button
size=
"small"
type=
"primary"
@
click=
"czsubmitForm()"
:loading=
"tjloading"
>
确 定
</el-button>
</span>
</el-dialog>
</div>
</div>
</div>
</div>
</template>
</template>
...
@@ -140,6 +153,8 @@
...
@@ -140,6 +153,8 @@
return
{
return
{
loading
:
false
,
loading
:
false
,
yjDialog
:
false
,
yjDialog
:
false
,
reasonDig
:
false
,
tjloading
:
false
,
value
:
''
,
value
:
''
,
options
:[],
options
:[],
tableData
:[],
tableData
:[],
...
@@ -160,7 +175,8 @@
...
@@ -160,7 +175,8 @@
Commission
:
0
Commission
:
0
},
},
yjNickName
:
''
,
yjNickName
:
''
,
TotalCommission
:
''
TotalCommission
:
''
,
RemarkMsg
:{},
};
};
},
},
created
()
{
created
()
{
...
@@ -206,6 +222,7 @@
...
@@ -206,6 +222,7 @@
this
.
yjMsg
.
Commission
=
row
.
Commission
?
row
.
Commission
:
0.00
;
this
.
yjMsg
.
Commission
=
row
.
Commission
?
row
.
Commission
:
0.00
;
this
.
yjDialog
=
true
;
this
.
yjDialog
=
true
;
},
},
//修改佣金
//修改佣金
setCommission
(){
setCommission
(){
this
.
apipost
(
"/api/SmallShops/SetSmallShopsCommission"
,
this
.
yjMsg
,
res
=>
{
this
.
apipost
(
"/api/SmallShops/SetSmallShopsCommission"
,
this
.
yjMsg
,
res
=>
{
...
@@ -228,8 +245,16 @@
...
@@ -228,8 +245,16 @@
text
=
'同意审核!'
text
=
'同意审核!'
}
else
if
(
type
==
2
){
}
else
if
(
type
==
2
){
text
=
'拒绝审核!'
text
=
'拒绝审核!'
}
else
if
(
type
==
4
){
text
=
'是否删除当前微店!'
}
}
let
that
=
this
;
let
that
=
this
;
if
(
type
==
3
){
msg
.
Remark
=
row
.
Remark
;
that
.
RemarkMsg
=
msg
that
.
reasonDig
=
true
;
}
else
{
that
.
$confirm
(
text
,
{
that
.
$confirm
(
text
,
{
confirmButtonText
:
'确定'
,
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
cancelButtonText
:
'取消'
,
...
@@ -249,8 +274,26 @@
...
@@ -249,8 +274,26 @@
}).
catch
(()
=>
{
}).
catch
(()
=>
{
});
});
}
},
czsubmitForm
(){
this
.
tjloading
=
true
;
this
.
apipost
(
'/api/SmallShops/SetSmallShopsAudit'
,
this
.
RemarkMsg
,
res
=>
{
this
.
tjloading
=
false
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
reasonDig
=
false
this
.
getList
();
this
.
Success
(
res
.
data
.
message
)
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
},
null
);
}
},
},
mounted
()
{
mounted
()
{
...
...
src/components/UserMan/tinyMerchant/wdOrder.vue
0 → 100644
View file @
11472c06
This diff is collapsed.
Click to expand it.
src/components/UserMan/tinyMerchant/wdWithdrawal.vue
0 → 100644
View file @
11472c06
This diff is collapsed.
Click to expand it.
src/components/orderMan/LiveOrder.vue
View file @
11472c06
...
@@ -32,15 +32,17 @@
...
@@ -32,15 +32,17 @@
<el-date-picker
v-model=
"dateList"
@
change=
"msg.pageIndex=1,getList()"
size=
"small"
type=
"datetimerange"
<el-date-picker
v-model=
"dateList"
@
change=
"msg.pageIndex=1,getList()"
size=
"small"
type=
"datetimerange"
range-separator=
"至"
value-format=
"yyyy-MM-dd HH:mm:ss"
start-placeholder=
"下单开始日期"
end-placeholder=
"下单结束日期"
>
range-separator=
"至"
value-format=
"yyyy-MM-dd HH:mm:ss"
start-placeholder=
"下单开始日期"
end-placeholder=
"下单结束日期"
>
</el-date-picker>
</el-date-picker>
<el-button
type=
"primary"
size=
"mini"
@
click=
"getList()"
style=
"margin-left:10px;position:relative;top:-1px;"
>
查询
</el-button>
</div>
</div>
<el-table
:data=
"tableData"
ref=
"multipleTable"
v-loading=
"loading"
border
style=
"width: 100%"
<el-table
:data=
"tableData"
ref=
"multipleTable"
v-loading=
"loading"
border
style=
"width: 100%"
>
@
select=
"selectSingle"
@
select-all=
"selectAll"
>
<!--
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
-->
<el-table-column
width=
"55"
>
<el-table-column
width=
"55"
>
<template
slot=
"header"
slot-scope=
"scope"
>
<template
slot=
"header"
slot-scope=
"scope"
>
<el-checkbox
v-model=
"isCheckAll"
@
change=
"getCheck
dData(tableData,''
)"
></el-checkbox>
<el-checkbox
v-model=
"isCheckAll"
@
change=
"getCheck
All(tableData
)"
></el-checkbox>
</
template
>
</
template
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<el-checkbox
v-model=
"scope.row.isChecked"
@
change=
"getCheckdData
(tableData,scope.row)"
></el-checkbox>
<el-checkbox
v-model=
"scope.row.isChecked"
:disabled=
"scope.row.isCanCheck"
@
change=
"getSingleCheck
(tableData,scope.row)"
></el-checkbox>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"OrderNo"
label=
"订单号/订单Id"
width=
"200"
>
<el-table-column
prop=
"OrderNo"
label=
"订单号/订单Id"
width=
"200"
>
...
@@ -111,10 +113,10 @@
...
@@ -111,10 +113,10 @@
<el-dialog
title=
"修改"
:visible
.
sync=
"updateDialog"
width=
"400px"
>
<el-dialog
title=
"修改"
:visible
.
sync=
"updateDialog"
width=
"400px"
>
<el-form
label-width=
"50px"
>
<el-form
label-width=
"50px"
>
<el-form-item
label=
"数量"
v-if=
"updateMsg.Type==1||updateMsg.Type==2"
>
<el-form-item
label=
"数量"
v-if=
"updateMsg.Type==1||updateMsg.Type==2"
>
<el-input
size=
"small"
v-model=
"updateMsg.LivePeopleNum"
></el-input>
<el-input
size=
"small"
@
keyup
.
native=
"checkInteger(updateMsg,'LivePeopleNum')"
v-model=
"updateMsg.LivePeopleNum"
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"金额"
v-if=
"updateMsg.Type==1||updateMsg.Type==3"
>
<el-form-item
label=
"金额"
v-if=
"updateMsg.Type==1||updateMsg.Type==3"
>
<el-input
size=
"small"
v-model=
"updateMsg.LiveCommission"
></el-input>
<el-input
size=
"small"
@
keyup
.
native=
"checkPrice(updateMsg,'LiveCommission')"
v-model=
"updateMsg.LiveCommission"
></el-input>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
<span
slot=
"footer"
class=
"dialog-footer"
>
<span
slot=
"footer"
class=
"dialog-footer"
>
...
@@ -155,7 +157,6 @@
...
@@ -155,7 +157,6 @@
ERPEmpId
:
0
,
ERPEmpId
:
0
,
updateDialog
:
false
,
updateDialog
:
false
,
isCheckAll
:
false
,
//全选
//修改信息
//修改信息
updateMsg
:
{
updateMsg
:
{
Ids
:
''
,
Ids
:
''
,
...
@@ -167,7 +168,11 @@
...
@@ -167,7 +168,11 @@
isSingleCheck
:
false
,
//有过单选
isSingleCheck
:
false
,
//有过单选
firstPeoNum
:
-
1
,
firstPeoNum
:
-
1
,
AccountList
:
[],
//账户下拉
AccountList
:
[],
//账户下拉
checkedDan
:
[]
//选中数
checkedDan
:
[],
//选中数
isCheckAll
:
false
,
//全选
findRow
:{},
}
}
},
},
created
()
{
created
()
{
...
@@ -197,14 +202,12 @@
...
@@ -197,14 +202,12 @@
this
.
loading
=
true
;
this
.
loading
=
true
;
this
.
apipost
(
"/api/order/GetLiveGoodsOrderPageList"
,
this
.
msg
,
res
=>
{
this
.
apipost
(
"/api/order/GetLiveGoodsOrderPageList"
,
this
.
msg
,
res
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
console
.
log
(
res
,
'res'
);
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
this
.
total
=
res
.
data
.
data
.
count
;
var
myData
=
res
.
data
.
data
.
pageData
;
var
myData
=
res
.
data
.
data
.
pageData
;
var
tempArray
=
[];
myData
.
forEach
(
x
=>
{
myData
.
forEach
(
x
=>
{
x
.
isChecked
=
false
;
x
.
isChecked
=
false
;
x
.
isCanCheck
=
false
;
})
})
this
.
tableData
=
JSON
.
parse
(
JSON
.
stringify
(
myData
));
this
.
tableData
=
JSON
.
parse
(
JSON
.
stringify
(
myData
));
}
else
{
}
else
{
...
@@ -232,6 +235,7 @@
...
@@ -232,6 +235,7 @@
this
.
getList
();
this
.
getList
();
this
.
Success
(
res
.
data
.
message
);
this
.
Success
(
res
.
data
.
message
);
this
.
ComCheckedArr
=
[];
this
.
ComCheckedArr
=
[];
this
.
findRow
=
{};
}
else
{
}
else
{
this
.
Error
(
res
.
data
.
message
);
this
.
Error
(
res
.
data
.
message
);
}
}
...
@@ -252,74 +256,64 @@
...
@@ -252,74 +256,64 @@
}
}
}
}
},
},
//单选
//自定义单选
selectSingle
(
selection
,
row
)
{
getSingleCheck
(
tableData
,
row
){
this
.
isSingleCheck
=
true
;
if
(
selection
.
length
>
0
)
{
this
.
firstPeoNum
=
selection
[
0
].
LivePeopleNum
;
selection
.
forEach
(
x
=>
{
if
(
x
.
LivePeopleNum
!=
this
.
firstPeoNum
)
{
this
.
$refs
.
multipleTable
.
toggleRowSelection
(
x
);
this
.
Error
(
'主播数量不一致,不能勾选!'
);
}
});
}
this
.
ComCheckedArr
=
selection
;
},
getCheckdData
(
tabledata
,
row
)
{
console
.
log
(
tabledata
,
'tabledata'
);
this
.
ComCheckedArr
=
[];
this
.
ComCheckedArr
=
[];
//单选
this
.
findRow
=
tableData
.
find
(
eItem
=>
eItem
.
isChecked
==
true
);
if
(
row
)
{
if
(
this
.
findRow
){
var
findRow
=
tabledata
.
find
(
eItem
=>
eItem
.
isChecked
==
true
);
tableData
.
forEach
(
x
=>
{
console
.
log
(
"findRow"
,
findRow
);
if
(
x
.
LivePeopleNum
!=
this
.
findRow
.
LivePeopleNum
){
if
(
findRow
)
{
x
.
isCanCheck
=
true
;
tabledata
.
forEach
(
x
=>
{
if
(
x
.
isChecked
)
{
if
(
x
.
LivePeopleNum
!=
findRow
.
LivePeopleNum
)
{
this
.
Info
(
"11111"
)
x
.
isChecked
=
false
;
}
}
if
(
x
.
isChecked
){
this
.
ComCheckedArr
.
push
(
x
);
this
.
ComCheckedArr
.
push
(
x
);
}
}
})
})
}
}
else
{
}
else
{
tableData
.
forEach
(
x
=>
{
var
findRow
=
tabledata
[
0
];
x
.
isCanCheck
=
false
;
if
(
findRow
)
{
tabledata
.
forEach
(
x
=>
{
if
(
x
.
LivePeopleNum
==
findRow
.
LivePeopleNum
)
{
x
.
isChecked
=
this
.
isCheckAll
;
this
.
ComCheckedArr
.
push
(
x
);
}
})
})
this
.
isCheckAll
=
false
;
this
.
findRow
=
{};
}
}
}
console
.
log
(
this
.
ComCheckedArr
,
'ComCheckedArr'
);
},
},
//多选
//自定义多选
selectAll
(
selection
)
{
getCheckAll
(
tableData
){
this
.
ComCheckedArr
=
[];
if
(
this
.
isCheckAll
){
//有过单选
//有过单选
this
.
$refs
.
multipleTable
.
clearSelection
();
if
(
JSON
.
stringify
(
this
.
findRow
)
!=
"{}"
){
// this.$refs.multipleTable.toggleRowSelection(false);
this
.
findRow
=
tableData
.
find
(
eItem
=>
eItem
.
isChecked
==
true
);
this
.
ComCheckedArr
=
[];
tableData
.
forEach
(
x
=>
{
if
(
this
.
isSingleCheck
)
{
if
(
x
.
LivePeopleNum
==
this
.
findRow
.
LivePeopleNum
){
selection
.
forEach
(
x
=>
{
x
.
isChecked
=
true
;
if
(
x
.
LivePeopleNum
==
this
.
firstPeoNum
)
{
this
.
$refs
.
multipleTable
.
toggleRowSelection
(
x
,
true
);
this
.
ComCheckedArr
.
push
(
x
);
this
.
ComCheckedArr
.
push
(
x
);
}
else
{
x
.
isCanCheck
=
true
;
}
}
});
})
}
else
{
}
else
{
var
firstPeoNum
=
selection
[
0
].
LivePeopleNum
if
(
tableData
.
length
>
0
){
selection
.
forEach
(
x
=>
{
var
firstData
=
tableData
[
0
];
if
(
x
.
LivePeopleNum
==
firstPeoNum
)
{
tableData
.
forEach
(
x
=>
{
this
.
$refs
.
multipleTable
.
toggleRowSelection
(
x
,
true
);
if
(
x
.
LivePeopleNum
==
firstData
.
LivePeopleNum
){
x
.
isChecked
=
true
;
this
.
ComCheckedArr
.
push
(
x
);
this
.
ComCheckedArr
.
push
(
x
);
}
else
{
x
.
isCanCheck
=
true
;
}
})
}
}
});
}
}
else
{
tableData
.
forEach
(
x
=>
{
x
.
isChecked
=
false
;
x
.
isCanCheck
=
false
;
})
this
.
findRow
=
{};
}
}
},
},
//点击批量修改金额
//点击批量修改金额
batchUpMoney
()
{
batchUpMoney
()
{
if
(
this
.
ComCheckedArr
==
0
)
{
if
(
this
.
ComCheckedArr
==
0
)
{
...
@@ -359,7 +353,8 @@
...
@@ -359,7 +353,8 @@
}
}
var
_index
=
this
.
finMsg
.
AccountIds
.
indexOf
(
0
);
var
_index
=
this
.
finMsg
.
AccountIds
.
indexOf
(
0
);
if
(
_index
>
-
1
)
{
if
(
_index
>
-
1
)
{
this
.
Error
(
'请选择第'
+
_index
+
'个账户'
);
this
.
Error
(
'请选择第'
+
(
_index
+
1
)
+
'个账户'
);
return
;
}
}
if
(
this
.
ComCheckedArr
.
length
>
0
)
{
if
(
this
.
ComCheckedArr
.
length
>
0
)
{
this
.
ComCheckedArr
.
forEach
(
x
=>
{
this
.
ComCheckedArr
.
forEach
(
x
=>
{
...
@@ -384,7 +379,6 @@
...
@@ -384,7 +379,6 @@
this
.
apipost
(
"/api/Supplier/GetClientBankAccountList"
,
{},
res
=>
{
this
.
apipost
(
"/api/Supplier/GetClientBankAccountList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
AccountList
=
res
.
data
.
data
;
this
.
AccountList
=
res
.
data
.
data
;
console
.
log
(
this
.
AccountList
,
'AccountList'
);
}
else
{
}
else
{
this
.
Error
(
res
.
data
.
message
)
this
.
Error
(
res
.
data
.
message
)
}
}
...
@@ -404,36 +398,4 @@
...
@@ -404,36 +398,4 @@
box-sizing
:
border-box
;
box-sizing
:
border-box
;
}
}
.LiveOrder
.LiveOrderTable
{
width
:
100%
;
border-collapse
:
collapse
;
}
.LiveOrder
.LiveOrderTable
tr
th
{
height
:
48px
;
font-size
:
14px
;
color
:
#909399
;
border
:
1px
solid
#EBEEF5
;
font-weight
:
bold
;
}
.LiveOrder
.LiveOrderTable
tr
{
background
:
#fff
;
text-align
:
center
;
height
:
50px
;
}
.LiveOrder
.LiveOrderTable
tr
td
{
font-size
:
14px
;
border
:
1px
solid
#EBEEF5
;
}
.LiveOrder
.fx_inner
:hover
td
{
background-color
:
#F5F7FA
;
}
.LiveOrder
.LiveOrderTable
td
{
transition
:
background-color
.25s
ease
;
}
</
style
>
</
style
>
src/router/index.js
View file @
11472c06
...
@@ -323,6 +323,18 @@ export default new Router({
...
@@ -323,6 +323,18 @@ export default new Router({
name
:
'wdExamine'
,
name
:
'wdExamine'
,
component
:
resolve
=>
require
([
'@/components/UserMan/tinyMerchant/wdExamine'
],
resolve
),
component
:
resolve
=>
require
([
'@/components/UserMan/tinyMerchant/wdExamine'
],
resolve
),
},
},
// 用户管理 微店订单
{
path
:
'/wdOrder'
,
name
:
'wdOrder'
,
component
:
resolve
=>
require
([
'@/components/UserMan/tinyMerchant/wdOrder'
],
resolve
),
},
// 用户管理 微店提现
{
path
:
'/wdWithdrawal'
,
name
:
'wdWithdrawal'
,
component
:
resolve
=>
require
([
'@/components/UserMan/tinyMerchant/wdWithdrawal'
],
resolve
),
},
// 商品管理 素材管理
// 商品管理 素材管理
{
{
path
:
'/materialMan'
,
path
:
'/materialMan'
,
...
...
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