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
8e8f6424
Commit
8e8f6424
authored
Aug 26, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
ed291154
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
430 additions
and
319 deletions
+430
-319
labelBar.vue
src/components/StoreDesign/labelBar.vue
+1
-1
activityInfo.vue
src/components/blindDate/activityInfo.vue
+385
-311
recruitStick.vue
src/components/blindDate/recruitStick.vue
+31
-5
posts.vue
src/components/sallCenter/plugin/posts.vue
+12
-1
templateEdit.vue
src/components/sallCenter/templateEdit.vue
+1
-1
No files found.
src/components/StoreDesign/labelBar.vue
View file @
8e8f6424
...
...
@@ -706,7 +706,7 @@ export default {
if
(
res
.
data
.
data
&&
res
.
data
.
data
.
BottomNavIsShadow
)
{
this
.
mallMsg
.
BottomNavIsShadow
=
res
.
data
.
data
.
BottomNavIsShadow
;
}
if
(
res
.
data
.
data
&&
res
.
data
.
data
.
IsShowIcon
)
{
if
(
res
.
data
.
data
)
{
this
.
mallMsg
.
IsShowIcon
=
res
.
data
.
data
.
IsShowIcon
;
}
this
.
mallMsg
.
BottomTagList
=
res
.
data
.
data
.
BottomTagList
;
...
...
src/components/blindDate/activityInfo.vue
View file @
8e8f6424
This diff is collapsed.
Click to expand it.
src/components/blindDate/recruitStick.vue
View file @
8e8f6424
...
...
@@ -92,36 +92,62 @@
/>
</
template
>
</el-table-column>
<el-table-column
prop=
"DianZanNum"
label=
"点赞数"
width=
"80"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.IsTieZi === 1"
>
{{
scope
.
row
.
DianZanNum
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"ReplyNum"
label=
"回复数量"
width=
"80"
>
</el-table-column>
<el-table-column
prop=
"EnrollNum"
label=
"报名人数"
width=
"80"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.IsTieZi === 0"
>
{{
scope
.
row
.
EnrollNum
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"EnrollNum"
label=
"是否开启报名"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.IsOpenEnroll == 1"
style=
"color: green"
<span
v-if=
"scope.row.IsOpenEnroll == 1 && scope.row.IsTieZi === 0"
style=
"color: green"
>
是
</span
>
<span
v-if=
"scope.row.IsOpenEnroll == 2"
style=
"color: red"
<span
v-if=
"scope.row.IsOpenEnroll == 2 && scope.row.IsTieZi === 0"
style=
"color: red"
>
否
</span
>
</
template
>
</el-table-column>
<el-table-column
label=
"标签"
width=
"70"
>
<
template
slot-scope=
"scope"
v-if=
"scope.row.Label"
>
<el-tag>
<el-tag
v-if=
"scope.row.IsTieZi === 0"
>
{{
scope
.
row
.
Label
}}
</el-tag>
</
template
>
</el-table-column>
<el-table-column
label=
"活动时间"
width=
"220"
>
<
template
slot-scope=
"scope"
>
<div>
开始时间:
{{
scope
.
row
.
StartTime
}}
</div>
<div>
结束时间:
{{
scope
.
row
.
EndTime
}}
</div>
<div
v-if=
"scope.row.IsTieZi === 0"
>
开始时间:
{{
scope
.
row
.
StartTime
}}
</div>
<div
v-if=
"scope.row.IsTieZi === 0"
>
结束时间:
{{
scope
.
row
.
EndTime
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"ManNum"
label=
"男数量"
width=
"70"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.IsTieZi === 0"
>
{{
scope
.
row
.
ManNum
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"WoManNum"
label=
"女数量"
width=
"70"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.IsTieZi === 0"
>
{{
scope
.
row
.
WoManNum
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"Deadline"
label=
"截止报名日期"
width=
"150"
>
</el-table-column>
...
...
src/components/sallCenter/plugin/posts.vue
View file @
8e8f6424
...
...
@@ -734,7 +734,7 @@
<div
v-if=
"cat.isCustom === 0"
>
{{
cat
.
name
}}
</div>
<el-input
v-else
v-model=
"cat.name"
size=
"small"
></el-input>
</div>
<div
flex=
"box:first"
>
<div
flex=
"box:first"
v-if=
"cat.isCustom === 1"
>
<div
class=
"diy-goods-label"
>
帖子范围
</div>
<div>
<el-radio-group
...
...
@@ -762,6 +762,17 @@
<el-input
v-model=
"cat.menuName"
size=
"small"
></el-input>
</div>
</div>
<div
flex=
"box:first"
v-if=
"cat.isCustom === 0"
>
<div
class=
"diy-goods-label"
>
自定义帖子
</div>
<div>
<el-switch
v-model=
"cat.range"
:active-value=
"3"
:inactive-value=
"1"
></el-switch>
</div>
</div>
<div
flex=
"box:first"
v-if=
"cat.range === 1 || cat.range === 2"
>
<div
class=
"diy-goods-label"
>
贴子数量
</div>
<div>
...
...
src/components/sallCenter/templateEdit.vue
View file @
8e8f6424
...
...
@@ -886,7 +886,7 @@ export default {
miaiuser
,
miaiactivitytype
,
miaiactivityCustom
,
Posts
,
Posts
,
//帖子
},
methods
:
{
//选择图片
...
...
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