| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <search-table @search="reload"></search-table>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- height="calc(100vh - 325px)"
- full-height="calc(100vh - 116px)"
- tool-class="ele-toolbar-form"
- :selection.sync="selection"
- :page-size="20"
- @columns-change="handleColumnChange"
- :cache-key="cacheKeyUrl"
- :response="{
- dataName: 'records',
- countName: 'total'
- }"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="handleAddOrEdit('', 'add')"
- >
- 新建
- </el-button>
- </template>
- <!-- 操作 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="handleAddOrEdit(row, 'edit')"
- >
- 修改
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="submit(row)"
- v-if="row.reviewStatus == 0 || row.reviewStatus == 3"
- >
- 提交
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此信息吗?"
- @confirm="remove([row.id])"
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false" icon="el-icon-delete">
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- <template v-slot:code="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="handleAddOrEdit(row, 'view')"
- >
- {{ row.code }}
- </el-link>
- </template>
- </ele-pro-table>
- </el-card>
- <add-or-edit-dialog
- ref="addOrEditDialogRef"
- @done="reload"
- ></add-or-edit-dialog>
- <process-submit-dialog
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- v-if="processSubmitDialogFlag"
- ref="processSubmitDialogRef"
- @reload="reload"
- :isNotNeedProcess="false"
- ></process-submit-dialog>
- </div>
- </template>
- <script>
- import tabMixins from '@/mixins/tableColumnsMixin';
- import addOrEditDialog from './components/addOrEditDialog.vue';
- import searchTable from './components/searchTable.vue';
- // import { getList, del } from '@/api/marketManagem/index';
- import processSubmitDialog from '@/components/processSubmitDialog/processSubmitDialog.vue';
- import {
- getTableList,
- deleteList
- } from '@/api/productionScheduling/productionShift';
- export default {
- mixins: [tabMixins],
- components: {
- processSubmitDialog,
- addOrEditDialog,
- searchTable
- },
- data() {
- return {
- // 加载状态
- loading: false,
- delVisible: false,
- selection: [],
- processSubmitDialogFlag: false,
- cacheKeyUrl: 'main-productionScheduling-productionShift-index',
- columns: [
- // {
- // width: 45,
- // type: 'selection',
- // columnKey: 'selection',
- // align: 'center',
- // selectable: (row, index) => {
- // return row.reviewStatus != 1 && row.reviewStatus != 2;
- // }
- // },
- {
- width: 60,
- label: '序号',
- type: 'index',
- columnKey: 'index',
- align: 'center'
- },
- {
- minWidth: 180,
- prop: 'code',
- label: '班次编码',
- align: 'center',
- slot: 'code',
- showOverflowTooltip: true
- },
- {
- minWidth: 180,
- prop: 'shiftName',
- label: '班次名称',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- minWidth: 180,
- prop: 'factoryVos',
- label: '所属工厂',
- align: 'center',
- formatter: (row, column) => {
- if(row.factoryVos){
- return row.factoryVos.map(item => item.factoryName).join(',')
- }
- },
- showOverflowTooltip: true
- },
- {
- minWidth: 180,
- prop: 'attendanceStartTime',
- label: '出勤开始时间',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- minWidth: 130,
- prop: 'attendanceEndTime',
- label: '出勤结束时间',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- minWidth: 180,
- prop: 'totalWorkingMinutes',
- label: '工作总时长(分钟)',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- minWidth: 200,
- prop: 'restDurationMinutes',
- label: '休息时长(分钟)',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- minWidth: 150,
- prop: 'status',
- label: '状态',
- align: 'center',
- formatter: (row, column) => {
- return row.status == 0 ? '启用' : '禁用';
- },
- showOverflowTooltip: true
- },
- {
- minWidth: 100,
- prop: 'updateUserName',
- label: '设置人',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- minWidth: 150,
- prop: 'updateTime',
- label: '设置时间',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 200,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true,
- fixed: 'right'
- }
- ]
- };
- },
- computed: {
- columns() {
- return [];
- }
- },
- created() {},
- methods: {
- //新增、修改
- handleAddOrEdit(row = {}, type) {
- this.$nextTick(() => {
- this.$refs.addOrEditDialogRef.open(row, type);
- });
- },
- /* 表格数据源 */
- datasource({ page, limit, where, order }) {
- return getTableList({
- pageNum: page,
- size: limit,
- ...where
- });
- },
- submit(res) {
- this.processSubmitDialogFlag = true;
- this.$nextTick(() => {
- let params = {
- businessId: res.id,
- businessKey: 'market_management_approve',
- formCreateUserId: res.createUserId,
- pcHandle: '/bpm/handleTask/components/marketManagem/submit.vue',
- pcView: '/bpm/handleTask/components/marketManagem/view.vue',
- variables: {
- businessCode: res.code,
- businessName: res.name,
- businessType: res.type
- }
- };
- this.$refs.processSubmitDialogRef.init(params);
- });
- },
- /* 刷新表格 */
- reload(where = {}) {
- this.$refs.table.reload({ page: 1, where });
- },
- remove(row) {
- del(row).then((res) => {
- this.$message.success('删除成功!');
- this.reload();
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- :deep(.el-link--inner) {
- margin-left: 0px !important;
- }
- .sys-organization-list {
- height: calc(100vh - 264px);
- box-sizing: border-box;
- border-width: 1px;
- border-style: solid;
- overflow: auto;
- }
- .sys-organization-list :deep(.el-tree-node__content) {
- height: 40px;
- & > .el-tree-node__expand-icon {
- margin-left: 10px;
- }
- }
- </style>
|