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
85220de3
Commit
85220de3
authored
Aug 24, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
22c116d8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
3637 additions
and
1523 deletions
+3637
-1523
distributionGoodsList.vue
src/components/CommodityMan/distributionGoodsList.vue
+0
-2
goodsList.vue
src/components/CommodityMan/goodsList.vue
+2
-2
choicePosts.vue
src/components/common/choicePosts.vue
+150
-0
choiceSystemFenlei.vue
src/components/common/choiceSystemFenlei.vue
+122
-0
posts.vue
src/components/sallCenter/plugin/posts.vue
+1406
-0
templateEdit.vue
src/components/sallCenter/templateEdit.vue
+1957
-1519
No files found.
src/components/CommodityMan/distributionGoodsList.vue
View file @
85220de3
...
...
@@ -718,13 +718,11 @@ export default {
},
//分销商品
distributionGoods
(
CategoryList
,
ids
)
{
console
.
log
(
1151
,
CategoryList
,
ids
);
let
msg
=
{
CategoryList
:
CategoryList
,
GoodsIds
:
ids
,
};
this
.
apipost
(
"/api/product/SynchroGoods"
,
msg
,
(
res
)
=>
{
console
.
log
(
1158
,
res
);
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
"操作成功"
);
this
.
msg
.
pageIndex
=
1
;
...
...
src/components/CommodityMan/goodsList.vue
View file @
85220de3
...
...
@@ -360,8 +360,8 @@
<el-table-column
prop=
"RetailStore"
width=
"100"
label=
"分销商品"
>
<
template
slot-scope=
"scope"
>
<el-checkbox
v-if=
"scope.row.
RetailStore == 1
"
:value=
"scope.row.
RetailStore == 1
"
v-if=
"scope.row.
SourceGoodsId > 0
"
:value=
"scope.row.
SourceGoodsId > 0
"
disabled
></el-checkbox>
</
template
>
...
...
src/components/common/choicePosts.vue
0 → 100644
View file @
85220de3
<
template
>
<div>
<el-input
size=
"mini"
v-model=
"msg.ActivityTitle"
placeholder=
"根据名称搜索"
:clearable=
"true"
@
clear=
"(msg.pageIndex = 1), getList()"
@
keyup
.
enter
.
native=
"(msg.pageIndex = 1), getList()"
>
<el-button
slot=
"append"
@
click=
"(msg.pageIndex = 1), getList()"
>
搜索
</el-button
>
</el-input>
<el-table
ref=
"multipleTable"
:data=
"dataList"
tooltip-effect=
"dark"
height=
"450"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
>
<template
v-if=
"isSingle"
>
<el-table-column
width=
"50px"
label=
""
>
<template
slot-scope=
"scope"
>
<el-radio
v-model=
"scope.row.IsChecked"
@
change
.
native=
"getTemplateRow(scope.$index, scope.row)"
>
</el-radio>
</
template
>
</el-table-column>
</template>
<
template
v-else
>
<el-table-column
type=
"selection"
width=
"50px"
>
</el-table-column>
</
template
>
<el-table-column
label=
"ID"
width=
"80px"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
Id
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"CategoryList"
label=
"用户信息"
>
<
template
slot-scope=
"scope"
>
<div
style=
"display: flex; align-items: center"
>
<img
style=
"width: 50px; height: 50px; margin-right: 10px"
:src=
"scope.row.Photo"
/>
{{
scope
.
row
.
UserName
}}
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"name"
label=
"名称"
>
<
template
slot-scope=
"scope"
>
<div
flex=
"cross:center dir:left"
>
<img
style=
"width: 50px; height: 50px; margin-right: 10px"
:src=
"getIconLink(scope.row.ImageList[0])"
/>
<div>
{{
scope
.
row
.
ActivityTitle
}}
</div>
</div>
</
template
>
</el-table-column>
</el-table>
<el-pagination
style=
"text-align: center"
background
@
current-change=
"handleCurrentChange"
:page-size=
"msg.pageSize"
layout=
"prev, pager, next"
:total=
"total"
>
</el-pagination>
</div>
</template>
<
script
>
export
default
{
props
:
[
"ckGoods"
,
"isSingle"
,
"IsGetSpec"
],
data
()
{
return
{
dataList
:
[],
msg
:
{
ActivityTitle
:
""
,
ForumId
:
0
,
pageIndex
:
1
,
pageSize
:
20
,
},
total
:
0
,
selectRow
:
[],
};
},
created
()
{
if
(
this
.
IsGetSpec
)
{
this
.
msg
.
IsGetSpec
=
this
.
IsGetSpec
;
}
},
methods
:
{
//获取贴子
getList
()
{
this
.
apipost
(
"/api/Miai/GetActivityDianZanPageList"
,
this
.
msg
,
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
var
tempArray
=
res
.
data
.
data
.
pageData
;
if
(
tempArray
&&
tempArray
.
length
>
0
)
{
tempArray
.
forEach
((
item
)
=>
{
item
.
IsChecked
=
false
;
});
}
this
.
dataList
=
JSON
.
parse
(
JSON
.
stringify
(
tempArray
));
}
else
{
this
.
Info
(
res
.
data
.
message
);
}
});
},
handleSelectionChange
(
val
)
{
this
.
selectRow
=
JSON
.
parse
(
JSON
.
stringify
(
val
));
},
getTemplateRow
(
index
,
row
)
{
this
.
selectRow
=
[];
if
(
this
.
dataList
&&
this
.
dataList
.
length
>
0
)
{
this
.
dataList
.
forEach
((
item
)
=>
{
if
(
item
.
Id
!=
row
.
Id
)
{
item
.
IsChecked
=
false
;
}
});
}
this
.
selectRow
.
push
(
JSON
.
parse
(
JSON
.
stringify
(
row
)));
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
},
//父组件调用方法
getChoicedGoods
()
{
return
this
.
selectRow
;
},
//清空多选方法
toggleSelection
(
rows
)
{
if
(
rows
)
{
rows
.
forEach
((
row
)
=>
{
this
.
$refs
.
multipleTable
.
toggleRowSelection
(
row
);
});
}
else
{
this
.
$refs
.
multipleTable
.
clearSelection
();
}
},
},
mounted
()
{
this
.
getList
();
},
};
</
script
>
src/components/common/choiceSystemFenlei.vue
0 → 100644
View file @
85220de3
<
template
>
<div>
<el-table
ref=
"multipleTable"
:data=
"dataList"
tooltip-effect=
"dark"
height=
"450"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
<el-table-column
label=
"ID"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
id
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"name"
label=
"名称"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
name
}}
</
template
>
</el-table-column>
</el-table>
<el-pagination
style=
"text-align: center"
background
@
current-change=
"handleCurrentChange"
:page-size=
"msg.pageSize"
layout=
"prev, pager, next"
:total=
"total"
>
</el-pagination>
</div>
</template>
<
script
>
export
default
{
data
()
{
return
{
dataList
:
[],
msg
:
{
pageIndex
:
1
,
pageSize
:
20
,
Name
:
""
,
IsShow
:
0
,
},
selectRow
:
[],
total
:
0
,
};
},
created
()
{},
methods
:
{
//获取所有菜单
getList
()
{
this
.
apipost
(
"/api/Miai/GetForumPageList"
,
this
.
msg
,
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
var
dataArray
=
res
.
data
.
data
.
pageData
;
console
.
log
(
42
,
dataArray
);
this
.
dataList
=
[];
if
(
dataArray
&&
dataArray
.
length
>
0
)
{
dataArray
.
forEach
((
x
)
=>
{
this
.
dataList
.
push
({
id
:
x
.
Id
,
name
:
x
.
Name
,
menuName
:
x
.
Name
,
goodsNum
:
3
,
staticGoods
:
false
,
goodsList
:
[],
});
if
(
x
.
ChildList
&&
x
.
ChildList
.
length
>
0
)
{
x
.
ChildList
.
forEach
((
y
)
=>
{
this
.
dataList
.
push
({
id
:
y
.
Id
,
name
:
y
.
Name
,
menuName
:
y
.
Name
,
goodsNum
:
3
,
staticGoods
:
false
,
goodsList
:
[],
});
if
(
y
.
ChildList
&&
y
.
ChildList
.
length
>
0
)
{
y
.
ChildList
.
forEach
((
z
)
=>
{
this
.
dataList
.
push
({
id
:
z
.
Id
,
name
:
z
.
Name
,
menuName
:
z
.
Name
,
goodsNum
:
3
,
staticGoods
:
false
,
goodsList
:
[],
});
});
}
});
}
});
}
}
else
{
this
.
Info
(
res
.
data
.
message
);
}
});
},
handleSelectionChange
(
val
)
{
this
.
selectRow
=
JSON
.
parse
(
JSON
.
stringify
(
val
));
},
//父组件调用方法
getChoicedFenlei
()
{
return
this
.
selectRow
;
},
//清空多选方法
toggleSelection
(
rows
)
{
if
(
rows
)
{
rows
.
forEach
((
row
)
=>
{
this
.
$refs
.
multipleTable
.
toggleRowSelection
(
row
);
});
}
else
{
this
.
$refs
.
multipleTable
.
clearSelection
();
}
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
},
},
mounted
()
{
this
.
getList
();
},
};
</
script
>
src/components/sallCenter/plugin/posts.vue
0 → 100644
View file @
85220de3
This diff is collapsed.
Click to expand it.
src/components/sallCenter/templateEdit.vue
View file @
85220de3
This diff is collapsed.
Click to expand it.
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