fix:漫画添加批量设置
This commit is contained in:
@@ -87,7 +87,7 @@ v-model="searchData.comicsPayType"
|
||||
<el-button @click="setTag" icon="el-icon-edit-outline" plain type="warning">批量设置主题</el-button>
|
||||
<el-button @click="setTags" icon="el-icon-edit-outline" plain type="warning">批量添加标签</el-button>
|
||||
<!-- <el-button @click="delTheme" icon="el-icon-edit-outline" plain type="warning">一键移除漫画主题</el-button> -->
|
||||
|
||||
<el-button @click="batch" icon="el-icon-edit-outline" plain type="warning">批量设置漫画</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-row>
|
||||
@@ -289,6 +289,7 @@ layout="total, sizes, prev, pager, next, jumper" />
|
||||
<DelTag :data="topicIdList" v-if="delThemeVisible" @close="closeEdit"></DelTag>
|
||||
<EditCom :data="editData" v-if="editComVisible" :objectype="5" @close="closeEdit" />
|
||||
<AddTags :data="selectBatch" v-if="tagsVisible" @close="closeEdit" />
|
||||
<Bach :data="selectBatch" v-if="batchVisible" @close="closeEdit" />
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
@@ -303,6 +304,7 @@ import { circleListSearch } from '@/api/user/circleList'
|
||||
import ChapterList from './components/chapterList'
|
||||
import ShowImg from '@/components/ShowImg/index.vue'
|
||||
import Edit from './components/AddOrEdit'
|
||||
import Bach from './components/Bach'
|
||||
import SetTag from './components/setTag'
|
||||
import DelTag from './components/delTag'
|
||||
import EditCom from '@/views/videoManagement/videoList/components/videoComment.vue'
|
||||
@@ -316,7 +318,8 @@ export default {
|
||||
SetTag,
|
||||
EditCom,
|
||||
AddTags,
|
||||
DelTag
|
||||
DelTag,
|
||||
Bach
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
@@ -343,7 +346,7 @@ export default {
|
||||
setTagVisible: false,
|
||||
tagsVisible: false, // 批量添加标签
|
||||
delThemeVisible: false,
|
||||
|
||||
batchVisible:false,
|
||||
editData: {},
|
||||
topicIdList: [],
|
||||
tagIdList: [],
|
||||
@@ -530,6 +533,7 @@ export default {
|
||||
this.dialogFormVisible = false
|
||||
this.chapterListVisible = false
|
||||
this.tagsVisible = false
|
||||
this.batchVisible = false
|
||||
this.getData()
|
||||
},
|
||||
|
||||
@@ -556,6 +560,9 @@ export default {
|
||||
data: row
|
||||
}
|
||||
this.editComVisible = true
|
||||
},
|
||||
batch(){
|
||||
this.batchVisible = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user