|
|
|
@ -1,89 +1,91 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<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">-->
|
|
|
|
|
<!-- <invSelect :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>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="所属组别:" class="query-form-item">
|
|
|
|
|
<el-select v-model="query.code" placeholder="请选择所属组别"
|
|
|
|
|
style="width: 80%" clearable>
|
|
|
|
|
<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-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="addWork">选入工位</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
<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">-->
|
|
|
|
|
<!-- <invSelect :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>
|
|
|
|
|
</el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="所属组别:" class="query-form-item">
|
|
|
|
|
<el-select v-model="query.code" placeholder="请选择所属组别"
|
|
|
|
|
style="width: 80%" clearable
|
|
|
|
|
>
|
|
|
|
|
<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-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="addWork">选入工位</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" :row-style="{height: '32px' }" highlight-current-row @current-change="handCurrentChange" ref="table"
|
|
|
|
|
>
|
|
|
|
|
<!--<el-table-column label width="45">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <el-radio :label="scope.row.workplaceId" v-model="radioCheck"><span></span></el-radio>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!--</el-table-column>-->
|
|
|
|
|
<el-table-column type="selection" width="55" :selectable="checkSelectable">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<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="workplaceStatus" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ workplaceStatusMap[scope.row.workplaceStatus] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="工位类型" prop="workplaceType" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ workplaceTypes[scope.row.workplaceType] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="所属组别" prop="categoryName" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span v-if="scope.row.categoryName !== '全部'">{{ scope.row.categoryName }}</span>
|
|
|
|
|
<span v-else></span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="所属部门" prop="deptCodeName" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="库存预警数" prop="invRemindNumber" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="工位负责人" prop="employeeName" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remake" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="50">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click="checkDetail(scope.row)"
|
|
|
|
|
>详情
|
|
|
|
|
</el-button>
|
|
|
|
|
<!--@click.native.stop="printLabel(scope.row)"-->
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" :row-style="{height: '32px' }" highlight-current-row
|
|
|
|
|
@current-change="handCurrentChange" ref="table"
|
|
|
|
|
>
|
|
|
|
|
<!--<el-table-column label width="45">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <el-radio :label="scope.row.workplaceId" v-model="radioCheck"><span></span></el-radio>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!--</el-table-column>-->
|
|
|
|
|
<el-table-column type="selection" width="55" :selectable="checkSelectable">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<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="workplaceStatus" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ workplaceStatusMap[scope.row.workplaceStatus] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<!--<el-table-column label="工位类型" prop="workplaceType" width="90">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <span>{{ workplaceTypes[scope.row.workplaceType] }}</span>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!--</el-table-column>-->
|
|
|
|
|
<el-table-column label="所属组别" prop="categoryName" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span v-if="scope.row.categoryName !== '全部'">{{ scope.row.categoryName }}</span>
|
|
|
|
|
<span v-else></span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="所属部门" prop="deptCodeName" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="库存预警数" prop="invRemindNumber" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="工位负责人" prop="employeeName" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remake" width="90"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="50">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click="checkDetail(scope.row)"
|
|
|
|
|
>详情
|
|
|
|
|
</el-button>
|
|
|
|
|
<!--@click.native.stop="printLabel(scope.row)"-->
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="工位详情"
|
|
|
|
@ -116,67 +118,35 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="24" class="el-row">
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="作业方式:" prop="operationType" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.operationType" style="width: 100%" placeholder="选择扫码方式" clearable disabled>
|
|
|
|
|
<el-option label="扫码生成业务单" :value="1"></el-option>
|
|
|
|
|
<el-option label="按单校验三期" :value="2"></el-option>
|
|
|
|
|
<el-option label="按单不校验三期" :value="3"></el-option>
|
|
|
|
|
<el-form-item label="工位状态:" prop="workplaceStatus" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.workplaceStatus" style="width: 100%" placeholder="工位状态" disabled>
|
|
|
|
|
<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="checkInsert" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.checkInsert" style="width: 100%" placeholder="选择扫码方式" clearable disabled>
|
|
|
|
|
<el-option label="不插入" :value="1"></el-option>
|
|
|
|
|
<el-option label="插入" :value="2"></el-option>
|
|
|
|
|
<el-form-item prop="deptCode" label="所属部门:" >
|
|
|
|
|
<el-select v-model="formData.deptCode" placeholder="请选择部门" clearable disabled
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
@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-col :span="12" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="所属部门:" class="query-form-item">-->
|
|
|
|
|
<!-- <deptSelect :value.sync="formData.deptCode" style="width: 80%" :changeValue.sync="handleInvChange"/>-->
|
|
|
|
|
<!-- <!–<deptSelect :value.sync="query.invCode" :params.sync="filterBadInv" :changeValue.sync="invChange"/>–>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="24" class="el-row">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="提醒方式:" prop="warnType" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.warnType" style="width: 100%" placeholder="选择扫码方式" clearable 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 label="往来类型标题:" prop="remake" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
disabled
|
|
|
|
|
v-model="formData.unitTittle" style="width: 100%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="来源单据类型编号:" prop="remake" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
disabled
|
|
|
|
|
v-model="formData.busTypeCode" style="width: 100%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="来源单据类型名称:" prop="remake" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
disabled
|
|
|
|
|
v-model="formData.busTypeName" style="width: 100%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<!--<el-col :span="24" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="所属仓库:" prop="invCode" class="query-form-item">-->
|
|
|
|
|
<!-- <el-select v-model="formData.invCode" placeholder="请选择所属仓库"-->
|
|
|
|
@ -204,16 +174,6 @@
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="作业方式:" prop="chargeUser" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
disabled
|
|
|
|
|
v-model="operationTypes[formData.operationType]" style="width: 100%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="创建时间:" prop="createTime" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
@ -259,9 +219,8 @@
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="24" class="el-row">
|
|
|
|
|
<el-col :span="24" class="el-col">
|
|
|
|
|
<el-form-item label="备注:" prop="unitTittle" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
@ -284,9 +243,9 @@ import {
|
|
|
|
|
addWorkplace,
|
|
|
|
|
updateWorkplace,
|
|
|
|
|
deleteWorkplace,
|
|
|
|
|
createWorkplaceId, printWorkLabel,getUsers
|
|
|
|
|
createWorkplaceId, printWorkLabel, getUsers
|
|
|
|
|
} from '@/api/basic/workPlace/sysWorkplaceManage'
|
|
|
|
|
import { getInvListByUser } from '@/api/system/invWarehouse'
|
|
|
|
|
import { filterList, getInvListByUser } from '@/api/system/invWarehouse'
|
|
|
|
|
import { getTree } from '@/api/basic/collectPoint/collectPointManage'
|
|
|
|
|
import { getCollectBusType } from '@/api/basic/collectPoint/gatherOrderType'
|
|
|
|
|
import { userBindWork } from '@/api/basic/collectPoint/userWorkplace'
|
|
|
|
@ -296,16 +255,16 @@ export default {
|
|
|
|
|
props: {
|
|
|
|
|
closeDialog: {
|
|
|
|
|
type: Function,
|
|
|
|
|
required: true,
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
userId: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
workPlaceCode: {
|
|
|
|
|
type: Array,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
required: true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
@ -368,20 +327,21 @@ export default {
|
|
|
|
|
1: '客户',
|
|
|
|
|
2: '供应商',
|
|
|
|
|
3: '内部科室',
|
|
|
|
|
4: '特殊往来',
|
|
|
|
|
4: '特殊往来'
|
|
|
|
|
},
|
|
|
|
|
workplaceStatusMap:{
|
|
|
|
|
workplaceStatusMap: {
|
|
|
|
|
0: '暂停',
|
|
|
|
|
1: '启用'
|
|
|
|
|
},
|
|
|
|
|
workplaceTypes:{
|
|
|
|
|
workplaceTypes: {
|
|
|
|
|
1: '拆零',
|
|
|
|
|
2: '取整',
|
|
|
|
|
3: '全部',
|
|
|
|
|
3: '全部'
|
|
|
|
|
},
|
|
|
|
|
radioCheck: '',
|
|
|
|
|
rowData: {},
|
|
|
|
|
rowList:[]
|
|
|
|
|
rowList: [],
|
|
|
|
|
deptList: [],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -518,6 +478,18 @@ export default {
|
|
|
|
|
.catch(() => {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getDeptList() {
|
|
|
|
|
this.deptList = []
|
|
|
|
|
let data =
|
|
|
|
|
{
|
|
|
|
|
enable: true
|
|
|
|
|
}
|
|
|
|
|
filterList(data).then(res => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.deptList = res.data.list || []
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleInvChange(invCode) {
|
|
|
|
|
this.invQuery.code = invCode
|
|
|
|
|
getUsers(this.invQuery).then(res => {
|
|
|
|
@ -542,14 +514,14 @@ export default {
|
|
|
|
|
this.loading = false
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getLstTree(){
|
|
|
|
|
getLstTree() {
|
|
|
|
|
getTree(this.query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
var invlist = response.data || [];
|
|
|
|
|
this.treeList = this.handleTree(invlist, "code", "parentCode");
|
|
|
|
|
var invlist = response.data || []
|
|
|
|
|
this.treeList = this.handleTree(invlist, 'code', 'parentCode')
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getBusType() {
|
|
|
|
|
let query = {
|
|
|
|
@ -575,38 +547,38 @@ export default {
|
|
|
|
|
.catch(() => {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handCurrentChange(row){
|
|
|
|
|
handCurrentChange(row) {
|
|
|
|
|
this.rowList = row
|
|
|
|
|
// this.workQuery.workplaceId = row
|
|
|
|
|
// this.rowData = row
|
|
|
|
|
},
|
|
|
|
|
handleNodeClick(row){
|
|
|
|
|
handleNodeClick(row) {
|
|
|
|
|
this.query.code = row.code
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//选入工位
|
|
|
|
|
addWork(){
|
|
|
|
|
addWork() {
|
|
|
|
|
let selectList = this.$refs.table.selection
|
|
|
|
|
let list = selectList.map(item => item.workplaceId)
|
|
|
|
|
this.workQuery.userId = this.userId
|
|
|
|
|
this.workQuery.workplaceId = list
|
|
|
|
|
if (list.length == 0){
|
|
|
|
|
// return this.closeDialog()
|
|
|
|
|
return this.$message.error("未选择工位或该用户已没有可增加工位")
|
|
|
|
|
if (list.length == 0) {
|
|
|
|
|
// return this.closeDialog()
|
|
|
|
|
return this.$message.error('未选择工位或该用户已没有可增加工位')
|
|
|
|
|
}
|
|
|
|
|
userBindWork(this.workQuery).then(res => {
|
|
|
|
|
if (res.code == 20000){
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
this.$message.success("成功!!")
|
|
|
|
|
}else {
|
|
|
|
|
this.$message.success('成功!!')
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
checkDetail(row){
|
|
|
|
|
checkDetail(row) {
|
|
|
|
|
this.formData = row
|
|
|
|
|
this.WorkplaceDialogVisible = true
|
|
|
|
|
},
|
|
|
|
@ -625,6 +597,7 @@ export default {
|
|
|
|
|
created() {
|
|
|
|
|
this.getList()
|
|
|
|
|
this.getInvList()
|
|
|
|
|
this.getDeptList()
|
|
|
|
|
// this.getBusType()
|
|
|
|
|
this.getTree()
|
|
|
|
|
this.getLstTree()
|
|
|
|
|