jiaosong
2023-09-19 9c20f268e0628017d09427989724cdf2a8e9e8e2
1
2
3
4
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
141
142
143
144
145
146
147
<template>
  <TableLayout :permissions="['business:company:query']">
    <!-- 搜索表单 -->
    <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" inline>
      <el-form-item label="名称" prop="name">
        <el-input v-model="searchForm.name" placeholder="请输入名称" @keypress.enter.native="search"></el-input>
      </el-form-item>
      <!-- <el-form-item label="企业简称" prop="shortName">
        <el-input v-model="searchForm.shortName" placeholder="请输入企业简称" @keypress.enter.native="search"></el-input>
      </el-form-item> -->
      <el-form-item label="管理员账号" prop="managerUserName">
        <el-input v-model="searchForm.managerUserName" placeholder="请输入管理员账号" @keypress.enter.native="search"></el-input>
      </el-form-item>
      <el-form-item label="有效期" prop="oepnValidDate">
        <el-date-picker type="daterange" v-model="oepnValidDate" value-format="yyyy-MM-dd" start-placeholder="开始日期"
          end-placeholder="结束日期" @change="selectOepnValidDate" />
      </el-form-item>
      <el-form-item label="状态" prop="status">
        <el-select v-model="searchForm.status" clearable placeholder="请选择" @change="search">
          <el-option label="启用" :value="0"></el-option>
          <el-option label="禁用" :value="1"></el-option>
        </el-select>
      </el-form-item>
      <section>
        <el-button type="primary" @click="search">搜索</el-button>
        <el-button @click="reset">重置</el-button>
      </section>
    </el-form>
    <!-- 表格和分页 -->
    <template v-slot:table-wrap>
      <ul class="toolbar" v-permissions="['business:company:create']">
        <li><el-button type="primary" @click="$refs.operaCompanyWindow.open('新建系统-企业信息表')"
            v-permissions="['business:company:create']">新建</el-button></li>
      </ul>
      <el-table v-loading="isWorking.search" :data="tableData.list" border stripe
        @selection-change="handleSelectionChange">
        <!-- <el-table-column type="selection" width="55" align="center"></el-table-column> -->
        <el-table-column prop="id" label="企业编号" min-width="80px" align="center"></el-table-column>
        <el-table-column prop="name" label="企业名称" min-width="100px" align="center"></el-table-column>
        <el-table-column prop="managerUserName" label="管理员账号" min-width="100px" align="center"></el-table-column>
        <el-table-column prop="linkname" label="联系人" min-width="100px" align="center"></el-table-column>
        <el-table-column prop="linkephone" label="联系人电话" min-width="100px" align="center"></el-table-column>
        <el-table-column prop="oepnValidDate" label="用有效期" min-width="140px" align="center"></el-table-column>
        <el-table-column prop="userNum" label="主播数量限制" min-width="100px" align="center"></el-table-column>
        <el-table-column prop="empUserNum" label="员工数" min-width="100px" align="center"></el-table-column>
        <el-table-column prop="salesmanRealName" label="销售人员" min-width="100px" align="center"></el-table-column>
        <el-table-column prop="status" label="状态" min-width="100px" align="center">
          <template slot-scope="{row}">
            <!-- 0启用 1禁用 -->
            <el-switch :disabled="!containPermissions(['business:company:update'])" v-model="row.status"
              :inactive-value="1" :active-value="0" @change="changeStatus(row)">
            </el-switch>
          </template>
 
        </el-table-column>
        <el-table-column prop="createTime" label="创建时间" min-width="140px" align="center"></el-table-column>
        <el-table-column v-if="containPermissions(['business:company:update', 'business:company:delete'])" label="操作"
          min-width="140" align="center" fixed="right">
          <template slot-scope="{row}">
            <el-button type="text" @click="$refs.operaCompanyWindow.open('编辑企业', row)"
              v-permissions="['business:company:update']">编辑</el-button>
            <el-button type="text" @click="$refs.operaCompanyValidDateWindow.open('调整有效期', row)"
              v-permissions="['business:company:update']">调整有效期</el-button>
            <el-button type="text" @click="deleteById(row)" style="color: red;" v-permissions="['business:company:delete']">删除</el-button>
          </template>
        </el-table-column>
      </el-table>
      <pagination @size-change="handleSizeChange" @current-change="handlePageChange" :pagination="tableData.pagination">
      </pagination>
    </template>
    <!-- 新建/修改 -->
    <OperaCompanyWindow ref="operaCompanyWindow" @success="handlePageChange" />
    <OperaCompanyValidDateWindow ref="operaCompanyValidDateWindow" @success="handlePageChange" />
  </TableLayout>
</template>
 
<script>
import BaseTable from '@/components/base/BaseTable'
import TableLayout from '@/layouts/TableLayout'
import Pagination from '@/components/common/Pagination'
import OperaCompanyWindow from '@/components/business/OperaCompanyWindow'
import OperaCompanyValidDateWindow from '@/components/business/OperaCompanyValidDateWindow'
import { updateById } from '@/api/business/company'
export default {
  name: 'Company',
  extends: BaseTable,
  components: { TableLayout, Pagination, OperaCompanyWindow, OperaCompanyValidDateWindow },
  data() {
    return {
      oepnValidDate: [],
      // 搜索
      searchForm: {
        oepnValidDateStart: '',
        oepnValidDateEnd: '',
        managerUserName: '',
        updateTime: '',
        name: '',
        shortName: '',
        remark: '',
        managerId: '',
        linkname: '',
        linkephone: '',
        creditCode: '',
        userNum: '',
        oepnValidDate: '',
        oepnType: '',
        salesmanId: '',
        status: ''
      }
    }
  },
  created() {
    this.config({
      module: '系统-企业信息表',
      api: '/business/company',
      'field.id': 'id',
      'field.main': 'id'
    })
    this.search()
  },
  methods: {
    selectOepnValidDate(v) {
      [this.searchForm.oepnValidDateStart, this.searchForm.oepnValidDateEnd] = v
    },
    reset() {
      // this.reset()
      this.$refs.searchForm.resetFields()
      this.searchForm.oepnValidDateStart = ''
      this.searchForm.oepnValidDateEnd = ''
      this.oepnValidDate = []
      this.search()
    },
    changeStatus(row) {
      updateById(row)
        .then(() => {
          this.$tip.apiSuccess('更新成功')
        })
        .catch(err => {
          this.$tip.apiFailed(err)
        })
        .finally(() => {
          this.handlePageChange()
        })
    }
  },
}
</script>