123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <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.projectName"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="广告主名称">
- <a-input placeholder="请输入广告主名称" v-model="queryParam.advertiserName"></a-input>
- </a-form-item>
- </a-col>
- <template>
- <a-col :md="6" :sm="8">
- <a-form-item label="负责人">
- <a-input placeholder="请输入负责人" v-model="queryParam.responsible"></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>
- <!-- <a @click="handleToggleSearch" style="margin-left: 8px">
- {{ toggleSearchStatus ? '收起' : '展开' }}
- <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
- </a> -->
- </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="maxBid" slot-scope="text">{{ text / 1000 }}</span>
- <span slot="action" slot-scope="text, record">
- <a @click="handleEdit(record)">编辑</a>
- <a-divider type="vertical" />
- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
- <a>删除</a>
- </a-popconfirm>
- </span>
- </a-table>
- </div>
- <!-- table区域-end -->
- <!-- 表单区域 -->
- <project-modal ref="modalForm" @ok="modalFormOk"></project-modal>
- </a-card>
- </template>
- <script>
- import ProjectModal from './modules/ProjectModal'
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- export default {
- name: 'ProjectList',
- mixins: [JeecgListMixin],
- components: {
- ProjectModal
- },
- data() {
- return {
- description: '项目管理页面',
- // 表头
- columns: [
- {
- title: '项目名称',
- align: 'center',
- dataIndex: 'projectName'
- },
- {
- title: '广告主名称',
- align: 'center',
- dataIndex: 'advertiserName'
- },
- {
- title: '最高出价',
- align: 'center',
- dataIndex: 'maxBid',
- scopedSlots: { customRender: 'maxBid' }
- },
- {
- title: '负责人',
- align: 'center',
- dataIndex: 'responsibleName'
- },
- {
- title: '操作',
- dataIndex: 'action',
- align: 'center',
- scopedSlots: { customRender: 'action' }
- }
- ],
- url: {
- list: '/ctop/project/list',
- delete: '/ctop/project/delete',
- deleteBatch: '/ctop/project/deleteBatch',
- exportXlsUrl: 'ctop/project/exportXls',
- importExcelUrl: 'ctop/project/importExcel'
- }
- }
- },
- computed: {
- importExcelUrl: function() {
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
- }
- },
- methods: {}
- }
- </script>
- <style scoped>
- @import '~@assets/less/common.less';
- </style>
|