Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing
Overview
Overview
Details
Activity
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
marketing-web
marketing
Commits
ccb2c975
Commit
ccb2c975
authored
May 18, 2021
by
陈羽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: bugfix
parent
bc4044c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
setting.vue
src/views/sign/setting.vue
+4
-2
No files found.
src/views/sign/setting.vue
View file @
ccb2c975
...
...
@@ -36,7 +36,7 @@
<vue-gic-store-card
:options=
"options"
:uuid
.
sync=
"uuid"
ref=
"storeCard"
></vue-gic-store-card>
</el-form-item>
<el-form-item
label=
"签到距离"
prop=
"signDistance"
>
<el-input-number
v-model=
"form.signDistance"
controls-position=
"right"
class=
"shortInput"
@
change=
"handleChange"
:min=
"100"
:max=
"5000"
></el-input-number><span
style=
"margin-left:9px;"
>
米
</span>
<el-input-number
v-model=
"form.signDistance"
controls-position=
"right"
class=
"shortInput"
@
change=
"handleChange"
:min=
"100"
:max=
"5000"
:step=
"1"
:step-strictly=
"true"
></el-input-number><span
style=
"margin-left:9px;"
>
米
</span>
<span
class=
"tips"
>
*为了保证用户体验,建议设置签到距离为100米,设置范围为100-5000米。
</span>
</el-form-item>
<el-form-item
label=
"签到人群"
prop=
"memberSearchType"
>
...
...
@@ -81,7 +81,7 @@
<el-input
type=
"text"
v-model=
"form.prizeType"
style=
"display:none;"
></el-input>
</el-form-item>
</el-form-item>
<
el-button
type=
"primary"
@
click=
"onSubmit('form')"
style=
"margin:24px 0 50px 111px;"
>
保存
</el-button>
<span
class=
"tips"
>
(若使用多个计划需小程序版本升级到3.8.2以上)
</span
>
<
template
v-if=
"canEdit"
><el-button
type=
"primary"
@
click=
"onSubmit('form')"
style=
"margin:24px 0 50px 111px;"
>
保存
</el-button>
<span
class=
"tips"
>
(若使用多个计划需小程序版本升级到3.8.2以上)
</span></
template
>
</el-form>
</section>
</template>
...
...
@@ -163,6 +163,7 @@ export default {
creatorId
:
''
,
showStoreCard
:
false
,
isAdd
:
false
,
canEdit
:
false
,
// 需要的下拉 默认为全部[0,1,2,3,4,5]
// 0 全部 1 门店类型 2门店标签 3 门店区域 4 门店分组 5 部分门店
options
:
[
0
,
1
,
2
,
3
,
4
,
5
],
...
...
@@ -205,6 +206,7 @@ export default {
if
(
this
.
$route
.
query
.
id
)
{
this
.
getDetail
();
}
else
{
this
.
canEdit
=
true
;
this
.
isAdd
=
true
this
.
showStoreCard
=
true
;
}
...
...
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