|
@@ -40,13 +40,13 @@ export default {
|
|
|
width: this.$col.b
|
|
|
},
|
|
|
{
|
|
|
- key: 'activityName',
|
|
|
- name: '活动',
|
|
|
+ key: 'kindergartenName',
|
|
|
+ name: '场景名称',
|
|
|
minWidth: this.$col.b
|
|
|
},
|
|
|
{
|
|
|
- key: 'nickname',
|
|
|
- name: '账号昵称',
|
|
|
+ key: 'activityName',
|
|
|
+ name: '活动名称',
|
|
|
minWidth: this.$col.b
|
|
|
},
|
|
|
{
|
|
@@ -107,7 +107,6 @@ export default {
|
|
|
type: 'switch',
|
|
|
switchName: ['是', '否'],
|
|
|
api: async row => {
|
|
|
- console.log(row);
|
|
|
row.isBeautiful = !row.isBeautiful;
|
|
|
const { success } = await updateItem(row);
|
|
|
if (success) {
|
|
@@ -142,7 +141,6 @@ export default {
|
|
|
type: 'switch',
|
|
|
switchName: ['上架', '下架'],
|
|
|
api: async row => {
|
|
|
- console.log(row);
|
|
|
row.isShow = !row.isShow;
|
|
|
const { success } = await updateItem(row);
|
|
|
if (success) {
|