| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <search
- ref="search"
- @search="search"
- :options_groupId="dict.groupId"
- :options_factory="dict.factory"
- ></search>
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="datasource"
- :page-size="pageSize"
- @columns-change="handleColumnChange"
- :cache-key="cacheKeyUrl"
- @filter-change="selectType"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-plus"
- class="ele-btn-icon"
- @click="openEdit('add')"
- v-if="$hasPermission('main:factoryworkstation:saveOrUpdate')"
- >
- 添加
- </el-button>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-download"
- class="ele-btn-icon"
- @click="importProfession"
- v-if="$hasPermission('main:factoryworkstation:saveOrUpdate')"
- >
- 导入
- </el-button>
- </template>
- <!-- <template v-slot:workshop="{ row }">
- {{ showWorkshop(row) }}
- </template> -->
- <template v-slot:meterTime="{ row }">
- <div v-if="row.extInfo.meterTime">
- {{ `${row.extInfo.meterTime} ${row.extInfo.meterTimeUnit}/次 ` }}
- </div>
- </template>
- <template v-slot:enabled="{ row }">
- {{ dict.enabled[row.enabled] }}
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit('copy', row)"
- v-if="$hasPermission('main:factoryworkstation:saveOrUpdate')"
- >
- 复制
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit('edit', row)"
- v-if="$hasPermission('main:factoryworkstation:saveOrUpdate')"
- >
- 修改
- </el-link>
- <el-popconfirm
- class="ele-action"
- title="确定要删除此工位吗?"
- @confirm="remove(row)"
- v-if="$hasPermission('main:factoryworkstation:delete')"
- >
- <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>
- <edit ref="edit" @done="done"></edit>
- <importDialog
- ref="importDialogRef"
- :apiUrl="'/main/factoryworkstation/importBatch'"
- :fileUrl="'/main/factoryworkstation/downLoadTemplate'"
- fileName="工位导入模板"
- @success="done"
- />
- </div>
- </template>
- <script>
- import tabMixins from '@/mixins/tableColumnsMixin';
- import search from './components/search.vue';
- import edit from './components/edit.vue';
- import {
- deleteFactoryworkstation,
- getFactoryworkstation,
- getFactoryarea
- } from '@/api/factoryModel';
- import { listOrganizations } from '@/api/system/organization';
- import importDialog from '@/components/upload/import-dialogNew.vue';
- export default {
- mixins: [tabMixins],
- components: {
- search,
- importDialog,
- edit
- },
- data() {
- return {
- columns: [
- {
- width: 45,
- type: 'index',
- columnKey: 'index',
- align: 'center'
- },
- {
- prop: 'code',
- label: '工位编码'
- },
- {
- label: '工位名称',
- prop: 'name'
- },
- {
- label: '责任人',
- prop: 'leaderName',
- slot: 'factory'
- },
- {
- label: '所属区域',
- prop: 'areaName'
- },
- {
- label: '所属工厂',
- prop: 'factoryName'
- },
- {
- label: '所属厂房',
- prop: 'workshopPlanName'
- },
- {
- label: '所属车间',
- prop: 'workshopName'
- },
- {
- label: '所属产线',
- prop: 'productionLineName'
- },
- {
- label: '设备名称',
- prop: 'extInfo.assetName',
- formatter: (_row, _column, cellValue) => {
- return typeof cellValue === 'string' ? cellValue : '';
- }
- },
- {
- label: '设备编码',
- prop: 'extInfo.assetCode',
- formatter: (_row, _column, cellValue) => {
- return typeof cellValue === 'string' ? cellValue : '';
- }
- },
- {
- label: '节拍时间',
- prop: 'extInfo.meterTime',
- slot: 'meterTime'
- },
- {
- //修改此prop名称时,请同步修改columnKey属性和下方selectType方法
- label: '状态',
- prop: 'enabled',
- slot: 'enabled',
- filters: [
- { value: 1, text: '生效' },
- { value: 0, text: '未生效' }
- ],
- filterMultiple: false,
- columnKey: 'enabled'
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 220,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true
- }
- ],
- dict: {
- groupId: [],
- factory: [],
- enabled: {
- 1: '生效',
- 0: '未生效'
- }
- },
- pageSize: this.$store.state.tablePageSize,
- cacheKeyUrl: 'ef00833a-factoryModel-station'
- };
- },
- created() {
- this.getGs();
- this.getFactoryarea();
- },
- methods: {
- selectType(value) {
- let where = {};
- if (value.enabled.length > 0) {
- where['enable'] = value.enabled[0];
- }
- this.search(where);
- },
- datasource({ page, where, limit }) {
- return getFactoryworkstation({
- ...where,
- pageNum: page,
- size: limit
- });
- },
- search(where) {
- this.$refs.table.reload({
- where: where,
- page: 1
- });
- },
- openEdit(type, row) {
- this.$refs.edit.open(type, row);
- },
- // 获取公司数据
- getGs() {
- listOrganizations().then((list) => {
- this.dict.groupId = JSON.parse(JSON.stringify(list));
- });
- },
- // 回显车间
- showWorkshop(row) {
- let result = row.parent.find((n) => n.id == row.parentId);
- if (result) {
- return result.name;
- } else {
- return '';
- }
- },
- // 获取工厂数据
- getFactoryarea() {
- let par = {
- type: 1,
- size: 9999,
- type: 2
- };
- getFactoryarea(par).then((res) => {
- this.dict.factory = res.list;
- });
- },
- importProfession() {
- this.$refs.importDialogRef.open();
- },
- remove(row) {
- deleteFactoryworkstation(row.id)
- .then((message) => {
- this.$message.success(message);
- this.done();
- })
- .catch((e) => {
- this.$message.error(e.message);
- });
- },
- done() {
- this.$refs.search.search();
- }
- }
- };
- </script>
|