|
|
|
@ -66,324 +66,325 @@
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-col style="border-left: 3px solid #dddddd; overflow-y: hidden">
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-form :model="query" label-width="auto" v-show="showSearch" size="mini" class="order-el-form">
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
|
|
|
|
<el-form-item label="当前部门:" class="query-form-item">
|
|
|
|
|
<el-select v-model="query.deptCode" class="width-full" placeholder="请选择" filterable clearable
|
|
|
|
|
@change="changeDept" style="width: 80%"
|
|
|
|
|
>
|
|
|
|
|
<el-option v-for="item in DeptList" :key="item.id" :label="item.name" :value="item.code"/>
|
|
|
|
|
</el-select>
|
|
|
|
|
<!--<el-option v-for="item in " :key="item.id" :label="item.name" :value="item.code"/>-->
|
|
|
|
|
<!-- <deptSelect :value.sync="userQuery.deptCode"-->
|
|
|
|
|
<!-- :changeValue.sync="changeUsers"/>-->
|
|
|
|
|
<!-- <!–<deptSelect :value.sync="query.invCode" :params.sync="filterBadInv" :changeValue.sync="invChange"/>–>-->
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!--<el-col :span="8">-->
|
|
|
|
|
<!-- <el-form-item label="当前部门:" class="query-form-item">-->
|
|
|
|
|
<!-- <deptSelect style="width: 80%" :value.sync="query.deptCode"/>-->
|
|
|
|
|
<!-- <!–<deptSelect :value.sync="query.invCode" :params.sync="filterBadInv" :changeValue.sync="invChange"/>–>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="编码/名称:" class="query-form-item">
|
|
|
|
|
<el-input v-model="query.key" placeholder="请输入编码/工位名称" clearable style="width: 80%">
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="工位状态:" class="query-form-item">
|
|
|
|
|
<el-select v-model="query.workplaceStatus" placeholder="工位状态" clearable style="width: 80%">
|
|
|
|
|
<el-option label="暂停" :value="0"></el-option>
|
|
|
|
|
<el-option label="启用" :value="1"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmit">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="addCargowWorkplace">新增上货工位</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" :row-style="{height: '32px' }"
|
|
|
|
|
highlight-current-row @current-change="handCurrentChange"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="index" label="序号"></el-table-column>
|
|
|
|
|
<el-table-column label="工位编码" prop="workplaceId" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="工位名称" prop="workplaceName" width="120"></el-table-column>
|
|
|
|
|
<!--<el-table-column label="工位类型" prop="workplaceType" width="90">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <span>{{ workplaceTypeMao[scope.row.workplaceType] }}</span>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!--</el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="库存预警数" prop="invRemindNumber" width="90"></el-table-column>-->
|
|
|
|
|
<el-table-column label="工位状态" prop="workplaceStatus" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ workplaceStatusMap[scope.row.workplaceStatus] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="工位类型" prop="workPlaceClass" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ workPlaceClasss[scope.row.workPlaceClass] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<!--<el-table-column label="所属组别" prop="categoryName" width="90"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据类型编号" prop="busTypeCode" width="100"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据类型名称" prop="busTypeName" width="100"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据来源系统" prop="fromTypeName" width="100"></el-table-column>-->
|
|
|
|
|
<el-table-column label="所属部门" prop="deptCodeName" width="90"></el-table-column>
|
|
|
|
|
<!--<el-table-column label="默认仓库" prop="invName" width="90"></el-table-column>-->
|
|
|
|
|
|
|
|
|
|
<el-table-column label="工位负责人" prop="employeeName" width="90"></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remake" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="160">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="printLabel(scope.row)"
|
|
|
|
|
>工位标签
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-form :model="query" label-width="auto" v-show="showSearch" size="mini" class="order-el-form">
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="edit(scope.row)"
|
|
|
|
|
>编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="deleteWorkplace(scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
:total="total"
|
|
|
|
|
:limit.sync="query.limit"
|
|
|
|
|
:page.sync="query.page"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
>
|
|
|
|
|
</pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-form-item label="当前部门:" class="query-form-item">
|
|
|
|
|
<el-select v-model="query.deptCode" class="width-full" placeholder="请选择" filterable clearable
|
|
|
|
|
@change="changeDept" style="width: 80%"
|
|
|
|
|
>
|
|
|
|
|
<el-option v-for="item in DeptList" :key="item.id" :label="item.name" :value="item.code"/>
|
|
|
|
|
</el-select>
|
|
|
|
|
<!--<el-option v-for="item in " :key="item.id" :label="item.name" :value="item.code"/>-->
|
|
|
|
|
<!-- <deptSelect :value.sync="userQuery.deptCode"-->
|
|
|
|
|
<!-- :changeValue.sync="changeUsers"/>-->
|
|
|
|
|
<!-- <!–<deptSelect :value.sync="query.invCode" :params.sync="filterBadInv" :changeValue.sync="invChange"/>–>-->
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!--<el-col :span="8">-->
|
|
|
|
|
<!-- <el-form-item label="当前部门:" class="query-form-item">-->
|
|
|
|
|
<!-- <deptSelect style="width: 80%" :value.sync="query.deptCode"/>-->
|
|
|
|
|
<!-- <!–<deptSelect :value.sync="query.invCode" :params.sync="filterBadInv" :changeValue.sync="invChange"/>–>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="编码/名称:" class="query-form-item">
|
|
|
|
|
<el-input v-model="query.key" placeholder="请输入编码/工位名称" clearable style="width: 80%">
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="工位状态:" class="query-form-item">
|
|
|
|
|
<el-select v-model="query.workplaceStatus" placeholder="工位状态" clearable style="width: 80%">
|
|
|
|
|
<el-option label="暂停" :value="0"></el-option>
|
|
|
|
|
<el-option label="启用" :value="1"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-tabs type="border-card" style="margin: 15px">
|
|
|
|
|
<el-tab-pane>
|
|
|
|
|
<!-- {{ workplaceName }}--->
|
|
|
|
|
<span slot="label">采集工位</span>
|
|
|
|
|
<el-form :inline="true" :model="busQuery" class="query-form" size="mini"
|
|
|
|
|
style="margin-bottom: 10px"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item class="query-form-item" label="采集工位名称:">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="busQuery.busKey"
|
|
|
|
|
placeholder="采集工位名称"
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
|
@click="onBusTypeReset"
|
|
|
|
|
>重置
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" @click="loadBusList"
|
|
|
|
|
icon="el-icon-search"
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" @click="chooseCollect"
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
>选入采集工位
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmit">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="addCargowWorkplace">新增上货工位</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-table :data="collectList" style="width: 100%;" :row-style="{height: '32px' }"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="index" label="序号"></el-table-column>
|
|
|
|
|
<!-- <el-table-column label="业务类型编码 " prop="documentTypeCode" width="100"></el-table-column>-->
|
|
|
|
|
<el-table-column label="采集工位名称" prop="collectName" ></el-table-column>
|
|
|
|
|
<el-table-column label="业务名称 " prop="busTypeName" ></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- size="small"-->
|
|
|
|
|
<!-- @click.native.stop="updateBusType(scope.row)"-->
|
|
|
|
|
<!-- >编辑-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="removeBusType(scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<!--<pagination-->
|
|
|
|
|
<!-- :total="busTypeTotal"-->
|
|
|
|
|
<!-- :limit.sync="busQuery.limit"-->
|
|
|
|
|
<!-- :page.sync="busQuery.page"-->
|
|
|
|
|
<!-- @pagination="getWorkBindBusTypes()"-->
|
|
|
|
|
<!-->-->
|
|
|
|
|
<!--</pagination>-->
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
</el-col>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" :row-style="{height: '32px' }"
|
|
|
|
|
highlight-current-row @current-change="handCurrentChange"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="index" label="序号"></el-table-column>
|
|
|
|
|
<el-table-column label="工位编码" prop="workplaceId" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="工位名称" prop="workplaceName" width="120"></el-table-column>
|
|
|
|
|
<!--<el-table-column label="工位类型" prop="workplaceType" width="90">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <span>{{ workplaceTypeMao[scope.row.workplaceType] }}</span>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!--</el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="库存预警数" prop="invRemindNumber" width="90"></el-table-column>-->
|
|
|
|
|
<el-table-column label="工位状态" prop="workplaceStatus" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ workplaceStatusMap[scope.row.workplaceStatus] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="工位类型" prop="workPlaceClass" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ workPlaceClasss[scope.row.workPlaceClass] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<!--<el-table-column label="所属组别" prop="categoryName" width="90"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据类型编号" prop="busTypeCode" width="100"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据类型名称" prop="busTypeName" width="100"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据来源系统" prop="fromTypeName" width="100"></el-table-column>-->
|
|
|
|
|
<el-table-column label="所属部门" prop="deptCodeName" width="90"></el-table-column>
|
|
|
|
|
<!--<el-table-column label="默认仓库" prop="invName" width="90"></el-table-column>-->
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="选入采集工位"
|
|
|
|
|
:visible.sync="chooseCollectDialogVisible"
|
|
|
|
|
width="60%"
|
|
|
|
|
v-if="chooseCollectDialogVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
@close=""
|
|
|
|
|
>
|
|
|
|
|
<addCollectWorkplace
|
|
|
|
|
:workplaceId="workplaceId"
|
|
|
|
|
:collectWorks="collectWorks"
|
|
|
|
|
:closeDialog="closeDialog">
|
|
|
|
|
<el-table-column label="工位负责人" prop="employeeName" width="90"></el-table-column>
|
|
|
|
|
|
|
|
|
|
</addCollectWorkplace>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remake" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="160">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="printLabel(scope.row)"
|
|
|
|
|
>工位标签
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="fromMap[fromName]"
|
|
|
|
|
:visible.sync="addWorkplaceDialogVisible"
|
|
|
|
|
width="60%"
|
|
|
|
|
v-if="addWorkplaceDialogVisible"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:show-close="false"
|
|
|
|
|
>
|
|
|
|
|
<el-form :model="formData" style="width: 100%;" ref="dataForm" :rules="formRules"
|
|
|
|
|
label-width="auto"
|
|
|
|
|
>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="工位编码:" prop="workplaceId" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
disabled
|
|
|
|
|
v-model="formData.workplaceId" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="工位名称:" prop="workplaceName" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="formData.workplaceName" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="工位状态:" prop="workplaceStatus" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.workplaceStatus" style="width: 80%" placeholder="工位状态">
|
|
|
|
|
<el-option label="暂停" :value="0"></el-option>
|
|
|
|
|
<el-option label="启用" :value="1"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!--<el-col :span="12" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="工位类型:" prop="workPlaceClass" class="query-form-item">-->
|
|
|
|
|
<!-- <el-select v-model="formData.workPlaceClass" style="width: 80%" placeholder="工位类型" disabled>-->
|
|
|
|
|
<!-- <el-option label="采集工位" :value="1"></el-option>-->
|
|
|
|
|
<!-- <el-option label="上货工位" :value="2"></el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item prop="deptCode" label="所属部门:">
|
|
|
|
|
<el-select v-model="formData.deptCode" placeholder="请选择部门" clearable
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
@change="handleInvChange"
|
|
|
|
|
>
|
|
|
|
|
<el-option v-for="item in deptList" :key="item.id" :label="item.name" :value="item.code"/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="edit(scope.row)"
|
|
|
|
|
>编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="deleteWorkplace(scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
:total="total"
|
|
|
|
|
:limit.sync="query.limit"
|
|
|
|
|
:page.sync="query.page"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
>
|
|
|
|
|
</pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="工位负责人:" prop="chargeUser" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.chargeUser" placeholder="请选择负责人"
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
clearable
|
|
|
|
|
<el-tabs type="border-card" style="margin: 15px">
|
|
|
|
|
<el-tab-pane>
|
|
|
|
|
<!-- {{ workplaceName }}--->
|
|
|
|
|
<span slot="label">采集工位</span>
|
|
|
|
|
<el-form :inline="true" :model="cargowQuery" class="query-form" size="mini"
|
|
|
|
|
style="margin-bottom: 10px"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in users"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.employeeName"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.employeeName }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="所属组别:" prop="constituencies" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.constituencies" placeholder="请选择所属组别"
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
<el-form-item class="query-form-item" label="采集工位名称:">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="cargowQuery.keyWords"
|
|
|
|
|
placeholder="采集工位/业务名称"
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
|
@click="onCollectList"
|
|
|
|
|
>重置
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" @click="loadCollectList"
|
|
|
|
|
icon="el-icon-search"
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" @click="chooseCollect"
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
>选入采集工位
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-table :data="collectList" style="width: 100%;" :row-style="{height: '32px' }"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fromDeptOptions"
|
|
|
|
|
:key="item.code"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.code"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.label }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
<el-table-column type="index" label="序号"></el-table-column>
|
|
|
|
|
<!-- <el-table-column label="业务类型编码 " prop="documentTypeCode" width="100"></el-table-column>-->
|
|
|
|
|
<el-table-column label="采集工位名称" prop="collectName"></el-table-column>
|
|
|
|
|
<el-table-column label="业务名称 " prop="busTypeName"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- size="small"-->
|
|
|
|
|
<!-- @click.native.stop="updateBusType(scope.row)"-->
|
|
|
|
|
<!-- >编辑-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="removeCollect(scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
:total="collectTotal"
|
|
|
|
|
:limit.sync="cargowQuery.limit"
|
|
|
|
|
:page.sync="cargowQuery.page"
|
|
|
|
|
@pagination="getCargowBindCollectList()"
|
|
|
|
|
>
|
|
|
|
|
</pagination>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="备注:" prop="remake" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="formData.remake" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click.native="hideForm">取消</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="formSubmit()"
|
|
|
|
|
>提交
|
|
|
|
|
</el-button
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="选入采集工位"
|
|
|
|
|
:visible.sync="chooseCollectDialogVisible"
|
|
|
|
|
width="60%"
|
|
|
|
|
v-if="chooseCollectDialogVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
@close=""
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<addCollectWorkplace
|
|
|
|
|
:workplaceId="workplaceId"
|
|
|
|
|
:collectWorks="collectWorks"
|
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
</addCollectWorkplace>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="fromMap[fromName]"
|
|
|
|
|
:visible.sync="addWorkplaceDialogVisible"
|
|
|
|
|
width="60%"
|
|
|
|
|
v-if="addWorkplaceDialogVisible"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:show-close="false"
|
|
|
|
|
>
|
|
|
|
|
<el-form :model="formData" style="width: 100%;" ref="dataForm" :rules="formRules"
|
|
|
|
|
label-width="auto"
|
|
|
|
|
>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="工位编码:" prop="workplaceId" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
disabled
|
|
|
|
|
v-model="formData.workplaceId" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="工位名称:" prop="workplaceName" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="formData.workplaceName" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="工位状态:" prop="workplaceStatus" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.workplaceStatus" style="width: 80%" placeholder="工位状态">
|
|
|
|
|
<el-option label="暂停" :value="0"></el-option>
|
|
|
|
|
<el-option label="启用" :value="1"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!--<el-col :span="12" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="工位类型:" prop="workPlaceClass" class="query-form-item">-->
|
|
|
|
|
<!-- <el-select v-model="formData.workPlaceClass" style="width: 80%" placeholder="工位类型" disabled>-->
|
|
|
|
|
<!-- <el-option label="采集工位" :value="1"></el-option>-->
|
|
|
|
|
<!-- <el-option label="上货工位" :value="2"></el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item prop="deptCode" label="所属部门:">
|
|
|
|
|
<el-select v-model="formData.deptCode" placeholder="请选择部门" clearable
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
@change="handleInvChange"
|
|
|
|
|
>
|
|
|
|
|
<el-option v-for="item in deptList" :key="item.id" :label="item.name" :value="item.code"/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="工位负责人:" prop="chargeUser" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.chargeUser" placeholder="请选择负责人"
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
clearable
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in users"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.employeeName"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.employeeName }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="所属组别:" prop="constituencies" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.constituencies" placeholder="请选择所属组别"
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fromDeptOptions"
|
|
|
|
|
:key="item.code"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.code"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.label }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="备注:" prop="remake" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="formData.remake" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click.native="hideForm">取消</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="formSubmit()"
|
|
|
|
|
>提交
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="formMap[formName]"
|
|
|
|
@ -476,17 +477,17 @@ import {
|
|
|
|
|
listPage,
|
|
|
|
|
printWorkLabel, updateWorkplace
|
|
|
|
|
} from '@/api/basic/workPlace/sysWorkplaceManage'
|
|
|
|
|
import {addTree, deleteTree, getTree, updateTree} from '@/api/basic/collectPoint/collectPointManage'
|
|
|
|
|
import { getBindCollectList } from '@/api/basic/collectPoint/cargowWorkplaceManage'
|
|
|
|
|
import addCollectWorkplace from "./addCollectWorkplace"
|
|
|
|
|
|
|
|
|
|
import { addTree, deleteTree, getTree, updateTree } from '@/api/basic/collectPoint/collectPointManage'
|
|
|
|
|
import { delCollect, getBindCollectList } from '@/api/basic/collectPoint/cargowWorkplaceManage'
|
|
|
|
|
import addCollectWorkplace from './addCollectWorkplace'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {addCollectWorkplace},
|
|
|
|
|
components: { addCollectWorkplace },
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
Dictionary: false,
|
|
|
|
|
showSearch: true,
|
|
|
|
|
workplaceCode: '6001',
|
|
|
|
|
treeList: [
|
|
|
|
|
{
|
|
|
|
|
code: '1001',
|
|
|
|
@ -500,13 +501,15 @@ export default {
|
|
|
|
|
code: null,
|
|
|
|
|
workplaceStatus: 1,
|
|
|
|
|
workPlaceClass: 2,
|
|
|
|
|
deptCode: this.$store.getters.locDeptCode,
|
|
|
|
|
deptCode: this.$store.getters.locDeptCode
|
|
|
|
|
},
|
|
|
|
|
DeptList:[],
|
|
|
|
|
list:[],
|
|
|
|
|
collectList:[],
|
|
|
|
|
busTypeTotal:0,
|
|
|
|
|
total:0,
|
|
|
|
|
DeptList: [],
|
|
|
|
|
list: [],
|
|
|
|
|
collectList: [],
|
|
|
|
|
collectAndTypeIds: [],
|
|
|
|
|
users: [],
|
|
|
|
|
busTypeTotal: 0,
|
|
|
|
|
total: 0,
|
|
|
|
|
subFormVisible: false,
|
|
|
|
|
subData: {
|
|
|
|
|
parentName: '全部',
|
|
|
|
@ -565,7 +568,7 @@ export default {
|
|
|
|
|
0: '完全赋码',
|
|
|
|
|
1: '部分赋码',
|
|
|
|
|
2: '赋码超出',
|
|
|
|
|
4: '',
|
|
|
|
|
4: ''
|
|
|
|
|
},
|
|
|
|
|
warnTypeMap: {
|
|
|
|
|
1: '信息提醒',
|
|
|
|
@ -574,12 +577,12 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
isPopulars: {
|
|
|
|
|
1: '是',
|
|
|
|
|
0: '否',
|
|
|
|
|
0: '否'
|
|
|
|
|
},
|
|
|
|
|
shippers: {
|
|
|
|
|
1: '原始单据的发货方',
|
|
|
|
|
2: '原始单据的收货方',
|
|
|
|
|
3: '用户所属仓库',
|
|
|
|
|
3: '用户所属仓库'
|
|
|
|
|
},
|
|
|
|
|
consignees: {
|
|
|
|
|
1: '原始单据的收货方',
|
|
|
|
@ -588,7 +591,7 @@ export default {
|
|
|
|
|
4: '客户',
|
|
|
|
|
5: '特殊往来',
|
|
|
|
|
6: '内部科室',
|
|
|
|
|
7: '填写',
|
|
|
|
|
7: '填写'
|
|
|
|
|
},
|
|
|
|
|
userList: [],
|
|
|
|
|
userLoading: false,
|
|
|
|
@ -598,9 +601,10 @@ export default {
|
|
|
|
|
cargowQuery: {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
userKey: null,
|
|
|
|
|
keyWords: null,
|
|
|
|
|
workPlaceCode: null
|
|
|
|
|
},
|
|
|
|
|
collectTotal:0,
|
|
|
|
|
busQuery: {
|
|
|
|
|
busKey: '',
|
|
|
|
|
workplaceCode: null,
|
|
|
|
@ -643,15 +647,16 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
formRules: {
|
|
|
|
|
workplaceName: [
|
|
|
|
|
{required: true, message: '请输入工位名称', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '请输入工位名称', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
workplaceStatus: [
|
|
|
|
|
{required: true, message: '请选择工位状态', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '请选择工位状态', trigger: 'blur' }
|
|
|
|
|
]
|
|
|
|
|
// workplaceType: [
|
|
|
|
|
// { required: true, message: '请选择工位类型', trigger: 'blur' }
|
|
|
|
|
// ]
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {},
|
|
|
|
@ -702,11 +707,11 @@ export default {
|
|
|
|
|
limit: 20,
|
|
|
|
|
workplaceStatus: 1,
|
|
|
|
|
workPlaceClass: 2,
|
|
|
|
|
deptCode: this.$store.getters.locDeptCode,
|
|
|
|
|
deptCode: this.$store.getters.locDeptCode
|
|
|
|
|
}
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
changeDept(){
|
|
|
|
|
changeDept() {
|
|
|
|
|
this.collectList = []
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
@ -750,27 +755,65 @@ export default {
|
|
|
|
|
// this.getWorkBindBusTypes()
|
|
|
|
|
this.getCargowBindCollectList()
|
|
|
|
|
},
|
|
|
|
|
getCargowBindCollectList(){
|
|
|
|
|
getCargowBindCollectList() {
|
|
|
|
|
this.cargowQuery.workPlaceCode = this.rowData.workplaceId
|
|
|
|
|
getBindCollectList(this.cargowQuery).then(res => {
|
|
|
|
|
if (res.code != 20000){
|
|
|
|
|
return this.$message.error("获取失败")
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
return this.$message.error('获取失败')
|
|
|
|
|
}
|
|
|
|
|
this.collectList = res.data.list || []
|
|
|
|
|
this.collectTotal = res.data.total || 0
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
chooseCollect(){
|
|
|
|
|
onCollectList() {
|
|
|
|
|
if (this.rowData.workplaceId == null) {
|
|
|
|
|
return this.$message.error('请选择上货工位')
|
|
|
|
|
}
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: ''
|
|
|
|
|
})
|
|
|
|
|
this.cargowQuery = {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
keyWords: null,
|
|
|
|
|
workPlaceCode: null
|
|
|
|
|
},
|
|
|
|
|
this.getCargowBindCollectList()
|
|
|
|
|
},
|
|
|
|
|
loadCollectList() {
|
|
|
|
|
if (this.rowData.workplaceId == null) {
|
|
|
|
|
return this.$message.error('请选择上货工位')
|
|
|
|
|
}
|
|
|
|
|
this.cargowQuery.page = 1
|
|
|
|
|
this.getCargowBindCollectList()
|
|
|
|
|
},
|
|
|
|
|
chooseCollect() {
|
|
|
|
|
if (this.rowData.workplaceId == null) {
|
|
|
|
|
return this.$message.error('请选择上货工位')
|
|
|
|
|
}
|
|
|
|
|
console.log("hhhhhhh",this.collectList)
|
|
|
|
|
this.collectWorks = this.collectList.map(item => ({
|
|
|
|
|
workplaceCode: item.collectWorkPlaceCode,
|
|
|
|
|
documentTypeCode: item.collectBusTypeCode
|
|
|
|
|
}));
|
|
|
|
|
this.collectWorks = this.collectList.map(item => item.collectAndTypeCodes)
|
|
|
|
|
// this.collectWorks = this.collectWorkPlaceCodes.concat(this.collectBusTypeCodes);
|
|
|
|
|
this.chooseCollectDialogVisible = true
|
|
|
|
|
},
|
|
|
|
|
removeCollect(row){
|
|
|
|
|
this.$confirm('此操作将永久删除该采集工位, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
delCollect(row).then(res => {
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.success("删除成功")
|
|
|
|
|
this.getCargowBindCollectList()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleNodeClick(row) {
|
|
|
|
|
this.groupData = row
|
|
|
|
|
this.query.code = row.code
|
|
|
|
@ -779,7 +822,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
closeDialog(){
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.getCargowBindCollectList()
|
|
|
|
|
this.chooseCollectDialogVisible = false
|
|
|
|
|
},
|
|
|
|
@ -789,7 +832,7 @@ export default {
|
|
|
|
|
const binaryData = []
|
|
|
|
|
binaryData.push(response)
|
|
|
|
|
let url = window.URL.createObjectURL(
|
|
|
|
|
new Blob(binaryData, {type: 'application/pdf'})
|
|
|
|
|
new Blob(binaryData, { type: 'application/pdf' })
|
|
|
|
|
)
|
|
|
|
|
this.loading = false
|
|
|
|
|
window.open(url)
|
|
|
|
@ -825,7 +868,7 @@ export default {
|
|
|
|
|
workPlaceClass: 2,
|
|
|
|
|
deptCode: null,
|
|
|
|
|
chargeUser: null,
|
|
|
|
|
constituencies: "1001",
|
|
|
|
|
constituencies: '1001',
|
|
|
|
|
invRemindNumber: 0,
|
|
|
|
|
remake: null
|
|
|
|
|
}
|
|
|
|
@ -837,7 +880,7 @@ export default {
|
|
|
|
|
createWorkplaceId().then(res => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
if (res.data == null) {
|
|
|
|
|
this.formData.workplaceId = this.workplaceCode + 1001
|
|
|
|
|
this.formData.workplaceId = this.workplaceCode + 1002
|
|
|
|
|
this.addWorkplaceDialogVisible = true
|
|
|
|
|
this.getTree()
|
|
|
|
|
} else {
|
|
|
|
@ -852,7 +895,7 @@ export default {
|
|
|
|
|
this.$message.error('获取错误')
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
hideForm(){
|
|
|
|
|
hideForm() {
|
|
|
|
|
this.addWorkplaceDialogVisible = false
|
|
|
|
|
this.getList()
|
|
|
|
|
this.collectList = []
|
|
|
|
@ -889,7 +932,7 @@ export default {
|
|
|
|
|
return this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
|
this.addWorkplaceDialogVisible = false
|
|
|
|
|
this.$message.success("更新成功")
|
|
|
|
|
this.$message.success('更新成功')
|
|
|
|
|
this.getList()
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.addWorkplaceDialogVisible = false
|
|
|
|
@ -969,7 +1012,7 @@ export default {
|
|
|
|
|
this.deptList = res.data.list || []
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getDepts()
|
|
|
|
|