123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <template>
- <div class="tabManage app-container">
- <div class="search">
- <el-button class="add-btn" type="primary" size="small" @click="handleAdd"
- >添加</el-button
- >
- </div>
- <el-table
- :data="tableData"
- tooltip-effect="dark"
- border
- v-loading="loading"
- style="width: 100%"
- >
- <el-table-column
- align="center"
- label="ID"
- prop="id"
- show-overflow-tooltip
- >
- </el-table-column>
- <el-table-column
- align="center"
- label="社区标签名称"
- prop="communityName"
- show-overflow-tooltip
- >
- </el-table-column>
- <el-table-column align="center" label="操作">
- <template slot-scope="scope">
- <el-button type="text" size="small" @click="handleEdit(scope.row)"
- >编辑</el-button
- >
- <el-button type="text" size="small" @click="handleDel(scope.row.id)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <div class="page-box">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- background
- :current-page="query.currentPage"
- :page-sizes="[10, 20, 30, 40]"
- :page-size="query.pageSize"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </div>
- <el-dialog :title="title" width="550px" :visible.sync="dialogFormVisible">
- <el-form label-width="130px" :model="setQuery"
- ref="setQuery"
- :rules="rules">
- <el-form-item label="标签名称" prop="communityName">
- <el-input
- v-model.number="setQuery.communityName"
- class="item-width-300"
- ></el-input>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="dialogFormVisible = false">取 消</el-button>
- <el-button type="primary" :loading="btnLoading" @click="save">确 定</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
-
- <script>
- import { debounce } from "@/utils/index";
- import { getTabList,delTab,addOrUpdateTab } from "@/api/study";
- export default {
- name: "tabManage",
- data() {
- return {
- title:'',
- tableData: [],
- loading: false,
- btnLoading: false,
- dialogFormVisible: false,
- query: {
- currentPage: 1,
- pageSize: 10,
- },
- total: 0,
- setQuery:{
- communityName:''
- },
- rules:{
- communityName: [{ required: true, message: "请输入社区标签", trigger: "blur" }],
- }
- };
- },
- watch: {
- query: {
- handler: debounce(function (val) {
- this.getTabList()
- }),
- deep: true,
- },
- },
- methods: {
- handleEdit(row){
- this.title = '编辑标签'
- this.dialogFormVisible = true
- this.setQuery = JSON.parse(JSON.stringify(row))
- },
- handleAdd() {
- this.title = '添加标签'
- this.dialogFormVisible = true
- this.setQuery = {
- communityName:''
- }
- },
- // 删除
- handleDel(id) {
- this.$confirm(`此操作将删除该数据, 是否继续?`, '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- delTab({id}).then(res=>{
- if(res.state == 'Success'){
- this.$notify({
- title: '成功',
- message: '操作成功',
- type: 'success'
- });
- this.getTabList()
- }
- })
- })
- },
- handleSizeChange(val) {
- this.query.currentPage = 1;
- this.query.pageSize = val;
- this.getTabList();
- },
- handleCurrentChange(val) {
- this.query.currentPage = val;
- this.getTabList();
- },
- search() {
- this.query.currentPage = 1;
- this.getTabList();
- },
- getTabList() {
- this.loading = true
- getTabList(this.query).then((res) => {
- this.loading = false
- if (res.state == "Success") {
- this.tableData = res.content.records;
- this.total = res.content.total
- }
- });
- },
- save(){
- this.$refs.setQuery.validate((v) => {
- if (v) {
- this.btnLoading = true
- addOrUpdateTab(this.setQuery).then(res=>{
- this.btnLoading = false
- if(res.state == 'Success'){
- this.dialogFormVisible = false
- this.$notify({
- title: '成功',
- message: '操作成功',
- type: 'success'
- });
- this.query.currentPage = 1
- this.getTabList();
- }
- })
-
- }
- });
- }
- },
- created() {
- this.getTabList();
- },
- };
- </script>
-
- <style lang="scss" >
- .tabManage {
- }
- </style>
-
|