|
|
@@ -4,316 +4,360 @@
|
|
|
<!-- 搜索表单 -->
|
|
|
<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">
|
|
|
+ <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)">新增</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-plus"
|
|
|
+ class="ele-btn-icon"
|
|
|
+ @click="openEdit(null)"
|
|
|
+ >新增</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
|
|
|
+ >
|
|
|
</template>
|
|
|
|
|
|
-
|
|
|
<template v-slot:code="{ row }">
|
|
|
- <el-link type="primary" :underline="false" @click="openDetail(row)"> {{ row.code }}</el-link>
|
|
|
+ <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 ? '质检' : '' }}
|
|
|
+ {{
|
|
|
+ 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)">
|
|
|
+ <el-link
|
|
|
+ type="primary"
|
|
|
+ :underline="false"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="openEdit(row)"
|
|
|
+ >
|
|
|
修改
|
|
|
</el-link>
|
|
|
|
|
|
-
|
|
|
- <el-link type="primary" :underline="false" icon="el-icon-document" @click="openHistory(row)">
|
|
|
+ <el-link
|
|
|
+ type="primary"
|
|
|
+ :underline="false"
|
|
|
+ icon="el-icon-document"
|
|
|
+ @click="openHistory(row)"
|
|
|
+ >
|
|
|
历史版本
|
|
|
</el-link>
|
|
|
|
|
|
- <el-popconfirm v-if="row.status != 1" class="ele-action" title="确定要删除当前工序吗?" @confirm="remove(row)">
|
|
|
+ <el-popconfirm
|
|
|
+ v-if="row.status != 1"
|
|
|
+ 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" @done="reload" :isUpdate="isUpdate" ref="userEdit" />
|
|
|
-
|
|
|
-
|
|
|
+ <user-edit
|
|
|
+ :visible.sync="showEdit"
|
|
|
+ :data="current"
|
|
|
+ @done="reload"
|
|
|
+ ref="userEdit"
|
|
|
+ />
|
|
|
|
|
|
<!-- 历史版本弹框 -->
|
|
|
<historyModal ref="historyRefs"></historyModal>
|
|
|
|
|
|
- <UserDetail :visible.sync="detailEdit" :data="current" @close="detailEdit = false" ref="UserDetailRef"></UserDetail>
|
|
|
-
|
|
|
+ <UserDetail
|
|
|
+ :visible.sync="detailEdit"
|
|
|
+ :data="current"
|
|
|
+ @close="detailEdit = false"
|
|
|
+ ref="UserDetailRef"
|
|
|
+ ></UserDetail>
|
|
|
</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';
|
|
|
-export default {
|
|
|
- name: 'technologyRoute',
|
|
|
- mixins: [tabMixins],
|
|
|
- components: {
|
|
|
- UserSearch,
|
|
|
- UserEdit,
|
|
|
- UserDetail,
|
|
|
- historyModal
|
|
|
- },
|
|
|
- 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: '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: 'factoriesName',
|
|
|
- label: '所属工厂',
|
|
|
- align: 'center',
|
|
|
- showOverflowTooltip: true
|
|
|
- },
|
|
|
-
|
|
|
- {
|
|
|
- align: 'center',
|
|
|
- prop: 'createTime',
|
|
|
- label: '创建时间',
|
|
|
- showOverflowTooltip: true,
|
|
|
- minWidth: 110
|
|
|
- },
|
|
|
- {
|
|
|
- columnKey: 'action',
|
|
|
- label: '操作',
|
|
|
- width: 220,
|
|
|
- align: 'left',
|
|
|
- resizable: false,
|
|
|
- slot: 'action',
|
|
|
-
|
|
|
- }
|
|
|
- ],
|
|
|
-
|
|
|
- // 表格选中数据
|
|
|
- selection: [],
|
|
|
- // 当前编辑数据
|
|
|
- current: null,
|
|
|
- // 是否显示编辑弹窗
|
|
|
- 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)
|
|
|
+ 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';
|
|
|
+ export default {
|
|
|
+ name: 'technologyRoute',
|
|
|
+ mixins: [tabMixins],
|
|
|
+ components: {
|
|
|
+ UserSearch,
|
|
|
+ UserEdit,
|
|
|
+ UserDetail,
|
|
|
+ historyModal
|
|
|
},
|
|
|
- /* 表格数据源 */
|
|
|
- async datasource({ page, limit, where, order }) {
|
|
|
- const res = await route.list({
|
|
|
- ...where,
|
|
|
- ...order,
|
|
|
- pageNum: page,
|
|
|
- size: limit
|
|
|
- });
|
|
|
- return res;
|
|
|
+ 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: '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: 'factoriesName',
|
|
|
+ label: '所属工厂',
|
|
|
+ align: 'center',
|
|
|
+ showOverflowTooltip: true
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ align: 'center',
|
|
|
+ prop: 'createTime',
|
|
|
+ label: '创建时间',
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ minWidth: 110
|
|
|
+ },
|
|
|
+ {
|
|
|
+ columnKey: 'action',
|
|
|
+ label: '操作',
|
|
|
+ width: 220,
|
|
|
+ align: 'left',
|
|
|
+ resizable: false,
|
|
|
+ slot: 'action'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+
|
|
|
+ // 表格选中数据
|
|
|
+ selection: [],
|
|
|
+ // 当前编辑数据
|
|
|
+ current: null,
|
|
|
+ // 是否显示编辑弹窗
|
|
|
+ showEdit: false,
|
|
|
+ detailEdit: false,
|
|
|
+
|
|
|
+ statusList: [
|
|
|
+ { label: '草稿', value: -1 },
|
|
|
+ { label: '失效', value: 0 },
|
|
|
+ { label: '生效', value: 1 }
|
|
|
+ ],
|
|
|
+ loading: false,
|
|
|
+ cacheKeyUrl: 'fb92f8df-technology-route'
|
|
|
+ };
|
|
|
},
|
|
|
-
|
|
|
- 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) {
|
|
|
- this.isUpdate = true;
|
|
|
- } else {
|
|
|
- this.isUpdate = false;
|
|
|
+ computed: {
|
|
|
+ // 是否开启响应式布局
|
|
|
+ clientEnvironmentId() {
|
|
|
+ return this.$store.state.user.info.clientEnvironmentId;
|
|
|
}
|
|
|
-
|
|
|
- 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);
|
|
|
- });
|
|
|
- },
|
|
|
- /* 批量删除 */
|
|
|
- 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(() => { });
|
|
|
- },
|
|
|
-
|
|
|
- // 刷新数据
|
|
|
- refreshData() {
|
|
|
- this.loading = true;
|
|
|
- route.syncRouting().then(res => {
|
|
|
- if (res == '0') {
|
|
|
- this.loading = false;
|
|
|
- this.$message.success('数据刷新成功!')
|
|
|
- this.reload()
|
|
|
+ methods: {
|
|
|
+ selectType(value) {
|
|
|
+ let where = {};
|
|
|
+ if (value.status.length > 0) {
|
|
|
+ where['status'] = value.status[0];
|
|
|
}
|
|
|
- })
|
|
|
- .catch((e) => {
|
|
|
- this.loading = false;
|
|
|
+ this.reload(where);
|
|
|
+ },
|
|
|
+ /* 表格数据源 */
|
|
|
+ async datasource({ page, limit, where, order }) {
|
|
|
+ const res = await route.list({
|
|
|
+ ...where,
|
|
|
+ ...order,
|
|
|
+ pageNum: page,
|
|
|
+ size: limit
|
|
|
});
|
|
|
- },
|
|
|
-
|
|
|
- openDetail(row) {
|
|
|
- this.current = row
|
|
|
- //
|
|
|
-
|
|
|
- // this.$refs.userEdit.datasource(this.current.id);
|
|
|
- this.detailEdit = true;
|
|
|
- },
|
|
|
+ return res;
|
|
|
+ },
|
|
|
+
|
|
|
+ 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);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /* 批量删除 */
|
|
|
+ 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(() => {});
|
|
|
+ },
|
|
|
+
|
|
|
+ // 刷新数据
|
|
|
+ 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>
|