Blame view

src/views/system/smallWeChatManageList.vue 4.13 KB
ce5e1a2a   wuxw   系统模块开发中
1
2
3
  <template>
    <div class="small-wechat-manage-container">
      <el-card class="box-card">
27dcfde5   wuxw   系统全面测试完成
4
        <div slot="header" class="flex justify-between">
ce5e1a2a   wuxw   系统模块开发中
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
          <span>{{ $t('smallWeChatManage.title') }}</span>
          <el-button v-if="smallWeChatManageInfo.smallWeChats.length === 0" type="primary" size="small"
            class="float-right" @click="_openAddSmallWeChatModal(1000)">
            <i class="el-icon-plus"></i>
            {{ $t('common.add') }}
          </el-button>
        </div>
  
        <el-table :data="smallWeChatManageInfo.smallWeChats" border style="width: 100%" v-loading="loading">
          <el-table-column prop="name" :label="$t('smallWeChatManage.name')" align="center" />
          <el-table-column prop="appId" label="APPID" align="center" />
          <el-table-column :label="$t('smallWeChatManage.appSecret')" align="center">
            <template>
              ********
            </template>
          </el-table-column>
          <el-table-column prop="remarks" :label="$t('smallWeChatManage.remarks')" align="center" />
          <el-table-column :label="$t('common.operation')" align="center" width="150">
            <template slot-scope="scope">
              <el-button type="text" size="small" @click="_openEditSmallWeChatModel(scope.row)">
                {{ $t('common.edit') }}
              </el-button>
            </template>
          </el-table-column>
        </el-table>
  
        <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="page.current"
          :page-sizes="[10, 20, 30, 50]" :page-size="page.size" layout="total, sizes, prev, pager, next, jumper"
          :total="page.total" class="pagination">
        </el-pagination>
      </el-card>
  
      <add-small-wechat ref="addSmallWeChat" @success="handleSuccess" />
      <edit-small-wechat ref="editSmallWeChat" @success="handleSuccess" />
      <delete-small-wechat ref="deleteSmallWeChat" @success="handleSuccess" />
    </div>
  </template>
  
  <script>
  import { getCommunityId } from '@/api/community/communityApi'
  import { listSmallWeChats } from '@/api/system/smallWeChatManageApi'
  import AddSmallWechat from '@/components/system/addSmallWechat'
  import EditSmallWechat from '@/components/system/editSmallWechat'
  import DeleteSmallWechat from '@/components/system/deleteSmallWechat'
  
  export default {
    name: 'SmallWeChatManageList',
    components: {
      AddSmallWechat,
      EditSmallWechat,
      DeleteSmallWechat
    },
    data() {
      return {
        loading: false,
        smallWeChatManageInfo: {
          smallWeChats: [],
          conditions: {
            name: '',
            appId: '',
            weChatType: '1000'
          }
        },
        page: {
          current: 1,
          size: 10,
          total: 0
        },
        communityId: ''
      }
    },
    created() {
      this.communityId = getCommunityId()
      this._listSmallWeChats()
    },
    methods: {
      async _listSmallWeChats() {
        try {
          this.loading = true
          const params = {
            page: this.page.current,
            row: this.page.size,
            communityId: this.communityId,
            ...this.smallWeChatManageInfo.conditions
          }
          const { smallWeChats, total } = await listSmallWeChats(params)
          this.smallWeChatManageInfo.smallWeChats = smallWeChats
          this.page.total = total
        } catch (error) {
          this.$message.error(this.$t('smallWeChatManage.fetchError'))
        } finally {
          this.loading = false
        }
      },
      _openAddSmallWeChatModal(type) {
        this.$refs.addSmallWeChat.open(type)
      },
      _openEditSmallWeChatModel(smallWeChat) {
        this.$refs.editSmallWeChat.open(smallWeChat)
      },
      _openDeleteSmallWeChatModel(smallWeChat) {
        this.$refs.deleteSmallWeChat.open(smallWeChat)
      },
      handleSuccess() {
        this._listSmallWeChats()
      },
      handleSizeChange(val) {
        this.page.size = val
        this._listSmallWeChats()
      },
      handleCurrentChange(val) {
        this.page.current = val
        this._listSmallWeChats()
      }
    }
  }
  </script>
  
  <style lang="scss" scoped>
  .small-wechat-manage-container {
    padding: 20px;
  
    .box-card {
      margin-bottom: 20px;
    }
  
    .pagination {
      margin-top: 20px;
      text-align: right;
    }
  
    .float-right {
      float: right;
    }
  }
  </style>