| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <PatrolSearch @search="reload" ruleType="0"> </PatrolSearch>
- <ele-pro-table
- ref="tableRef"
- row-key="id"
- :columns="columns"
- :datasource="datasource"
- :cache-key="cacheKeyUrl"
- autoAmendPage
- >
- <template v-slot:toolbar>
- <el-button
- type="primary"
- size="mini"
- icon="el-icon-plus"
- @click="openEdit('add')"
- >新建</el-button
- >
- </template>
- <template v-slot:code="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="openEdit('detail', row)"
- >{{ row.code }}
- </el-link>
- </template>
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit('edit', row)"
- >
- 修改
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此条数据吗?"
- @confirm="deleteRow(row)"
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- </ele-pro-table>
- </el-card>
- <programRulesDialog
- ref="programRulesDialogRef"
- @reload="reload"
- ></programRulesDialog>
- </div>
- </template>
- <script>
- import dictMixins from '@/mixins/dictMixins';
- import tableColumnsMixin from '@/mixins/tableColumnsMixin';
- import {
- recordrulesPlanConfigPage,
- recordrulesPlanConfigDelete
- } from '@/api/recordrules/index';
- import PatrolSearch from './components/patrol-search.vue';
- import programRulesDialog from './components/programRulesDialog.vue';
- export default {
- mixins: [dictMixins, tableColumnsMixin],
- components: {
- PatrolSearch,
- programRulesDialog
- },
- data() {
- return {
- columns: [
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '计划配置单号',
- align: 'center',
- minWidth: 130,
- slot: 'code'
- },
- {
- prop: 'name',
- label: '计划配置名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'ruleName',
- label: '记录规则名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (row) => {
- return row.list.map((i) => i.ruleName).join(',');
- }
- },
- {
- prop: '',
- label: '记录部门',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (row) => {
- if (row.type == 0) {
- return row.executeUsers.map((i) => i.groupName).join(',');
- }
- return '';
- }
- },
- {
- prop: '',
- label: '负责人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (row) => {
- if (row.type == 0) {
- return row.executeUsers.map((i) => i.userName).join(',');
- }
- return '';
- }
- },
- {
- prop: 'executeUsers',
- label: '班组',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (row) => {
- if (row.type == 1) {
- return row.executeUsers.map((i) => i.teamName).join(',');
- }
- return '';
- }
- },
- {
- prop: '',
- label: '记录对象',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (row) => {
- return row.list
- .map((i) => i.workshops.map((i) => i.workshopName))
- .flat()
- .join(',');
- }
- },
- {
- prop: 'autoOrder',
- label: '自动派单',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (row) => {
- return row.autoOrder ? '是' : '否';
- }
- },
- {
- prop: 'status',
- label: '状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110,
- formatter: (row) => {
- return row.status ? '开启' : '关闭';
- }
- },
- {
- prop: 'createUserName',
- label: '创建人',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 220,
- align: 'center',
- resizable: false,
- fixed: 'right',
- slot: 'action',
- showOverflowTooltip: true
- }
- ],
- cacheKeyUrl: 'mes-211191938-record-plan-index'
- };
- },
- computed: {},
- methods: {
- // 刷新表格
- reload(where = {}) {
- this.$refs.tableRef.reload({
- where
- });
- },
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- // 参数
- const body = {
- ...where,
- ...order,
- pageNum: page,
- size: limit
- };
- return this.getList(body);
- },
- async getList(body) {
- const data = await recordrulesPlanConfigPage(body);
- data.list = data.list.map((item) => {
- // children 改名
- item.list = item.children;
- delete item.children;
- return item;
- });
- return data;
- },
- search(where) {
- this.reload(where);
- },
- openEdit(type, data) {
- console.log(type);
- this.$refs.programRulesDialogRef.open(type, data);
- },
- async deleteRow(row) {
- await recordrulesPlanConfigDelete([row.id]);
- this.$message.success('删除成功');
- this.reload();
- }
- }
- };
- </script>
- <style></style>
|