Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
link-tools
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
vue-plugins
link-tools
Commits
020b8e10
Commit
020b8e10
authored
Jan 14, 2019
by
member
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 新增树形下拉组件增加商品链接和商品自定义页面的功能
parent
85ba8afd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
340 additions
and
13 deletions
+340
-13
card-list.vue
card-list.vue
+0
-1
goods-tree.vue
goods-tree.vue
+107
-0
linktools.vue
linktools.vue
+116
-6
linktoolspage.vue
linktoolspage.vue
+117
-6
No files found.
card-list.vue
View file @
020b8e10
...
@@ -144,7 +144,6 @@ export default {
...
@@ -144,7 +144,6 @@ export default {
this
.
baseUrl
=
host
;
this
.
baseUrl
=
host
;
}
}
},
},
mounted
()
{
mounted
()
{
this
.
getCardList
();
this
.
getCardList
();
}
}
...
...
goods-tree.vue
0 → 100644
View file @
020b8e10
<
template
>
<div
class=
"plug-sg"
>
<el-popover
popper-class=
"plug-sg__popover"
placement=
"bottom"
trigger=
"click"
v-model=
"treeVis"
>
<el-input
slot=
"reference"
suffix-icon=
"el-icon-arrow-down"
v-model=
"ategory"
placeholder=
"所有分类"
></el-input>
<el-tree
class=
"plug-sg__tree"
ref=
"tree"
:default-expand-all=
"true"
node-key=
"mallProTagId"
:data=
"treeData"
:props=
"defaultProps"
:highlight-current=
"true"
@
node-click=
"handleNodeClick"
>
</el-tree>
<div
class=
"good-tree-btn"
>
<el-button
@
click
.
prevent
.
stop=
"hideTree"
type=
"text"
size=
"small"
style=
"color:#303133"
>
取消
</el-button>
<el-button
@
click
.
prevent
.
stop=
"confirmBtn"
type=
"text"
size=
"small"
>
确定
</el-button>
</div>
</el-popover>
</div>
</
template
>
<
script
>
export
default
{
name
:
'goods-tree'
,
props
:{
model
:{
type
:
Object
,
default
(){
return
{}
},
},
width
:{
type
:
String
,
default
:
'300'
},
treeData
:
Array
},
data
()
{
return
{
treeVis
:
false
,
ategory
:
''
,
defaultProps
:
{
children
:
'childrenList'
,
label
:
'tagName'
}
}
},
methods
:{
handleNodeClick
(
data
)
{
this
.
mallData
=
data
;
this
.
ategory
=
data
.
tagName
;
},
hideTree
()
{
this
.
treeVis
=
false
;
},
confirmBtn
()
{
this
.
treeVis
=
false
;
if
(
this
.
mallData
.
mallProTagId
)
{
this
.
$emit
(
'pass-mall'
,
this
.
mallData
);
}
}
}
}
</
script
>
<
style
lang=
"scss"
>
.plug-sg
{
display
:
inline-block
;
width
:
200px
;
&__popover{
padding
:
10px
0
0
0
;
}
&
__btn
{
height
:
36px
;
padding
:
0
10px
;
border-top
:
1px
solid
#ebeef5
;
line-height
:
34px
;
text-align
:
right
;
&--cancel
{
color
:
#606266
;
}
}
&
__tree
{
height
:
260px
;
width
:
200px
;
overflow-y
:
auto
;
.el-tree-node__label
{
text-overflow
:
ellipsis
;
display
:
inline-block
;
white-space
:
nowrap
;
width
:
100%
;
overflow
:
hidden
;
}
&
::-webkit-scrollbar
{
width
:
0px
;
height
:
0px
;
}
}
}
.good-tree-btn
{
float
:
right
;
margin-right
:
10px
;
}
</
style
>
linktools.vue
View file @
020b8e10
...
@@ -34,6 +34,7 @@ components: {linkId
...
@@ -34,6 +34,7 @@ components: {linkId
<div
class=
"link-tools-contain"
>
<div
class=
"link-tools-contain"
>
<el-dialog
:class=
"activeName == 'first'? 'min-1026':'min-720'"
<el-dialog
:class=
"activeName == 'first'? 'min-1026':'min-720'"
title=
"链接小工具"
title=
"链接小工具"
:close-on-click-modal=
"false"
:visible
.
sync=
"mylinkToolsVisible"
:visible
.
sync=
"mylinkToolsVisible"
:modal-append-to-body=
"false"
>
:modal-append-to-body=
"false"
>
<!-- 链接类型 -->
<!-- 链接类型 -->
...
@@ -67,6 +68,9 @@ components: {linkId
...
@@ -67,6 +68,9 @@ components: {linkId
:value=
"item.value"
>
:value=
"item.value"
>
</el-option>
</el-option>
</el-select>
</el-select>
<goods-tree
v-if=
"goodsTreeVisible"
@
pass-mall=
"getMallId"
:tree-data=
"treeData"
></goods-tree>
<!-- 商品分类链接 -->
<!-- 商品分类链接 -->
<treeselect
<treeselect
v-if=
"threeLevelTreeVisible"
v-if=
"threeLevelTreeVisible"
...
@@ -402,6 +406,7 @@ components: {linkId
...
@@ -402,6 +406,7 @@ components: {linkId
import
Treeselect
from
'@riophae/vue-treeselect'
;
import
Treeselect
from
'@riophae/vue-treeselect'
;
import
CardList
from
'./card-list'
;
import
CardList
from
'./card-list'
;
import
GiftList
from
'./gift-list'
;
import
GiftList
from
'./gift-list'
;
import
GoodsTree
from
'./goods-tree'
;
// import axios from 'axios'
// import axios from 'axios'
import
qs
from
'qs'
;
import
qs
from
'qs'
;
...
@@ -411,6 +416,8 @@ export default {
...
@@ -411,6 +416,8 @@ export default {
props
:
[
'linkToolsVisible'
,
'showType'
,
'projectName'
],
props
:
[
'linkToolsVisible'
,
'showType'
,
'projectName'
],
data
()
{
data
()
{
return
{
return
{
treeData
:
[],
goodsTreeVisible
:
false
,
// 项目名
// 项目名
cardLimit
:
1
,
cardLimit
:
1
,
disabledList
:[],
disabledList
:[],
...
@@ -715,6 +722,7 @@ export default {
...
@@ -715,6 +722,7 @@ export default {
that
.
twoLevelSelectValue
=
''
;
that
.
twoLevelSelectValue
=
''
;
that
.
threeLevelSelectValue
=
''
;
that
.
threeLevelSelectValue
=
''
;
this
.
goodType
=
''
;
// 如果是 h5,二级,三级隐藏,
// 如果是 h5,二级,三级隐藏,
var
type
=
selectOneItem
.
type
==
5
?
true
:
false
;
var
type
=
selectOneItem
.
type
==
5
?
true
:
false
;
...
@@ -778,6 +786,22 @@ export default {
...
@@ -778,6 +786,22 @@ export default {
// twoLevelValueChange (二级选择,保存选择类型)
// twoLevelValueChange (二级选择,保存选择类型)
twoLevelValueChange
(
e
)
{
twoLevelValueChange
(
e
)
{
if
(
e
==
'product_category_link'
)
{
// 商品链接
this
.
goodType
=
10
;
this
.
threeLevelVisible
=
true
;
this
.
threeLeveloneVisible
=
false
;
this
.
goodsTreeVisible
=
true
;
}
else
if
(
e
==
'mall_customize_page'
)
{
// 自定义页面
this
.
goodType
=
11
;
this
.
threeLevelVisible
=
true
;
this
.
threeLeveloneVisible
=
true
;
this
.
goodsTreeVisible
=
false
;
}
else
{
this
.
threeLevelVisible
=
true
;
this
.
threeLeveloneVisible
=
true
;
this
.
goodsTreeVisible
=
false
;
}
var
that
=
this
var
that
=
this
this
.
visibleType
=
null
;
this
.
visibleType
=
null
;
// 清空已经选择
// 清空已经选择
...
@@ -826,6 +850,9 @@ export default {
...
@@ -826,6 +850,9 @@ export default {
that
.
getGoodsCategory
();
// 获取商品品类
that
.
getGoodsCategory
();
// 获取商品品类
that
.
getGoodsClassify
();
// 获取商品分类
that
.
getGoodsClassify
();
// 获取商品分类
// this.getGoodsType(); // 商品分类链接
// this.getGoodsPage(); // 商品自定义页面
that
.
threeLevelVisible
=
false
;
// 三级部分隐藏
that
.
threeLevelVisible
=
false
;
// 三级部分隐藏
that
.
goodsLinksVisible
=
true
;
// 商品链接列表部分显示
that
.
goodsLinksVisible
=
true
;
// 商品链接列表部分显示
return
false
;
return
false
;
...
@@ -837,7 +864,13 @@ export default {
...
@@ -837,7 +864,13 @@ export default {
that
.
selectLinkObj
.
url
=
ele
.
content
;
that
.
selectLinkObj
.
url
=
ele
.
content
;
}
}
})
})
}
else
{
}
else
if
(
this
.
goodType
==
10
)
{
// 商品分类链接
this
.
getGoodsLink
();
}
else
if
(
this
.
goodType
==
11
)
{
// 商品自定义页面
this
.
getGoodsPage
();
}
else
{
// 判断三级中下拉/下拉树形/搜索下拉
// 判断三级中下拉/下拉树形/搜索下拉
that
.
goodsLinksVisible
=
false
;
// 商品列表隐藏
that
.
goodsLinksVisible
=
false
;
// 商品列表隐藏
that
.
threeLevelVisible
=
true
;
// 三级部分显示
that
.
threeLevelVisible
=
true
;
// 三级部分显示
...
@@ -846,7 +879,7 @@ export default {
...
@@ -846,7 +879,7 @@ export default {
that
.
threeLevelSelectValue
=
''
;
that
.
threeLevelSelectValue
=
''
;
var
twoType
=
selectTwoItem
.
type
;
var
twoType
=
selectTwoItem
.
type
;
// 判断三级显示的下拉组件
// 判断三级显示的下拉组件
that
.
setThreeVisible
(
twoType
,
selectTwoItem
)
that
.
setThreeVisible
(
twoType
,
selectTwoItem
)
// 如果是门店,直接返回,需要输入后搜索出现下拉列表
// 如果是门店,直接返回,需要输入后搜索出现下拉列表
...
@@ -864,6 +897,44 @@ export default {
...
@@ -864,6 +897,44 @@ export default {
}
}
},
},
// sy 商品分类链接
getGoodsLink
()
{
this
.
axios
.
get
(
`
${
this
.
baseUrl
}
/api-plug/list-mall-product-tag?requestProject=gic-web`
)
.
then
(
res
=>
{
if
(
res
.
data
.
errorCode
===
0
)
{
const
data
=
res
.
data
.
result
;
if
(
data
&&
data
.
length
)
{
this
.
treeData
=
data
;
}
else
{
this
.
treeData
=
[];
}
}
}).
catch
(
err
=>
{
console
.
log
(
err
);
});
},
// sy 商品自定义页面
getGoodsPage
()
{
this
.
axios
.
get
(
`
${
this
.
baseUrl
}
/api-plug/list-mall-page?requestProject=gic-web`
)
.
then
(
res
=>
{
if
(
res
.
data
.
errorCode
===
0
)
{
const
data
=
res
.
data
.
result
;
if
(
data
&&
data
.
length
)
{
// definePage 自定义页面
this
.
threeLevelOptions
=
data
.
map
(
val
=>
({
...
val
,
label
:
val
.
pageName
,
value
:
val
.
pageId
}));
}
else
{
this
.
threeLevelOptions
=
[];
}
}
}).
catch
(
err
=>
{
console
.
log
(
err
);
});
},
// set threelevel visible
// set threelevel visible
setThreeVisible
(
type
,
selectTwoItem
)
{
setThreeVisible
(
type
,
selectTwoItem
)
{
var
that
=
this
var
that
=
this
...
@@ -1046,7 +1117,16 @@ export default {
...
@@ -1046,7 +1117,16 @@ export default {
// threeSingleValueChange
// threeSingleValueChange
threeSingleValueChange
(
e
)
{
threeSingleValueChange
(
e
)
{
// 是那个类型的
// 是那个类型的
// console.log(this.threeLevelOptions);
if
(
this
.
linkId
==
16
)
{
this
.
pageId
=
e
;
let
item
=
''
;
this
.
threeLevelOptions
.
forEach
(
function
(
ele
,
index
){
if
(
e
==
ele
.
pageId
)
{
item
=
ele
;
}
});
this
.
pageName
=
item
.
pageName
;
}
this
.
giftType
=
e
;
this
.
giftType
=
e
;
if
(
this
.
giftType
==
'coup'
)
{
if
(
this
.
giftType
==
'coup'
)
{
this
.
visibleType
=
8
;
this
.
visibleType
=
8
;
...
@@ -1207,7 +1287,7 @@ export default {
...
@@ -1207,7 +1287,7 @@ export default {
parentId
:
parentId
,
parentId
:
parentId
,
requestProject
:
that
.
repProjectName
requestProject
:
that
.
repProjectName
}
}
that
.
axios
.
post
(
that
.
baseUrl
+
'/api-mall/list_mall_goods_category'
,
qs
.
stringify
(
para
))
that
.
axios
.
post
(
that
.
baseUrl
+
'/api-mall/list_mall_goods_category'
,
qs
.
stringify
(
para
))
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
var
resData
=
res
.
data
var
resData
=
res
.
data
if
(
resData
.
errorCode
==
0
)
{
if
(
resData
.
errorCode
==
0
)
{
...
@@ -1516,7 +1596,6 @@ export default {
...
@@ -1516,7 +1596,6 @@ export default {
that
.
transData
();
that
.
transData
();
return
;
return
;
}
}
// 确定是会员功能 然后看是那个类型的
// 确定是会员功能 然后看是那个类型的
if
(
this
.
linkId
==
27
)
{
if
(
this
.
linkId
==
27
)
{
if
(
this
.
visibleType
==
8
)
{
if
(
this
.
visibleType
==
8
)
{
...
@@ -1556,6 +1635,29 @@ export default {
...
@@ -1556,6 +1635,29 @@ export default {
}
}
}
}
if
(
this
.
linkId
==
16
)
{
if
(
this
.
goodType
==
10
)
{
// 商品分类链接
this
.
selectLinkObj
.
name
=
'商品分类链接/'
+
this
.
tagName
;
this
.
selectLinkObj
.
id
=
this
.
linkId
;
this
.
selectLinkObj
.
params
=
{
mallProTagId
:
this
.
cardUrl
,
name
:
this
.
tagName
};
this
.
transData
();
return
;
}
else
if
(
this
.
goodType
==
11
)
{
this
.
selectLinkObj
.
name
=
'商城自定义页面/'
+
this
.
pageName
;
this
.
selectLinkObj
.
id
=
this
.
linkId
;
this
.
selectLinkObj
.
params
=
{
pageId
:
this
.
pageId
,
name
:
this
.
pageName
};
this
.
transData
();
return
;
}
}
// 如果门店签到
// 如果门店签到
console
.
log
(
"门店签到:"
,
that
.
twoLevelSelectValue
)
console
.
log
(
"门店签到:"
,
that
.
twoLevelSelectValue
)
...
@@ -1586,6 +1688,12 @@ export default {
...
@@ -1586,6 +1688,12 @@ export default {
},
},
getMallId
(
item
)
{
console
.
log
(
item
);
this
.
tagName
=
item
.
tagName
;
this
.
cardUrl
=
item
.
mallProTagId
;
},
checkTwoLevel
(
v
)
{
checkTwoLevel
(
v
)
{
var
that
=
this
var
that
=
this
// console.log(that.threeLevelValue)
// console.log(that.threeLevelValue)
...
@@ -1937,13 +2045,15 @@ export default {
...
@@ -1937,13 +2045,15 @@ export default {
this
.
repProjectName
=
this
.
projectName
||
'gic-web'
;
this
.
repProjectName
=
this
.
projectName
||
'gic-web'
;
// 获取 showType
// 获取 showType
this
.
linkShowType
=
this
.
showType
||
0
;
this
.
linkShowType
=
this
.
showType
||
0
;
this
.
pageName
=
''
;
this
.
getLinksList
(
0
,
1
)
this
.
getLinksList
(
0
,
1
)
},
},
components
:
{
components
:
{
Treeselect
,
Treeselect
,
CardList
,
CardList
,
GiftList
GiftList
,
GoodsTree
}
}
}
}
</
script
>
</
script
>
...
...
linktoolspage.vue
View file @
020b8e10
<
template
>
<
template
>
<!-- 链接小工具 -->
<!-- 链接小工具 -->
<div
class=
"link-tools-contain"
>
<div
class=
"link-tools-contain"
>
<el-dialog
:class=
"activeName == 'first'? 'min-1026':'min-720'"
<el-dialog
:class=
"activeName == 'first'? 'min-1026':'min-720'"
title=
"链接小工具"
title=
"链接小工具"
:close-on-click-modal=
"false"
:visible
.
sync=
"mylinkToolsVisible"
:visible
.
sync=
"mylinkToolsVisible"
:modal-append-to-body=
"false"
>
:modal-append-to-body=
"false"
>
<!-- 链接类型 -->
<!-- 链接类型 -->
...
@@ -36,6 +38,9 @@
...
@@ -36,6 +38,9 @@
:value=
"item.value"
>
:value=
"item.value"
>
</el-option>
</el-option>
</el-select>
</el-select>
<goods-tree
v-if=
"goodsTreeVisible"
@
pass-mall=
"getMallId"
:tree-data=
"treeData"
></goods-tree>
<!-- 商品分类链接 -->
<!-- 商品分类链接 -->
<treeselect
<treeselect
v-if=
"threeLevelTreeVisible"
v-if=
"threeLevelTreeVisible"
...
@@ -371,6 +376,7 @@
...
@@ -371,6 +376,7 @@
import
Treeselect
from
'@riophae/vue-treeselect'
;
import
Treeselect
from
'@riophae/vue-treeselect'
;
import
CardList
from
'./card-list'
;
import
CardList
from
'./card-list'
;
import
GiftList
from
'./gift-list'
;
import
GiftList
from
'./gift-list'
;
import
GoodsTree
from
'./goods-tree'
;
// import axios from 'axios'
// import axios from 'axios'
import
qs
from
'qs'
;
import
qs
from
'qs'
;
...
@@ -380,6 +386,8 @@ export default {
...
@@ -380,6 +386,8 @@ export default {
props
:
[
'linkToolsVisible'
,
'showType'
,
'projectName'
],
props
:
[
'linkToolsVisible'
,
'showType'
,
'projectName'
],
data
()
{
data
()
{
return
{
return
{
treeData
:
[],
goodsTreeVisible
:
false
,
// 项目名
// 项目名
cardLimit
:
1
,
cardLimit
:
1
,
disabledList
:[],
disabledList
:[],
...
@@ -684,6 +692,7 @@ export default {
...
@@ -684,6 +692,7 @@ export default {
that
.
twoLevelSelectValue
=
''
;
that
.
twoLevelSelectValue
=
''
;
that
.
threeLevelSelectValue
=
''
;
that
.
threeLevelSelectValue
=
''
;
this
.
goodType
=
''
;
// 如果是 h5,二级,三级隐藏,
// 如果是 h5,二级,三级隐藏,
var
type
=
selectOneItem
.
type
==
5
?
true
:
false
;
var
type
=
selectOneItem
.
type
==
5
?
true
:
false
;
...
@@ -747,6 +756,22 @@ export default {
...
@@ -747,6 +756,22 @@ export default {
// twoLevelValueChange (二级选择,保存选择类型)
// twoLevelValueChange (二级选择,保存选择类型)
twoLevelValueChange
(
e
)
{
twoLevelValueChange
(
e
)
{
if
(
e
==
'product_category_link'
)
{
// 商品链接
this
.
goodType
=
10
;
this
.
threeLevelVisible
=
true
;
this
.
threeLeveloneVisible
=
false
;
this
.
goodsTreeVisible
=
true
;
}
else
if
(
e
==
'mall_customize_page'
)
{
// 自定义页面
this
.
goodType
=
11
;
this
.
threeLevelVisible
=
true
;
this
.
threeLeveloneVisible
=
true
;
this
.
goodsTreeVisible
=
false
;
}
else
{
this
.
threeLevelVisible
=
true
;
this
.
threeLeveloneVisible
=
true
;
this
.
goodsTreeVisible
=
false
;
}
var
that
=
this
var
that
=
this
this
.
visibleType
=
null
;
this
.
visibleType
=
null
;
// 清空已经选择
// 清空已经选择
...
@@ -795,6 +820,9 @@ export default {
...
@@ -795,6 +820,9 @@ export default {
that
.
getGoodsCategory
();
// 获取商品品类
that
.
getGoodsCategory
();
// 获取商品品类
that
.
getGoodsClassify
();
// 获取商品分类
that
.
getGoodsClassify
();
// 获取商品分类
// this.getGoodsType(); // 商品分类链接
// this.getGoodsPage(); // 商品自定义页面
that
.
threeLevelVisible
=
false
;
// 三级部分隐藏
that
.
threeLevelVisible
=
false
;
// 三级部分隐藏
that
.
goodsLinksVisible
=
true
;
// 商品链接列表部分显示
that
.
goodsLinksVisible
=
true
;
// 商品链接列表部分显示
return
false
;
return
false
;
...
@@ -806,7 +834,13 @@ export default {
...
@@ -806,7 +834,13 @@ export default {
that
.
selectLinkObj
.
url
=
ele
.
content
;
that
.
selectLinkObj
.
url
=
ele
.
content
;
}
}
})
})
}
else
{
}
else
if
(
this
.
goodType
==
10
)
{
// 商品分类链接
this
.
getGoodsLink
();
}
else
if
(
this
.
goodType
==
11
)
{
// 商品自定义页面
this
.
getGoodsPage
();
}
else
{
// 判断三级中下拉/下拉树形/搜索下拉
// 判断三级中下拉/下拉树形/搜索下拉
that
.
goodsLinksVisible
=
false
;
// 商品列表隐藏
that
.
goodsLinksVisible
=
false
;
// 商品列表隐藏
that
.
threeLevelVisible
=
true
;
// 三级部分显示
that
.
threeLevelVisible
=
true
;
// 三级部分显示
...
@@ -815,7 +849,7 @@ export default {
...
@@ -815,7 +849,7 @@ export default {
that
.
threeLevelSelectValue
=
''
;
that
.
threeLevelSelectValue
=
''
;
var
twoType
=
selectTwoItem
.
type
;
var
twoType
=
selectTwoItem
.
type
;
// 判断三级显示的下拉组件
// 判断三级显示的下拉组件
that
.
setThreeVisible
(
twoType
,
selectTwoItem
)
that
.
setThreeVisible
(
twoType
,
selectTwoItem
)
// 如果是门店,直接返回,需要输入后搜索出现下拉列表
// 如果是门店,直接返回,需要输入后搜索出现下拉列表
...
@@ -833,6 +867,44 @@ export default {
...
@@ -833,6 +867,44 @@ export default {
}
}
},
},
// sy 商品分类链接
getGoodsLink
()
{
this
.
axios
.
get
(
`
${
this
.
baseUrl
}
/api-plug/list-mall-product-tag?requestProject=gic-web`
)
.
then
(
res
=>
{
if
(
res
.
data
.
errorCode
===
0
)
{
const
data
=
res
.
data
.
result
;
if
(
data
&&
data
.
length
)
{
this
.
treeData
=
data
;
}
else
{
this
.
treeData
=
[];
}
}
}).
catch
(
err
=>
{
console
.
log
(
err
);
});
},
// sy 商品自定义页面
getGoodsPage
()
{
this
.
axios
.
get
(
`
${
this
.
baseUrl
}
/api-plug/list-mall-page?requestProject=gic-web`
)
.
then
(
res
=>
{
if
(
res
.
data
.
errorCode
===
0
)
{
const
data
=
res
.
data
.
result
;
if
(
data
&&
data
.
length
)
{
// definePage 自定义页面
this
.
threeLevelOptions
=
data
.
map
(
val
=>
({
...
val
,
label
:
val
.
pageName
,
value
:
val
.
pageId
}));
}
else
{
this
.
threeLevelOptions
=
[];
}
}
}).
catch
(
err
=>
{
console
.
log
(
err
);
});
},
// set threelevel visible
// set threelevel visible
setThreeVisible
(
type
,
selectTwoItem
)
{
setThreeVisible
(
type
,
selectTwoItem
)
{
var
that
=
this
var
that
=
this
...
@@ -1015,7 +1087,16 @@ export default {
...
@@ -1015,7 +1087,16 @@ export default {
// threeSingleValueChange
// threeSingleValueChange
threeSingleValueChange
(
e
)
{
threeSingleValueChange
(
e
)
{
// 是那个类型的
// 是那个类型的
// console.log(this.threeLevelOptions);
if
(
this
.
linkId
==
16
)
{
this
.
pageId
=
e
;
let
item
=
''
;
this
.
threeLevelOptions
.
forEach
(
function
(
ele
,
index
){
if
(
e
==
ele
.
pageId
)
{
item
=
ele
;
}
});
this
.
pageName
=
item
.
pageName
;
}
this
.
giftType
=
e
;
this
.
giftType
=
e
;
if
(
this
.
giftType
==
'coup'
)
{
if
(
this
.
giftType
==
'coup'
)
{
this
.
visibleType
=
8
;
this
.
visibleType
=
8
;
...
@@ -1176,7 +1257,7 @@ export default {
...
@@ -1176,7 +1257,7 @@ export default {
parentId
:
parentId
,
parentId
:
parentId
,
requestProject
:
that
.
repProjectName
requestProject
:
that
.
repProjectName
}
}
that
.
axios
.
post
(
that
.
baseUrl
+
'/api-mall/list_mall_goods_category'
,
qs
.
stringify
(
para
))
that
.
axios
.
post
(
that
.
baseUrl
+
'/api-mall/list_mall_goods_category'
,
qs
.
stringify
(
para
))
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
var
resData
=
res
.
data
var
resData
=
res
.
data
if
(
resData
.
errorCode
==
0
)
{
if
(
resData
.
errorCode
==
0
)
{
...
@@ -1485,7 +1566,6 @@ export default {
...
@@ -1485,7 +1566,6 @@ export default {
that
.
transData
();
that
.
transData
();
return
;
return
;
}
}
// 确定是会员功能 然后看是那个类型的
// 确定是会员功能 然后看是那个类型的
if
(
this
.
linkId
==
27
)
{
if
(
this
.
linkId
==
27
)
{
if
(
this
.
visibleType
==
8
)
{
if
(
this
.
visibleType
==
8
)
{
...
@@ -1525,6 +1605,29 @@ export default {
...
@@ -1525,6 +1605,29 @@ export default {
}
}
}
}
if
(
this
.
linkId
==
16
)
{
if
(
this
.
goodType
==
10
)
{
// 商品分类链接
this
.
selectLinkObj
.
name
=
'商品分类链接/'
+
this
.
tagName
;
this
.
selectLinkObj
.
id
=
this
.
linkId
;
this
.
selectLinkObj
.
params
=
{
mallProTagId
:
this
.
cardUrl
,
name
:
this
.
tagName
};
this
.
transData
();
return
;
}
else
if
(
this
.
goodType
==
11
)
{
this
.
selectLinkObj
.
name
=
'商城自定义页面/'
+
this
.
pageName
;
this
.
selectLinkObj
.
id
=
this
.
linkId
;
this
.
selectLinkObj
.
params
=
{
pageId
:
this
.
pageId
,
name
:
this
.
pageName
};
this
.
transData
();
return
;
}
}
// 如果门店签到
// 如果门店签到
console
.
log
(
"门店签到:"
,
that
.
twoLevelSelectValue
)
console
.
log
(
"门店签到:"
,
that
.
twoLevelSelectValue
)
...
@@ -1555,6 +1658,12 @@ export default {
...
@@ -1555,6 +1658,12 @@ export default {
},
},
getMallId
(
item
)
{
console
.
log
(
item
);
this
.
tagName
=
item
.
tagName
;
this
.
cardUrl
=
item
.
mallProTagId
;
},
checkTwoLevel
(
v
)
{
checkTwoLevel
(
v
)
{
var
that
=
this
var
that
=
this
// console.log(that.threeLevelValue)
// console.log(that.threeLevelValue)
...
@@ -1906,13 +2015,15 @@ export default {
...
@@ -1906,13 +2015,15 @@ export default {
this
.
repProjectName
=
this
.
projectName
||
'gic-web'
;
this
.
repProjectName
=
this
.
projectName
||
'gic-web'
;
// 获取 showType
// 获取 showType
this
.
linkShowType
=
this
.
showType
||
0
;
this
.
linkShowType
=
this
.
showType
||
0
;
this
.
pageName
=
''
;
this
.
getLinksList
(
0
,
1
)
this
.
getLinksList
(
0
,
1
)
},
},
components
:
{
components
:
{
Treeselect
,
Treeselect
,
CardList
,
CardList
,
GiftList
GiftList
,
GoodsTree
}
}
}
}
</
script
>
</
script
>
...
...
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