| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- <template>
- <div class="ele-body">
- <el-card shadow="never">
- <!-- 搜索表单 -->
- <user-search @search="reload" />
- <!-- 数据表格 -->
- <ele-pro-table ref="table" :columns="columns" :datasource="datasource" :selection.sync="selection" row-key="id">
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-button size="small" type="primary" icon="el-icon-plus" class="ele-btn-icon" @click="openEdit()">
- 新建
- </el-button>
- <el-button size="small" type="danger" icon="el-icon-delete" class="ele-btn-icon" @click="removeBatch">
- 删除
- </el-button>
- <el-button
- size="small"
- type="primary"
- icon="el-icon-download"
- class="ele-btn-icon"
- plain
- @click="uploadFile()"
- >
- 导入
- </el-button>
- </template>
- <template v-slot:name="{ row }">
- <!-- <el-link v-if="row.type == 2" type="primary" :underline="false" @click="sampleParam(row)">
- {{ row.name }}
- </el-link>
- <span v-else> {{ row.name }}</span> -->
- {{ row.name }}
- </template>
- <!-- 状态列 -->
- <template v-slot:type="{ row }">
- {{ typeLabel(row.type) }}
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link type="primary" :underline="false" icon="el-icon-edit" @click="openEdit(row)">
- 修改
- </el-link>
- <!-- <el-link type="primary" :underline="false" icon="el-icon-setting" @click="openSetting(row)">
- 配置工艺参数
- </el-link> -->
- <el-popconfirm class="ele-action" title="确定要删除当前工序吗?" @confirm="remove(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>
- <!-- 编辑弹窗 -->
- <user-edit :visible.sync="showEdit" :data="current" :controlList="controlList" @done="reload" ref="userEdit"
- :typeList="typeList" />
- <!-- 配置工艺参数 -->
- <user-setting :visible.sync="showSetting" :data="current" ref="userSetting" />
- <SampleParam v-if="sampleShow" :taskId="taskId" @close="close"></SampleParam>
- <importDialog :defModule="moudleName" ref="importDialogRef" @success="reload" />
- </div>
- </template>
- <script>
- import UserSearch from './components/user-search.vue';
- import UserEdit from './components/user-edit.vue';
- import UserSetting from './components/user-setting.vue';
- import SampleParam from './components/sampleParam.vue'
- import producetask from '@/api/technology/production';
- import control from '@/api/technology/control';
- import importDialog from "@/components/upload/import-dialog.vue";
- export default {
- name: 'technologyProduction',
- components: {
- UserSearch,
- UserEdit,
- UserSetting,
- SampleParam,
- importDialog
- },
- data() {
- return {
- moudleName : "mainProduceTask",
- // 表格列配置
- columns: [
- {
- columnKey: 'selection',
- type: 'selection',
- width: 45,
- align: 'center',
- fixed: 'left'
- },
- {
- prop: 'code',
- label: '工序编码',
- // sortable: 'custom',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110
- },
- {
- slot: 'name',
- label: '工序名称',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110
- },
- {
- slot: 'type',
- label: '工序类型',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110
- },
- {
- align: 'center',
- prop: 'controlName',
- label: '工序控制码',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'workCenterName',
- label: '所属工作中心',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- prop: 'sort',
- label: '排序',
- align: 'center',
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 260,
- align: 'center',
- resizable: false,
- slot: 'action',
- showOverflowTooltip: true
- }
- ],
- // 表格选中数据
- selection: [],
- // 当前编辑数据
- current: null,
- // 是否显示编辑弹窗
- showEdit: false,
- // 是否显示参数弹窗
- showSetting: false,
- controlList: [],
- typeList: [
- {
- value: 1,
- label: '普通工序'
- },
- // {
- // value: 2,
- // label: '抽样质检'
- // },
-
- {
- value: 3,
- label: '抽样质检'
- }, {
- value: 4,
- label: '包装工序'
- },
- {
- value: 6,
- label: '全量质检'
- },
- {
- value: 7,
- label: '生产准备'
- },
- ],
- sampleShow: false,
- taskId: null
- };
- },
- methods: {
- typeLabel(type) {
- return this.typeList.find(m => m.value == type) && this.typeList.find(m => m.value == type).label
- },
- /*配置工艺参数 */
- openSetting(row) {
- this.current = row;
- this.showSetting = true;
- },
- /* 表格数据源 */
- async datasource({ page, limit, where, order }) {
- const res = await producetask.list({
- ...where,
- ...order,
- pageNum: page,
- size: limit
- });
- return res;
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where: where });
- },
- /* 打开编辑弹窗 */
- openEdit(row) {
- this.getControlList()
- this.current = row;
- this.showEdit = true;
- this.$refs.userEdit.$refs.form &&
- this.$refs.userEdit.$refs.form.clearValidate();
- },
- getControlList() {
- const params = {
- pageNum: 1, size: -1
- }
- control.list().then(res => {
- this.controlList = res.list
- })
- },
- /* 删除 */
- remove(row) {
- const loading = this.$loading({ lock: true });
- producetask
- .delete([row.id])
- .then((msg) => {
- loading.close();
- this.$message.success('删除' + msg);
- this.reload();
- })
- .catch((e) => {
- loading.close();
- // this.$message.error(e.message);
- });
- },
- /* 批量删除 */
- removeBatch() {
- if (!this.selection.length) {
- this.$message.error('请至少选择一条数据');
- return;
- }
- this.$confirm('确定要删除选中的工序吗?', '提示', {
- type: 'warning'
- })
- .then(() => {
- const loading = this.$loading({ lock: true });
- producetask
- .delete(this.selection.map((d) => d.id))
- .then((msg) => {
- loading.close();
- this.$message.success('删除' + msg);
- this.reload();
- })
- .catch((e) => {
- loading.close();
- // this.$message.error(e.message);
- });
- })
- .catch(() => { });
- },
- sampleParam(row) {
- this.taskId = row.id
- this.sampleShow = true
- },
- close(done) {
- this.sampleShow = false
- },
- uploadFile () {
- this.$refs.importDialogRef.open();
- }
- }
- };
- </script>
|