| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- <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"
- :page-size="this.$store.state.tablePageSize"
- @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(null)"
- v-if="$hasPermission('main:producerouting:save')"
- >新增</el-button
- >
- <el-button
- size="small"
- type="primary"
- icon="el-icon-refresh-left"
- class="ele-btn-icon"
- @click="refreshData"
- :loading="loading"
- v-if="clientEnvironmentId == 1"
- >刷新</el-button
- >
- <el-button
- size="small"
- type="primary"
- icon="el-icon-download"
- class="ele-btn-icon"
- @click="importDialog"
- v-if="$hasPermission('main:producerouting:import')"
- >
- 导入
- </el-button>
- </template>
- <template v-slot:code="{ row }">
- <el-link type="primary" :underline="false" @click="openDetail(row)">
- {{ row.code }}</el-link
- >
- </template>
- <!-- 状态列 -->
- <template v-slot:status="{ row }">
- {{ checkStatus(row) }}
- </template>
- <template v-slot:routeType="{ row }">
- {{
- row.routeType == 2
- ? '委外'
- : row.routeType == 1
- ? '生产'
- : row.routeType == 3
- ? '质检'
- : ''
- }}
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="openEdit(row)"
- v-if="
- [0, 3].includes(row.approvalStatus) &&
- $hasPermission('main:producerouting:update')
- "
- >
- 修改
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="approve(row)"
- v-if="
- [0, 3].includes(row.approvalStatus) &&
- $hasPermission('main:producerouting:update')
- "
- >
- 发布
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-finished"
- @click="alteration(row)"
- v-if="row.approvalStatus == 2"
- >
- 变更
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-document"
- @click="openHistory(row)"
- >
- 历史版本
- </el-link>
- <el-popconfirm
- v-if="
- row.status != 1 &&
- [0, 3].includes(row.approvalStatus) &&
- $hasPermission('main:producerouting:delete')
- "
- 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>
- <importDialog
- :defModule="'producerouting'"
- ref="importDialogRef"
- :fileUrl="'/main/producerouting/downLoadTemplate'"
- fileName="工艺路线模板"
- @success="reload"
- />
- <!-- 编辑弹窗 -->
- <user-edit
- :visible.sync="showEdit"
- :data="current"
- @done="reload"
- :isUpdate="isUpdate"
- ref="userEdit"
- />
- <!-- 历史版本弹框 -->
- <historyModal ref="historyRefs"></historyModal>
- <UserDetail
- :visible.sync="detailEdit"
- :data="current"
- @close="detailEdit = false"
- ref="UserDetailRef"
- ></UserDetail>
- <process-submit-dialog
- api-fun-name="purchaseinquiryStatusAPI"
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- v-if="processSubmitDialogFlag"
- :isNotNeedProcess="true"
- ref="processSubmitDialogRef"
- @reload="reload"
- :apiFunName="'produceroutingRelease'"
- ></process-submit-dialog>
- </div>
- </template>
- <script>
- import tabMixins from '@/mixins/tableColumnsMixin';
- import UserSearch from './components/user-search.vue';
- import UserEdit from './components/user-edit.vue';
- import UserDetail from './components/user-detail.vue';
- import historyModal from './components/historyModal.vue';
- import route from '@/api/technology/route';
- import processSubmitDialog from '@/components/processSubmitDialog/processSubmitDialog.vue';
- import { reviewStatus } from '@/enum/dict';
- import importDialog from '@/components/upload/import-dialogNew.vue';
- export default {
- name: 'technologyRoute',
- mixins: [tabMixins],
- components: {
- UserSearch,
- UserEdit,
- UserDetail,
- historyModal,
- processSubmitDialog,
- importDialog
- },
- data() {
- return {
- isUpdate: false,
- // 表格列配置
- columns: [
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- // {
- // slot: 'routeType',
- // label: '类型',
- // align: 'center',
- // showOverflowTooltip: true
- // },
- {
- prop: 'sort',
- label: '排序',
- showOverflowTooltip: true,
- align: 'center',
- width: 110
- },
- {
- prop: 'code',
- label: '工艺路线编码',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110,
- slot: 'code'
- },
- {
- prop: 'name',
- label: '工艺路线名称',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110
- },
- {
- prop: 'version',
- label: '工艺路线版本',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 110
- },
- // {
- // prop: 'produceVersionName',
- // label: '工艺类型',
- // align: 'center',
- // showOverflowTooltip: true
- // },
- {
- //修改此prop名称时,请同步修改columnKey属性和下方selectType方法
- prop: 'status',
- label: '状态',
- align: 'center',
- slot: 'status',
- showOverflowTooltip: true,
- minWidth: 110,
- filters: [
- { text: '草稿', value: -1 },
- { text: '失效', value: 0 },
- { text: '生效', value: 1 }
- ],
- filterMultiple: false,
- columnKey: 'status'
- },
- {
- prop: 'approvalStatus',
- label: '审核状态',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100,
- formatter: (_row, _column, cellValue) => {
- return reviewStatus[_row.approvalStatus];
- }
- },
- {
- prop: 'factoriesName',
- label: '所属工厂',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- align: 'center',
- prop: 'createTime',
- label: '创建时间',
- showOverflowTooltip: true,
- minWidth: 110
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 280,
- align: 'left',
- resizable: false,
- slot: 'action'
- }
- ],
- // 表格选中数据
- selection: [],
- // 当前编辑数据
- current: null,
- processSubmitDialogFlag: false,
- // 是否显示编辑弹窗
- showEdit: false,
- detailEdit: false,
- statusList: [
- { label: '草稿', value: -1 },
- { label: '失效', value: 0 },
- { label: '生效', value: 1 }
- ],
- loading: false,
- cacheKeyUrl: 'fb92f8df-technology-route'
- };
- },
- computed: {
- // 是否开启响应式布局
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- }
- },
- methods: {
- selectType(value) {
- let where = {};
- if (value.status.length > 0) {
- where['status'] = value.status[0];
- }
- this.reload(where);
- },
- /* 表格数据源 */
- async datasource({ page, limit, where, order }) {
- const res = await route.list({
- ...where,
- ...order,
- pageNum: page,
- size: limit
- });
- return res;
- },
- importDialog() {
- this.$refs.importDialogRef.open();
- },
- checkStatus(row) {
- let obj = this.statusList.find((it) => it.value == row.status);
- return obj.label;
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ page: 1, where: where });
- },
- /* 打开编辑弹窗 */
- openEdit(row) {
- this.current = row;
- this.showEdit = true;
- if (row?.id) {
- this.$refs.userEdit.isUpdate = true;
- } else {
- this.$refs.userEdit.isUpdate = false;
- }
- this.$refs.userEdit.$refs.form &&
- this.$refs.userEdit.$refs.form.clearValidate();
- },
- /* 打开历史版本 */
- openHistory(row) {
- this.$refs.historyRefs.open(row);
- },
- /* 删除 */
- remove(row) {
- const loading = this.$loading({ lock: true });
- route
- .delete(row.id)
- .then((msg) => {
- loading.close();
- this.$message.success('删除' + msg);
- this.reload();
- })
- .catch((e) => {
- loading.close();
- // this.$message.error(e.message);
- });
- },
- //变更
- alteration(row) {
- console.log();
- let param = {
- id: row.id
- };
- route
- .taskinstanceChange(param)
- .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(() => {});
- },
- approve(res) {
- this.processSubmitDialogFlag = true;
- this.$nextTick(() => {
- let params = {
- businessId: res.id,
- businessKey: 'routing_approve',
- formCreateUserId: res.createUserId,
- routingId: res.id,
- variables: {
- businessCode: res.code,
- businessName: res.name,
- businessType: ' 版本:' + res.version
- }
- };
- this.$refs.processSubmitDialogRef.init(params);
- });
- },
- // 刷新数据
- refreshData() {
- this.loading = true;
- route
- .syncRouting()
- .then((res) => {
- if (res == '0') {
- this.loading = false;
- this.$message.success('数据刷新成功!');
- this.reload();
- }
- })
- .catch((e) => {
- this.loading = false;
- });
- },
- openDetail(row) {
- this.current = row;
- //
- // this.$refs.userEdit.datasource(this.current.id);
- this.detailEdit = true;
- }
- }
- };
- </script>
|