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
97514dd1
Commit
97514dd1
authored
Aug 12, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
044032c9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
10 deletions
+15
-10
pintuanActive.vue
src/components/pintuan/pintuanActive.vue
+9
-3
priceAndGroup.vue
src/components/pintuan/pintuanPlugin/priceAndGroup.vue
+5
-6
templateEdit.vue
src/components/sallCenter/templateEdit.vue
+1
-1
No files found.
src/components/pintuan/pintuanActive.vue
View file @
97514dd1
...
...
@@ -391,7 +391,8 @@
</el-card>
</el-tab-pane>
<el-tab-pane
label=
"阶梯团设置"
>
<ladderGroup
:Goods=
"addMsg"
:GroupList=
"GroupList"
:SpecList=
"SpecificationList"
:PriceList=
"SpecificationPriceList"
></ladderGroup>
<ladderGroup
:Goods=
"addMsg"
:GroupList=
"GroupList"
:SpecList=
"SpecificationList"
:PriceList=
"SpecificationPriceList"
></ladderGroup>
</el-tab-pane>
<el-tab-pane
label=
"分销价设置"
>
<distributePrice></distributePrice>
...
...
@@ -523,9 +524,10 @@
CardIds
:
""
,
//卡券发放
App_share_title
:
''
,
//自定义分享标题、
App_share_pic
:
''
,
//自定义分享图片
IsCustomSpecification
:
2
,
// 是否自定义规格 1是 2否
},
IsShowSpec
:
false
,
//是否显示规格
GroupList
:
[],
//阶梯价格列表
GroupList
:
[],
//阶梯价格列表
SpecificationList
:
[],
//规格列表
SpecificationPriceList
:
[],
//规格价格列表
...
...
@@ -571,7 +573,11 @@
SaveActivity
()
{
this
.
addMsg
.
SpecificationPriceList
=
this
.
SpecificationPriceList
;
this
.
addMsg
.
SpecificationList
=
this
.
SpecificationList
;
this
.
addMsg
.
GroupList
=
this
.
GroupList
;
this
.
addMsg
.
GroupList
=
this
.
GroupList
;
// 是否自定义规格 1是 2否
if
(
this
.
addMsg
.
SpecificationList
&&
this
.
addMsg
.
SpecificationList
.
length
>
0
)
{
this
.
addMsg
.
IsCustomSpecification
=
1
;
}
this
.
apipost
(
"/api/GroupBuy/SetGroupbuyActivity"
,
this
.
addMsg
,
res
=>
{
console
.
log
(
"res"
,
res
);
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
src/components/pintuan/pintuanPlugin/priceAndGroup.vue
View file @
97514dd1
...
...
@@ -91,9 +91,9 @@
<td
style=
"width:55px;"
>
<el-checkbox></el-checkbox>
</td>
<
template
v-for=
"headerItem in attrGroups"
>
<td>
{{
headerItem
.
Name
}}
</td>
</
template
>
<td
v-for=
"(headerItem,headerIndex) in attrGroups"
:key=
"headerIndex"
>
{{headerItem.Name}}
</td>
<td>
<div
class=
"header-require"
>
拼团价
</div>
</td>
...
...
@@ -103,13 +103,12 @@
</tr>
</thead>
<tbody>
<tr
v-for=
"
item in pinTuanPriceList
"
>
<tr
v-for=
"
(item,index) in pinTuanPriceList"
:key=
"index
"
>
<td>
<el-checkbox></el-checkbox>
</td>
<
template
v-for=
"(attrItem, attrIndex) in attrGroups"
>
<td
v-if=
"attrIndex == index2"
v-for=
"(item2, index2) in item.AttrList"
:key=
"index2+
'6'
"
>
<td
v-if=
"attrIndex == index2"
v-for=
"(item2, index2) in item.AttrList"
:key=
"index2+
6
"
>
{{
item
.
AttrList
[
index2
].
SVName
}}
</td>
</
template
>
...
...
src/components/sallCenter/templateEdit.vue
View file @
97514dd1
...
...
@@ -458,7 +458,7 @@
methods
:
{
//选择图片
SelectId
(
msg
)
{
this
.
bgMsg
.
data
.
backgroundPicUrl
=
msg
.
url
;
this
.
bgMsg
.
data
.
backgroundPicUrl
=
this
.
getIconLink
(
msg
.
url
)
;
this
.
choicImg
=
false
;
},
choose
(
num
,
position
)
{
...
...
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