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
d52c2179
Commit
d52c2179
authored
Mar 10, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
a53b9585
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
828 additions
and
1 deletion
+828
-1
bdactiveType.vue
src/components/blindDate/bdactiveType.vue
+300
-0
bdactivity.vue
src/components/blindDate/bdactivity.vue
+513
-0
blindDateIndex.vue
src/components/blindDate/blindDateIndex.vue
+6
-0
index.js
src/router/index.js
+9
-1
No files found.
src/components/blindDate/bdactiveType.vue
0 → 100644
View file @
d52c2179
<
template
>
<div
class=
"companyList"
>
<template
v-if=
"isShowAdd"
>
<div
class=
"head-title"
>
活动类型管理
<el-button
style=
"float:right;margin-top: -5px;"
size=
"small"
type=
"primary"
@
click=
"isShowAdd=false,clearMsg()"
>
新增
</el-button>
</div>
<div
class=
"content"
>
<div>
<div
class=
"searchInput"
style=
"width:250px"
>
<el-input
@
keyup
.
enter
.
native=
"msg.pageIndex=1,getList()"
@
clear=
"msg.pageIndex=1,getList()"
style=
"display:inline-block;width:225px;height:30px"
placeholder=
"活动类型名称"
v-model=
"msg.TypeName"
size=
"small"
clearable
>
</el-input>
<span
@
click=
"msg.pageIndex=1,getList()"
class=
"el-icon-search"
style=
"color:#979dad;font-size:14px;position:relative;top:1px"
></span>
</div>
</div>
<el-table
:data=
"tableData"
v-loading=
"loading"
border
style=
"width: 100%;margin:20px 0"
>
<el-table-column
prop=
"Id"
label=
"编号"
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"TypeName"
label=
"类型名称"
>
</el-table-column>
<el-table-column
prop=
"CoverImage"
label=
"封面图"
>
<template
slot-scope=
"scope"
>
<div
class=
"app-image"
:style=
"
{backgroundImage:'url(' + scope.row.CoverImage + ')',backgroundSize:'cover'}">
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"LableNameList"
label=
"标签"
>
<
template
slot-scope=
"scope"
>
<span
v-for=
"(LItem,Lindex) in scope.row.LableNameList"
style=
"margin-right:5px;"
:key=
"Lindex"
>
{{
LItem
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"Id"
width=
"200"
label=
"操作"
>
<
template
slot-scope=
"scope"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"编辑"
placement=
"top"
>
<img
@
click=
"EditType(scope.row)"
style=
"width:32px;height:32px"
src=
"../../assets/img/userman/edit.png"
alt=
""
>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"删除"
placement=
"top-start"
>
<img
@
click=
"delType(scope.row)"
style=
"width:32px;height:32px;margin:0 10px"
src=
"../../assets/img/userman/del.png"
alt=
""
>
</el-tooltip>
</
template
>
</el-table-column>
</el-table>
<el-pagination
style=
"text-align:right"
background
@
current-change=
"handleCurrentChange"
:page-size=
"msg.pageSize"
:current-page
.
sync=
"msg.pageIndex"
layout=
"total,prev, pager, next"
:total=
"total"
>
</el-pagination>
</div>
</template>
<
template
v-else
>
<div
class=
"head-title"
>
<span
@
click=
"isShowAdd=true"
style=
"color:rgb(64, 158, 255);cursor:pointer;"
>
活动类型管理
</span><span
style=
"margin:0 9px;color:#C0C4CC"
>
/
</span><span>
修改活动类型
</span>
</div>
<div
class=
"content"
>
<el-form
label-width=
"120px"
:model=
"addMsg"
:rules=
"rules"
ref=
"addMsg"
>
<el-form-item
label=
"类型名称"
prop=
"TypeName"
class=
"is-required"
>
<el-input
type=
"text"
class=
"w400"
v-model=
"addMsg.TypeName"
size=
"small"
maxlength=
"20"
></el-input>
</el-form-item>
<el-form-item
label=
"封面图"
size=
"small"
>
<el-button
@
click=
"isShowImage=true"
size=
"small"
>
选择文件
</el-button>
<div
class=
"app-gallery-item"
style=
"position: relative;width: 100px;margin-top: 10px;border:none;"
>
<img
v-if=
"!addMsg.CoverImage || addMsg.CoverImage==''"
src=
"../../assets/img/default.png"
style=
"width:80px;height:80px"
alt=
""
>
<img
v-else
style=
"width:80px;height:80px"
:src=
"addMsg.CoverImage"
alt=
""
>
</div>
</el-form-item>
<el-form-item
label=
"标签"
size=
"small"
>
<el-tag
:key=
"tag"
v-for=
"tag in dynamicTags"
closable
:disable-transitions=
"false"
@
close=
"handleClose(tag)"
>
{{
tag
}}
</el-tag>
<el-input
class=
"input-new-tag"
v-if=
"inputVisible"
v-model=
"inputValue"
ref=
"saveTagInput"
size=
"small"
@
keyup
.
enter
.
native=
"handleInputConfirm"
@
blur=
"handleInputConfirm"
>
</el-input>
<el-button
v-else
class=
"button-new-tag"
size=
"small"
@
click=
"showInput"
>
+ 标签
</el-button>
</el-form-item>
</el-form>
</div>
<el-button
size=
"small"
style=
"margin-top:20px;padding:9px 25px;"
type=
"primary"
@
click=
"submitform('addMsg')"
>
保存
</el-button>
</
template
>
<!-- 选择文件 -->
<el-dialog
title=
"选择文件"
:visible
.
sync=
"isShowImage"
width=
"1240px"
>
<ChooseImg
@
SelectId=
"SelectId"
></ChooseImg>
</el-dialog>
</div>
</template>
<
script
>
import
ChooseImg
from
"@/components/global/ChooseImg.vue"
;
export
default
{
components
:
{
ChooseImg
,
},
data
()
{
return
{
rules
:
{
TypeName
:
[{
required
:
true
,
message
:
'请输入类型名称'
,
trigger
:
'blur'
}],
},
msg
:
{
pageIndex
:
1
,
pageSize
:
10
,
TypeName
:
''
,
},
total
:
0
,
isShowAdd
:
true
,
//是否显示新增
tableData
:
[],
//数据列表
isShowImage
:
false
,
//是否显示选择图片弹窗
addMsg
:
{
Id
:
0
,
//编号
TypeName
:
""
,
//类型名称
CoverImage
:
""
,
//封面图
LableNameList
:
[]
},
dynamicTags
:[],
//标签数组
inputVisible
:
false
,
inputValue
:
''
,
};
},
created
()
{
this
.
getList
();
},
methods
:
{
clearMsg
()
{
this
.
addMsg
.
Id
=
0
;
this
.
addMsg
.
TypeName
=
""
;
this
.
addMsg
.
CoverImage
=
""
;
},
SelectId
(
msg
)
{
let
url
=
this
.
getIconLink
(
msg
.
url
)
this
.
addMsg
.
CoverImage
=
url
this
.
isShowImage
=
false
;
},
getList
()
{
this
.
loading
=
true
;
this
.
apipost
(
"/api/Trade/GetCommerceActivityTypePage"
,
this
.
msg
,
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
let
pageData
=
res
.
data
.
data
.
pageData
;
this
.
tableData
=
pageData
;
}
})
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
},
//修改类型
EditType
(
item
)
{
this
.
apipost
(
"/api/Trade/GetCommerceActivityType"
,
{
Id
:
item
.
Id
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
isShowAdd
=
false
;
var
tempData
=
res
.
data
.
data
;
this
.
addMsg
.
Id
=
tempData
.
Id
;
this
.
addMsg
.
TypeName
=
tempData
.
TypeName
;
this
.
addMsg
.
CoverImage
=
tempData
.
CoverImage
;
this
.
dynamicTags
=
tempData
.
LableNameList
;
console
.
log
(
res
,
'res'
);
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
})
},
//删除类型
delType
(
item
)
{
let
that
=
this
;
that
.
Confirm
(
"是否删除?"
,
function
()
{
that
.
apipost
(
"/api/Trade/RemoveCommerceActivityType"
,
{
Id
:
item
.
Id
,
Status
:
1
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
that
.
Success
(
res
.
data
.
message
);
that
.
getList
();
}
else
{
that
.
Error
(
res
.
data
.
message
);
}
},
);
});
},
//新增活动类型
submitform
(
formName
)
{
this
.
$refs
[
formName
].
validate
((
valid
)
=>
{
if
(
valid
)
{
console
.
log
(
this
.
dynamicTags
,
'dynamicTags'
);
this
.
addMsg
.
LableNameList
=
this
.
dynamicTags
;
this
.
apipost
(
"/api/Trade/SetCommerceActivityType"
,
this
.
addMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
isShowAdd
=
true
;
this
.
getList
();
this
.
clearMsg
();
this
.
Success
(
res
.
data
.
message
);
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
})
}
else
{
return
false
;
}
});
},
handleInputConfirm
()
{
let
inputValue
=
this
.
inputValue
;
if
(
inputValue
)
{
this
.
dynamicTags
.
push
(
inputValue
);
}
this
.
inputVisible
=
false
;
this
.
inputValue
=
''
;
},
showInput
()
{
this
.
inputVisible
=
true
;
this
.
$nextTick
(
_
=>
{
this
.
$refs
.
saveTagInput
.
$refs
.
input
.
focus
();
});
},
//删除
handleClose
(
tag
)
{
this
.
dynamicTags
.
splice
(
this
.
dynamicTags
.
indexOf
(
tag
),
1
);
}
},
mounted
()
{}
};
</
script
>
<
style
>
.companyList
.remark_name
{
color
:
#888888
;
font-size
:
12px
;
margin-left
:
10px
;
float
:
right
;
}
.companyList
.app-image
{
background-position
:
center
center
;
width
:
50px
;
height
:
50px
;
border-radius
:
0%
;
float
:
left
;
margin-right
:
8px
;
}
.companyList
.blue
{
color
:
#409EFF
;
}
.companyList
.content
.searchInput
{
border
:
1px
solid
#DCDFE6
;
border-radius
:
4px
;
}
.companyList
.content
.searchInput
.el-input__inner
{
border
:
none
;
outline
:
none
;
height
:
30px
;
line-height
:
30px
;
}
.companyList
.content
.searchInput
{
line-height
:
normal
;
display
:
inline-table
;
width
:
100%
;
border-collapse
:
separate
;
border-spacing
:
0
;
width
:
250px
;
margin-right
:
20px
;
}
.companyList
.content
{
background
:
#fff
;
margin-top
:
10px
;
padding
:
20px
;
box-sizing
:
border-box
;
}
.companyList
.input-new-tag
{
width
:
90px
;
margin-left
:
10px
;
vertical-align
:
bottom
;
margin-right
:
5px
;
}
.companyList
.el-tag
{
margin-right
:
5px
;
}
</
style
>
src/components/blindDate/bdactivity.vue
0 → 100644
View file @
d52c2179
<
template
>
<div
class=
"companyList tradeactivity"
>
<template
v-if=
"isShowAdd"
>
<div
class=
"head-title"
>
活动管理
<el-button
style=
"float:right;margin-top: -5px;"
size=
"small"
type=
"primary"
@
click=
"isShowAdd=false,clearMsg()"
>
新增
</el-button>
</div>
<div
class=
"content"
>
<div>
<div
class=
"searchInput"
style=
"width:250px"
>
<el-input
@
keyup
.
enter
.
native=
"msg.pageIndex=1,getList()"
@
clear=
"msg.pageIndex=1,getList()"
style=
"display:inline-block;width:225px;height:30px"
placeholder=
"活动名称"
v-model=
"msg.ActivityName"
size=
"small"
clearable
>
</el-input>
<span
@
click=
"msg.pageIndex=1,getList()"
class=
"el-icon-search"
style=
"color:#979dad;font-size:14px;position:relative;top:1px"
></span>
</div>
</div>
<el-table
:data=
"tableData"
v-loading=
"loading"
border
style=
"width: 100%;margin:20px 0"
>
<el-table-column
prop=
"Id"
label=
"编号"
width=
"60"
>
</el-table-column>
<el-table-column
prop=
"ActivityName"
label=
"活动名称"
min-width=
"200"
>
</el-table-column>
<el-table-column
prop=
"ActivityTypeName"
label=
"活动类型"
width=
"130"
>
</el-table-column>
<el-table-column
prop=
"CoverImg"
label=
"封面图"
width=
"100"
>
<template
slot-scope=
"scope"
>
<div
class=
"app-image"
:style=
"
{backgroundImage:'url(' + scope.row.CoverImg + ')',backgroundSize:'cover'}">
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"StartTimeStr"
label=
"活动时间"
width=
"130"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
StartTimeStr
}}
</span><br
/>
<span>
{{
scope
.
row
.
EndTimeStr
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"SignStartTimeStr"
label=
"报名时间"
width=
"200"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
SignStartTimeStr
}}
</span><br
/>
<span>
{{
scope
.
row
.
SignEndTimeStr
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"活动费用"
width=
"170"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.IsFree==1"
style=
"color:green;"
>
免费
</div>
<div
v-else
style=
"color:red;"
>
消费
{{
scope
.
row
.
Price
}}
颗星
</div>
<div>
报名取消确认:
{{
scope
.
row
.
IsCancelConfirm
==
1
?
'是'
:
'否'
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"ActivityStatusStr"
label=
"活动状态"
width=
"120"
>
</el-table-column>
<el-table-column
prop=
"JoinNum"
label=
"报名人数"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"text"
@
click=
"dialogTableVisible = true,getItem(scope.row)"
>
{{
scope
.
row
.
JoinNum
}}
人
</el-button>
</
template
>
</el-table-column>
<el-table-column
prop=
"Id"
width=
"150"
label=
"操作"
>
<
template
slot-scope=
"scope"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"编辑"
placement=
"top"
>
<img
@
click=
"EditType(scope.row)"
style=
"width:32px;height:32px"
src=
"../../assets/img/userman/edit.png"
alt=
""
>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"删除"
placement=
"top-start"
>
<img
@
click=
"delType(scope.row)"
style=
"width:32px;height:32px;margin:0 10px"
src=
"../../assets/img/userman/del.png"
alt=
""
>
</el-tooltip>
</
template
>
</el-table-column>
</el-table>
<el-pagination
style=
"text-align:right"
background
@
current-change=
"handleCurrentChange"
:page-size=
"msg.pageSize"
:current-page
.
sync=
"msg.pageIndex"
layout=
"total,prev, pager, next"
:total=
"total"
>
</el-pagination>
</div>
</template>
<
template
v-else
>
<div
class=
"head-title"
>
<span
@
click=
"isShowAdd=true"
style=
"color:rgb(64, 158, 255);cursor:pointer;"
>
活动管理
</span><span
style=
"margin:0 9px;color:#C0C4CC"
>
/
</span><span>
修改活动
</span>
</div>
<div
class=
"content"
>
<el-form
label-width=
"120px"
:model=
"addMsg"
:rules=
"rules"
ref=
"addMsg"
>
<el-form-item
label=
"活动名称"
class=
"is-required"
prop=
"ActivityName"
>
<el-input
type=
"text"
class=
"w400"
v-model=
"addMsg.ActivityName"
size=
"small"
></el-input>
</el-form-item>
<el-form-item
label=
"开始时间"
class=
"is-required"
prop=
"StartTime"
>
<el-date-picker
class=
"w300"
value-format=
"yyyy-MM-dd"
v-model=
"addMsg.StartTime"
type=
"date"
size=
"small"
placeholder=
"开始时间"
>
</el-date-picker>
</el-form-item>
<el-form-item
label=
"结束时间"
class=
"is-required"
prop=
"EndTime"
>
<el-date-picker
class=
"w300"
v-model=
"addMsg.EndTime"
type=
"date"
size=
"small"
placeholder=
"结束时间"
>
</el-date-picker>
</el-form-item>
<el-form-item
label=
"报名开始时间"
class=
"is-required"
prop=
"SignStartTime"
>
<el-date-picker
class=
"w300"
v-model=
"addMsg.SignStartTime"
type=
"datetime"
size=
"small"
value-format=
"yyyy-MM-dd HH:mm:ss"
placeholder=
"报名开始时间"
>
</el-date-picker>
</el-form-item>
<el-form-item
label=
"报名截止时间"
class=
"is-required"
prop=
"SignEndTime"
>
<el-date-picker
class=
"w300"
v-model=
"addMsg.SignEndTime"
type=
"datetime"
size=
"small"
value-format=
"yyyy-MM-dd HH:mm:ss"
placeholder=
"报名截止时间"
>
</el-date-picker>
</el-form-item>
<el-form-item
label=
"活动类型"
class=
"is-required"
prop=
"ActivityType"
>
<el-select
class=
"w300"
v-model=
"addMsg.ActivityType"
size=
"small"
placeholder=
"请选择"
>
<el-option
:key=
"0"
label=
"请选择"
:value=
"0"
></el-option>
<el-option
v-for=
"item in activityTypeList"
:key=
"item.Id"
:label=
"item.TypeName"
:value=
"item.Id"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"封面图"
size=
"small"
>
<el-button
@
click=
"isShowImage=true"
size=
"small"
>
选择文件
</el-button>
<div
class=
"app-gallery-item"
style=
"position: relative;width: 100px;margin-top: 10px;border:none;"
>
<img
v-if=
"!addMsg.CoverImg || addMsg.CoverImg==''"
src=
"../../assets/img/default.png"
style=
"width:80px;height:80px"
alt=
""
>
<img
v-else
style=
"width:80px;height:80px"
:src=
"addMsg.CoverImg"
alt=
""
>
</div>
</el-form-item>
<el-form-item
label=
"是否免费"
size=
"small"
>
<el-switch
v-model=
"addMsg.IsFree"
:active-value=
"1"
:inactive-value=
"2"
>
</el-switch>
</el-form-item>
<el-form-item
label=
"星星数量"
size=
"small"
v-if=
"addMsg.IsFree==2"
>
<el-input
type=
"text"
class=
"w400"
v-model=
"addMsg.Price"
size=
"small"
></el-input>
</el-switch>
</el-form-item>
<el-form-item
label=
"报名取消确认"
size=
"small"
>
<el-switch
v-model=
"addMsg.IsCancelConfirm"
:active-value=
"1"
:inactive-value=
"2"
>
</el-switch>
</el-form-item>
<el-form-item
label=
"活动详情"
>
<UE
style=
"width:750px;"
:defaultMsg=
"defaultMsg"
:config=
"config"
:IsMultiple=
"true"
ref=
"ue"
></UE>
</el-form-item>
</el-form>
</div>
<el-button
size=
"small"
style=
"margin-top:20px;padding:9px 25px;"
type=
"primary"
@
click=
"submitform('addMsg')"
>
保存
</el-button>
</
template
>
<!-- 选择文件 -->
<el-dialog
title=
"选择文件"
:visible
.
sync=
"isShowImage"
width=
"1240px"
>
<ChooseImg
@
SelectId=
"SelectId"
></ChooseImg>
</el-dialog>
<el-dialog
title=
"报名信息"
:visible
.
sync=
"dialogTableVisible"
width=
"910px"
>
<el-table
:data=
"joinData"
style=
"width:100%;"
>
<el-table-column
property=
"LinkMan"
label=
"联系人"
width=
"100"
></el-table-column>
<el-table-column
property=
"LinkTel"
label=
"联系电话"
width=
"120"
></el-table-column>
<el-table-column
property=
"PeopleNum"
label=
"人数"
width=
"60"
></el-table-column>
<el-table-column
property=
"Money"
label=
"星星数"
width=
"80"
></el-table-column>
<el-table-column
property=
"Remark"
label=
"备注"
width=
"200"
></el-table-column>
<el-table-column
property=
"CreateTimeStr"
label=
"报名时间"
width=
"160"
></el-table-column>
<el-table-column
label=
"操作"
width=
"150"
>
<
template
slot-scope=
"scope"
>
<template
v-if=
"scope.row.IsApplyForCancel==1"
>
<el-button
size=
"mini"
type=
"primary"
@
click=
"agreeApply(scope.row)"
>
同意
</el-button>
<el-button
size=
"mini"
type=
"danger"
@
click=
"jujueMsg(scope.row)"
>
拒绝
</el-button>
</
template
>
</template>
</el-table-column>
</el-table>
</el-dialog>
<el-dialog
title=
"拒绝报名"
:visible
.
sync=
"showJujue"
width=
"600px"
>
<div
class=
"activityFlex"
>
<el-input
type=
"textarea"
rows=
"4"
v-model=
"bdMsg.RejectRemark"
></el-input>
</div>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
size=
"small"
@
click=
"sureJujue"
>
确定
</el-button>
</span>
</el-dialog>
</div>
</template>
<
script
>
import
ChooseImg
from
"@/components/global/ChooseImg.vue"
;
import
UE
from
"@/components/global/UE.vue"
;
export
default
{
components
:
{
ChooseImg
,
UE
,
},
data
()
{
let
validataTrade
=
(
rule
,
value
,
callback
)
=>
{
if
(
this
.
addMsg
.
ActivityType
==
0
)
{
return
callback
(
new
Error
(
'请选择活动类型'
));
}
else
{
callback
();
}
}
return
{
defaultMsg
:
""
,
config
:
{
initialFrameWidth
:
null
,
initialFrameHeight
:
350
},
msg
:
{
pageIndex
:
1
,
pageSize
:
15
,
ActivityName
:
''
,
},
total
:
0
,
isShowAdd
:
true
,
//是否显示新增
tableData
:
[],
//数据列表
isShowImage
:
false
,
//是否显示选择图片弹窗
addMsg
:
{
Id
:
0
,
//活动编号(主键)
ActivityName
:
""
,
//活动名称
StartTime
:
""
,
//开始时间
EndTime
:
""
,
//结束时间
CoverImg
:
""
,
//封面图
ActivityType
:
0
,
//活动类型
ActivityInfo
:
""
,
//活动详情
SignStartTime
:
""
,
//报名开始时间
SignEndTime
:
""
,
//报名截止时间
IsFree
:
1
,
//是否免费 1是 2否
Price
:
0
,
//星星数量
IsCancelConfirm
:
1
//取消确定1是 2否
},
activityTypeList
:
[],
//活动类型列表
dialogTableVisible
:
false
,
//是否显示弹窗
joinData
:
[],
//报名信息
joinMsg
:
{
LinkMan
:
''
,
EnrollState
:
1
,
ActivityId
:
0
},
rules
:
{
ActivityName
:
[{
required
:
true
,
message
:
'请输入活动名称'
,
trigger
:
'blur'
}],
StartTime
:
[{
required
:
true
,
message
:
'请选择开始时间'
,
trigger
:
'blur'
}],
EndTime
:
[{
required
:
true
,
message
:
'请选择结束时间'
,
trigger
:
'blur'
}],
ActivityType
:
[{
validator
:
validataTrade
,
trigger
:
"change"
,
required
:
true
}],
},
pickerBeginDateBefore
:
{
disabledDate
:
time
=>
{
if
(
this
.
addMsg
.
EndTime
==
null
)
{
return
false
;
}
else
{
let
endTime
=
new
Date
(
this
.
addMsg
.
EndTime
)
return
endTime
.
getTime
()
<
time
.
getTime
()
}
}
},
pickerSignBeginDateBefore
:
{
disabledDate
:
time
=>
{
if
(
this
.
addMsg
.
SignEndTime
==
null
)
{
return
false
;
}
else
{
let
endTime
=
new
Date
(
this
.
addMsg
.
SignEndTime
)
return
endTime
.
getTime
()
<
time
.
getTime
()
}
}
},
pickerBeginDateAfter
:
{
disabledDate
:
time
=>
{
let
startTime
=
new
Date
(
this
.
addMsg
.
StartTime
)
return
startTime
.
getTime
()
>=
time
.
getTime
()
}
},
pickerSignBeginDateAfter
:
{
disabledDate
:
time
=>
{
let
startTime
=
new
Date
(
this
.
addMsg
.
SignStartTime
)
return
startTime
.
getTime
()
>=
time
.
getTime
()
}
},
bdMsg
:
{
Id
:
0
,
//报名id
ApplyForCancelStatus
:
1
,
//申请取消审核状态 1同意 2拒绝
RejectRemark
:
''
},
showJujue
:
false
,
};
},
created
()
{
this
.
getActivityType
();
this
.
getList
();
},
methods
:
{
getItem
(
item
)
{
// this.joinData = [];
// this.joinData = item.CommerceConsultList;
this
.
joinMsg
.
ActivityId
=
item
.
Id
;
this
.
getJoinData
();
},
getJoinData
()
{
this
.
apipost
(
"/api/trade/GetCommerceConsultPage"
,
this
.
joinMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
joinData
=
res
.
data
.
data
;
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
})
},
//确定
agreeApply
(
item
)
{
this
.
bdMsg
.
Id
=
item
.
Id
;
this
.
bdMsg
.
ApplyForCancelStatus
=
1
;
this
.
apipost
(
"/api/Trade/SetCommerceConsultApplyCancel"
,
this
.
bdMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
location
.
reload
();
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
})
},
jujueMsg
(
item
){
this
.
bdMsg
.
Id
=
item
.
Id
;
this
.
showJujue
=
true
;
},
//取消
sureJujue
(){
this
.
bdMsg
.
ApplyForCancelStatus
=
2
;
this
.
apipost
(
"/api/Trade/SetCommerceConsultApplyCancel"
,
this
.
bdMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
getList
();
this
.
dialogTableVisible
=
false
;
this
.
showJujue
=
false
;
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
})
},
//获取活动类型列表
getActivityType
()
{
this
.
apipost
(
"/api/Trade/GetCommerceActivityTypeList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
activityTypeList
=
res
.
data
.
data
;
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
})
},
clearMsg
()
{
this
.
addMsg
.
Id
=
0
;
this
.
addMsg
.
ActivityName
=
""
;
this
.
addMsg
.
StartTime
=
""
;
this
.
addMsg
.
EndTime
=
""
;
this
.
addMsg
.
CoverImg
=
""
;
this
.
addMsg
.
ActivityType
=
0
;
this
.
addMsg
.
ActivityInfo
=
""
;
this
.
addMsg
.
SignStartTime
=
''
;
this
.
addMsg
.
SignEndTime
=
''
;
},
SelectId
(
msg
)
{
let
url
=
this
.
getIconLink
(
msg
.
url
)
this
.
addMsg
.
CoverImg
=
url
this
.
isShowImage
=
false
;
},
getList
()
{
this
.
loading
=
true
;
this
.
apipost
(
"/api/Trade/GetCommerceActivityPage"
,
this
.
msg
,
res
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
let
pageData
=
res
.
data
.
data
.
pageData
;
this
.
tableData
=
pageData
;
}
})
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
},
//修改类型
EditType
(
item
)
{
this
.
apipost
(
"/api/Trade/GetCommerceActivity"
,
{
Id
:
item
.
Id
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
isShowAdd
=
false
;
var
tempData
=
res
.
data
.
data
;
this
.
addMsg
.
Id
=
tempData
.
Id
;
this
.
addMsg
.
ActivityName
=
tempData
.
ActivityName
;
this
.
addMsg
.
StartTime
=
tempData
.
StartTimeStr
;
this
.
addMsg
.
EndTime
=
tempData
.
EndTimeStr
;
this
.
addMsg
.
SignStartTime
=
tempData
.
SignStartTimeStr
;
this
.
addMsg
.
SignEndTime
=
tempData
.
SignEndTimeStr
;
this
.
addMsg
.
CoverImg
=
tempData
.
CoverImg
;
this
.
addMsg
.
ActivityType
=
tempData
.
ActivityType
;
this
.
addMsg
.
ActivityInfo
=
tempData
.
ActivityInfo
;
if
(
tempData
.
ActivityInfo
)
{
this
.
defaultMsg
=
tempData
.
ActivityInfo
;
}
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
})
},
//删除类型
delType
(
item
)
{
let
that
=
this
;
that
.
Confirm
(
"是否删除?"
,
function
()
{
that
.
apipost
(
"/api/Trade/RemoveCommerceActivity"
,
{
Id
:
item
.
Id
,
Status
:
1
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
that
.
Success
(
res
.
data
.
message
);
that
.
getList
();
}
else
{
that
.
Error
(
res
.
data
.
message
);
}
},
);
});
},
//新增修改
submitform
(
formName
)
{
this
.
$refs
[
formName
].
validate
((
valid
)
=>
{
if
(
valid
)
{
let
content
=
this
.
$refs
.
ue
.
getUEContent
();
this
.
addMsg
.
ActivityInfo
=
content
;
this
.
apipost
(
"/api/Trade/SetCommerceActivity"
,
this
.
addMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
isShowAdd
=
true
;
this
.
getList
();
this
.
clearMsg
();
this
.
Success
(
res
.
data
.
message
);
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
})
}
else
{
return
false
;
}
})
}
},
mounted
()
{}
};
</
script
>
<
style
>
.companyList
.remark_name
{
color
:
#888888
;
font-size
:
12px
;
margin-left
:
10px
;
float
:
right
;
}
.companyList
.app-image
{
background-position
:
center
center
;
width
:
50px
;
height
:
50px
;
border-radius
:
0%
;
float
:
left
;
margin-right
:
8px
;
}
.companyList
.blue
{
color
:
#409EFF
;
}
.companyList
.content
.searchInput
{
border
:
1px
solid
#DCDFE6
;
border-radius
:
4px
;
}
.companyList
.content
.searchInput
.el-input__inner
{
border
:
none
;
outline
:
none
;
height
:
30px
;
line-height
:
30px
;
}
.companyList
.content
.searchInput
{
line-height
:
normal
;
display
:
inline-table
;
width
:
100%
;
border-collapse
:
separate
;
border-spacing
:
0
;
width
:
250px
;
margin-right
:
20px
;
}
.companyList
.content
{
background
:
#fff
;
margin-top
:
10px
;
padding
:
20px
;
box-sizing
:
border-box
;
}
.tradeactivity
.el-form-item__content
{
line-height
:
0
;
}
</
style
>
src/components/blindDate/blindDateIndex.vue
View file @
d52c2179
...
...
@@ -178,6 +178,12 @@
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/starsList'}" @click="isChecked='/starsList',CommonJump('starsList')">
<i
class=
"el-icon-menu"
></i><span>
充值星星
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/bdactivity'}" @click="isChecked='/bdactivity',CommonJump('bdactivity')">
<i
class=
"el-icon-menu"
></i><span>
活动列表
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/bdactiveType'}" @click="isChecked='/bdactiveType',CommonJump('bdactiveType')">
<i
class=
"el-icon-menu"
></i><span>
活动类型管理
</span>
</li>
</ul>
</div>
...
...
src/router/index.js
View file @
d52c2179
...
...
@@ -302,7 +302,15 @@ export default new Router({
path
:
'/addstars'
,
//相亲里面的星星充值管理
name
:
'addstars'
,
component
:
resolve
=>
require
([
'@/components/blindDate/addstars'
],
resolve
),
},
]
},{
path
:
'/bdactivity'
,
//相亲活动列表
name
:
'bdactivity'
,
component
:
resolve
=>
require
([
'@/components/blindDate/bdactivity'
],
resolve
),
},{
path
:
'/bdactiveType'
,
//相亲活动类型管理
name
:
'bdactiveType'
,
component
:
resolve
=>
require
([
'@/components/blindDate/bdactiveType'
],
resolve
),
}]
},
{
path
:
'/educationIndex'
,
//网课专区
...
...
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