增加游戏数学 添加功能

This commit is contained in:
sk1551 2020-11-12 15:02:52 +08:00
parent 4d054fdbc3
commit a445cdba91
2 changed files with 8 additions and 1 deletions

View File

@ -64,6 +64,14 @@
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
v-if="scope.row.iselement != 'Y'"
size="mini"
type="text"
icon="el-icon-plus"
@click="handleAdd(scope.row)"
v-hasPermi="['benyi:assessmentcontent:add']"
>新增</el-button>
<el-button
v-if="scope.row.parentId !== 0"
size="mini"

View File

@ -286,7 +286,6 @@ export default {
//
getThemeActivityList(themeid) {
listActivityByThemeId(themeid).then((response) => {
//console.log(response.rows);
this.themeactivityOptions = response.rows;
});
},