| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- <template>
- <div class="ele-body">
- <el-card shadow="never" v-loading="loading">
- <materialPlan-search
- @search="reload"
- :statusOpt="statusOpt"
- :activeName="activeName"
- ref="searchRef"
- >
- </materialPlan-search>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :initLoad="false"
- :columns="columns"
- :datasource="datasource"
- cache-key="`materialPlanTable`"
- >
- <template v-slot:toolbar>
- <el-dropdown trigger="click" @command="handleClick">
- <el-link type="primary" icon="el-icon-plus">创建采购计划</el-link>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="1">来源销售订单</el-dropdown-item>
- <el-dropdown-item command="2">来源生产计划</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </template>
- <template v-slot:status="{ row }">
- <span :class="{ 'ele-text-danger': row.status == 3 }">
- {{ statusFormatter(row.status) }}
- </span>
- </template>
- <template v-slot:orderType="{ row }">
- <span>
- {{
- row.orderType == 1
- ? '销售订单'
- : row.orderType == 2
- ? '生产计划'
- : ''
- }}
- </span>
- </template>
- <template v-slot:approvalStatus="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="handleDetails(row)"
- >
- {{ approvalStatusFormatter(row.approvalStatus) }}
- </el-link>
- </template>
- <!-- 操作列 -->
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- :underline="false"
- icon="el-icon-edit"
- @click="handleEdit('edit', row)"
- >
- 修改计划
- </el-link>
- <el-link
- @click="handleDel(row)"
- type="danger"
- :underline="false"
- icon="el-icon-delete"
- >
- 删除
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- @click="todo(row)"
- v-if="row.approvalStatus == 0 || row.approvalStatus == 3"
- >
- 提交
- </el-link>
- </template>
- </ele-pro-table>
- </el-card>
- <planEditDialog ref="planEditDialogRef" @success="reload" />
- <producePlan ref="produceRef" @success="reload"></producePlan>
- <detail ref="detailRef"></detail>
- </div>
- </template>
- <script>
- import materialPlanSearch from './components/materialPlan-search.vue';
- import planEditDialog from './components/plan-edit-dialog.vue';
- import producePlan from './components/producePlan.vue';
- import detail from './components/detail.vue';
- import { getList, del, submit } from '@/api/materialPlan/index';
- export default {
- components: {
- planEditDialog,
- materialPlanSearch,
- detail,
- producePlan
- },
- data() {
- return {
- activeName: 'first',
- // 加载状态
- loading: false,
- statusOpt: {
- first: [
- { label: '所有状态', value: null },
- { label: '待排产', value: '1' },
- { label: '待发布', value: '2' },
- { label: '发布失败', value: '3' },
- { label: '已完成', value: '6' }
- ]
- },
- approvalStatusOpt: {
- first: [
- { label: '未提交', value: '0' },
- { label: '审核中', value: '1' },
- { label: '审核通过', value: '2' },
- { label: '审核未通过', value: '3' }
- ]
- }
- };
- },
- computed: {
- // 表格列配置
- columns() {
- return [
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- fixed: 'left'
- },
- {
- slot: 'name',
- prop: 'name',
- label: '计划名称',
- align: 'center'
- },
- {
- prop: 'code',
- label: '计划编号',
- align: 'center'
- },
- {
- prop: 'planStr',
- label: '生产计划编码',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'orderStr',
- label: '销售订单号',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'serialNoStr',
- label: '客户代号',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- columnKey: 'status',
- label: '状态',
- align: 'center',
- slot: 'status',
- action: 'status'
- },
- {
- prop: 'approvalStatus',
- label: '审批状态',
- align: 'center',
- slot: 'approvalStatus',
- action: 'approvalStatus'
- },
- {
- prop: 'orderType',
- label: '来源类型',
- align: 'center',
- slot: 'orderType',
- action: 'orderType'
- },
- {
- prop: 'createUserName',
- label: '创建人',
- align: 'center'
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center'
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 250,
- align: 'center',
- resizable: false,
- fixed: 'right',
- slot: 'action'
- }
- ];
- }
- },
- methods: {
- statusFormatter(status) {
- const obj = this.statusOpt[this.activeName].find(
- (i) => i.value == status
- );
- return obj && obj.label;
- },
- approvalStatusFormatter(status) {
- const obj = this.approvalStatusOpt[this.activeName].find(
- (i) => i.value == status
- );
- return obj && obj.label;
- },
- /* 表格数据源 */
- datasource({ page, limit, where }) {
- where.type = 1;
- return getList({
- pageNum: page,
- size: limit,
- ...where
- });
- },
- handleEdit(type, row) {
- if (row.orderType == 1) {
- this.$refs.planEditDialogRef.open(type, row);
- } else if (row.orderType == 2) {
- this.$refs.produceRef.open(type, row);
- }
- },
- handleDel({ id }) {
- this.$confirm('确认删除当前数据!', '提示').then(async () => {
- await del([id]);
- this.$message.success('删除成功!');
- this.reload();
- });
- },
- handleClick(tab) {
- if (tab == 1) {
- this.$refs.planEditDialogRef.open('add');
- } else if (tab == 2) {
- this.$refs.produceRef.open('add');
- }
- },
- todo(row) {
- submit({ businessId: row.id }).then((res) => {
- if (res) {
- this.$message.success('提交成功!');
- this.reload();
- }
- });
- },
- handleTabChange() {
- this.$refs.searchRef.reset();
- },
- /* 刷新表格 */
- reload(where = {}) {
- if (where.statusList) {
- console.log(where.statusList);
- where.statusList = where.statusList.split(',');
- }
- console.log(44444);
- this.$nextTick(() => {
- this.$refs.table.reload({ page: 1, where });
- });
- },
- handleDetails(row) {
- if (row.approvalStatus == 0) {
- this.$message.info('未提交没有审核流程');
- } else {
- this.$refs.detailRef.open(row.processInstanceId);
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped></style>
|