Blame view

ant-design-vue-jeecg/src/views/system/config/CompanyList.vue 8.27 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
  <a-card :bordered="false">
    <!-- 查询区域 -->
    <div class="table-page-search-wrapper">
      <a-form layout="inline" @keyup.enter.native="searchQuery">
        <a-row :gutter="24">
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="货主编码">
              <a-input placeholder="请输入货主编码" v-model="queryParam.code"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <a-form-item label="货主名称">
              <a-input placeholder="请输入货主名称" v-model="queryParam.name"></a-input>
            </a-form-item>
          </a-col>
          <a-col :xl="6" :lg="7" :md="8" :sm="24">
            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
              <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
              <a @click="handleToggleSearch" style="margin-left: 8px">
                {{ toggleSearchStatus ? '收起' : '展开' }}
23
                <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
肖超群 authored
24
25
26
27
28
29
30
31
32
33
              </a>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>
    <!-- 查询区域-END -->

    <!-- 操作按钮区域 -->
    <div class="table-operator">
易文鹏 authored
34
      <a-button @click="handleAdd" v-has="'company:add'" type="primary" icon="plus">新增</a-button>
易文鹏 authored
35
      <a-button v-has="'company:export'" type="primary" icon="download" @click="handleExportXls('货主')">导出</a-button>
谭毅彬 authored
36
37
38
39
40
41
42
43
44
      <a-upload
        v-has="'company:import'"
        name="file"
        :showUploadList="false"
        :multiple="false"
        :headers="tokenHeader"
        :action="importExcelUrl"
        @change="handleImportExcel"
      >
肖超群 authored
45
46
47
        <a-button type="primary" icon="import">导入</a-button>
      </a-upload>
      <a-dropdown v-if="selectedRowKeys.length > 0">
易文鹏 authored
48
        <a-menu slot="overlay" v-has="'company:deleteBatch'">
肖超群 authored
49
          <a-menu-item key="1" @click="batchDel">
50
            <a-icon type="deleteBatch"/>
肖超群 authored
51
52
            删除
          </a-menu-item>
肖超群 authored
53
        </a-menu>
谭毅彬 authored
54
55
        <a-button style="margin-left: 8px">
          批量操作
56
          <a-icon type="down"/>
肖超群 authored
57
        </a-button>
肖超群 authored
58
      </a-dropdown>
59
60

      <j-super-query :fieldList="superFieldList" v-has="'company:superQuery'" @handleSuperQuery="handleSuperQuery"/>
肖超群 authored
61
62
63
64
65
    </div>

    <!-- table区域-begin -->
    <div>
      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
谭毅彬 authored
66
67
        <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择
        <a style="font-weight: 600">{{ selectedRowKeys.length }}</a> 项
肖超群 authored
68
69
70
71
72
73
        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
      </div>

      <a-table
        ref="table"
        size="middle"
谭毅彬 authored
74
        :scroll="{ x: true }"
肖超群 authored
75
76
77
78
79
80
        bordered
        rowKey="id"
        :columns="columns"
        :dataSource="dataSource"
        :pagination="ipagination"
        :loading="loading"
谭毅彬 authored
81
        :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
肖超群 authored
82
        class="j-table-force-nowrap"
谭毅彬 authored
83
84
        @change="handleTableChange"
      >
肖超群 authored
85
86
87
88
89
        <template slot="htmlSlot" slot-scope="text">
          <div v-html="text"></div>
        </template>
        <template slot="imgSlot" slot-scope="text">
          <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
谭毅彬 authored
90
91
92
93
94
95
96
          <img
            v-else
            :src="getImgView(text)"
            height="25px"
            alt=""
            style="max-width:80px;font-size: 12px;font-style: italic;"
          />
肖超群 authored
97
98
99
        </template>
        <template slot="fileSlot" slot-scope="text">
          <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
谭毅彬 authored
100
          <a-button v-else :ghost="true" type="primary" icon="download" size="small" @click="downloadFile(text)">
肖超群 authored
101
102
103
104
105
            下载
          </a-button>
        </template>

        <span slot="action" slot-scope="text, record">
106
          <a v-has="'company:edit'" @click="handleEdit(record)">编辑<a-divider type="vertical"/></a>
肖超群 authored
107
          <a-dropdown>
肖超群 authored
108
            <a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
肖超群 authored
109
110
111
112
            <a-menu slot="overlay">
              <a-menu-item>
                <a @click="handleDetail(record)">详情</a>
              </a-menu-item>
易文鹏 authored
113
              <a-menu-item v-has="'company:delete'">
肖超群 authored
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
                  <a>删除</a>
                </a-popconfirm>
              </a-menu-item>
            </a-menu>
          </a-dropdown>
        </span>
      </a-table>
    </div>

    <company-modal ref="modalForm" @ok="modalFormOk"></company-modal>
  </a-card>
</template>

<script>
肖超群 authored
129
import '@/assets/less/TableExpand.less'
130
131
import {mixinDevice} from '@/utils/mixin'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
肖超群 authored
132
import CompanyModal from './modules/CompanyModal'
肖超群 authored
133
肖超群 authored
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
export default {
  name: 'CompanyList',
  mixins: [JeecgListMixin, mixinDevice],
  components: {
    CompanyModal
  },
  data() {
    return {
      description: '货主管理页面',
      // 表头
      columns: [
        {
          title: '#',
          dataIndex: '',
          key: 'rowIndex',
          width: 60,
谭毅彬 authored
150
          align: 'center',
151
          customRender: function (t, r, index) {
谭毅彬 authored
152
            return parseInt(index) + 1
肖超群 authored
153
154
          }
        },
肖超群 authored
155
156
        {
          title: '货主编码',
谭毅彬 authored
157
          align: 'center',
肖超群 authored
158
159
160
161
          dataIndex: 'code'
        },
        {
          title: '货主名称',
谭毅彬 authored
162
          align: 'center',
肖超群 authored
163
164
165
166
          dataIndex: 'name'
        },
        {
          title: '地址',
谭毅彬 authored
167
          align: 'center',
肖超群 authored
168
169
170
171
          dataIndex: 'address'
        },
        {
          title: '区县',
谭毅彬 authored
172
          align: 'center',
肖超群 authored
173
174
175
176
          dataIndex: 'district'
        },
        {
          title: '城市',
谭毅彬 authored
177
          align: 'center',
肖超群 authored
178
179
180
181
          dataIndex: 'city'
        },
        {
          title: '省份',
谭毅彬 authored
182
          align: 'center',
肖超群 authored
183
184
185
186
          dataIndex: 'province'
        },
        {
          title: '国家',
谭毅彬 authored
187
          align: 'center',
肖超群 authored
188
189
190
191
          dataIndex: 'country'
        },
        {
          title: '邮编',
谭毅彬 authored
192
          align: 'center',
肖超群 authored
193
194
195
196
          dataIndex: 'postalcode'
        },
        {
          title: '联系人',
谭毅彬 authored
197
          align: 'center',
肖超群 authored
198
199
200
201
          dataIndex: 'attentionto'
        },
        {
          title: '联系电话',
谭毅彬 authored
202
          align: 'center',
肖超群 authored
203
204
205
206
207
          dataIndex: 'phonenum'
        },
        {
          title: '操作',
          dataIndex: 'action',
谭毅彬 authored
208
209
          align: 'center',
          fixed: 'right',
肖超群 authored
210
          width: 147,
211
          scopedSlots: {customRender: 'action'}
肖超群 authored
212
213
214
        }
      ],
      url: {
谭毅彬 authored
215
216
217
218
219
        list: '/config/company/list',
        delete: '/config/company/delete',
        deleteBatch: '/config/company/deleteBatch',
        exportXlsUrl: '/config/company/exportXls',
        importExcelUrl: 'config/company/importExcel'
肖超群 authored
220
221
      },
      dictOptions: {},
谭毅彬 authored
222
      superFieldList: []
肖超群 authored
223
224
225
    }
  },
  created() {
谭毅彬 authored
226
    this.getSuperFieldList()
肖超群 authored
227
228
  },
  computed: {
229
    importExcelUrl: function () {
谭毅彬 authored
230
231
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
    }
肖超群 authored
232
233
  },
  methods: {
234
235
    initDictConfig() {
    },
肖超群 authored
236
    getSuperFieldList() {
谭毅彬 authored
237
      let fieldList = []
238
239
240
241
242
243
244
245
246
247
      fieldList.push({type: 'string', value: 'code', text: '货主编码', dictCode: ''})
      fieldList.push({type: 'string', value: 'name', text: '货主名称', dictCode: ''})
      fieldList.push({type: 'string', value: 'address', text: '地址', dictCode: ''})
      fieldList.push({type: 'string', value: 'district', text: '区县', dictCode: ''})
      fieldList.push({type: 'string', value: 'city', text: '城市', dictCode: ''})
      fieldList.push({type: 'string', value: 'province', text: '省份', dictCode: ''})
      fieldList.push({type: 'string', value: 'country', text: '国家', dictCode: ''})
      fieldList.push({type: 'string', value: 'postalcode', text: '邮编', dictCode: ''})
      fieldList.push({type: 'string', value: 'attentionto', text: '联系人', dictCode: ''})
      fieldList.push({type: 'string', value: 'phonenum', text: '联系电话', dictCode: ''})
肖超群 authored
248
      this.superFieldList = fieldList
肖超群 authored
249
250
    }
  }
肖超群 authored
251
}
肖超群 authored
252
253
</script>
<style scoped>
肖超群 authored
254
@import '~@assets/less/common.less';
肖超群 authored
255
</style>