Commit 2b2533aa by 曾经

冻结解冻 新增字段 pageType

parent ab55eab3
......@@ -292,6 +292,7 @@ export default {
visible: true,
submit:(options)=>{
doFetchGet(url.updateFrozen,{
pageType: 2,
status: 1,
memberId: item.memberId,
frozenType: options.frozenType,
......@@ -313,6 +314,7 @@ export default {
unfreezeItem(item) {
doFetchGet(url.updateFrozen,{
status: 0,
pageType: 2,
memberId: item.memberId
}).then(res => {
if (res.data.errorCode === 0) {
......
......@@ -211,6 +211,7 @@ export default {
unfreezeItem(item) {
doFetchGet(url.updateFrozen,{
status: 0,
pageType: 1,
memberId: item.memberId
}).then(res => {
if (res.data.errorCode === 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment