Commit 85220de3 authored by 罗超's avatar 罗超

1

parent 22c116d8
......@@ -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;
......
......@@ -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>
......
<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)"
>&nbsp;
</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>
<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>
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment