123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <template>
- <a-card :bordered="false">
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline">
- <a-row :gutter="24">
- <a-col :md="6" :sm="8">
- <a-form-item label="部门代码">
- <a-input placeholder="请输入部门代码" v-model="queryParam.orgCode"></a-input>
- </a-form-item>
- </a-col>
- <template>
- <a-col :md="6" :sm="8">
- <a-form-item label="用户id">
- <a-input placeholder="请输入用户id" v-model="queryParam.userId"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="归属人id">
- <a-input placeholder="请输入归属人id" v-model="queryParam.belongerId"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="enabled">
- <a-input placeholder="请输入enabled" v-model="queryParam.enabled"></a-input>
- </a-form-item>
- </a-col>
- </template>
- <a-col :md="6" :sm="8" >
- <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>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 操作按钮区域 -->
- <div class="table-operator">
- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
- </div>
- <!-- table区域-begin -->
- <div>
- <a-table
- ref="table"
- size="middle"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="dataSource"
- :pagination="ipagination"
- :loading="loading"
- @change="handleTableChange">
- <span slot="action" slot-scope="text, record">
- <a @click="handleEdit(record)">编辑</a>
- <a-divider type="vertical" />
- <a-dropdown>
- <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
- <a-menu slot="overlay">
- <a-menu-item>
- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
- <a>删除</a>
- </a-popconfirm>
- </a-menu-item>
- </a-menu>
- </a-dropdown>
- </span>
- </a-table>
- </div>
- <!-- table区域-end -->
- <!-- 表单区域 -->
- <optimizerRoleInfo-modal ref="modalForm" @ok="modalFormOk"></optimizerRoleInfo-modal>
- </a-card>
- </template>
- <script>
- import OptimizerRoleInfoModal from './modules/OptimizerRoleInfoModal'
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- export default {
- name: "OptimizerRoleInfoList",
- mixins:[JeecgListMixin],
- components: {
- OptimizerRoleInfoModal
- },
- data () {
- return {
- description: '优化师角色关系表管理页面',
- // 表头
- columns: [
- {
- title: '部门代码',
- align:"center",
- dataIndex: 'orgCode'
- },
- {
- title: '角色类型',
- align:"center",
- dataIndex: 'type'
- },
- {
- title: '用户名称',
- align:"center",
- dataIndex: 'userId'
- },
- {
- title: '归属人名称',
- align:"center",
- dataIndex: 'belongerId'
- },
- {
- title: '操作',
- dataIndex: 'action',
- align:"center",
- scopedSlots: { customRender: 'action' },
- }
- ],
- url: {
- list: "/ctop/optimizerRoleInfo/list",
- delete: "/ctop/optimizerRoleInfo/delete",
- deleteBatch: "/ctop/optimizerRoleInfo/deleteBatch",
- exportXlsUrl: "ctop/optimizerRoleInfo/exportXls",
- importExcelUrl: "ctop/optimizerRoleInfo/importExcel",
- },
- }
- },
- computed: {
- importExcelUrl: function(){
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
- }
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- @import '~@assets/less/common.less'
- </style>
|