|
|
|
@ -13,7 +13,7 @@
|
|
|
|
|
<el-table-column label="第三方系统药品编码" prop="thirdId" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="第三方系统药品名称" prop="thirdName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="第三方系统包装规格" prop="spec" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="批准文号" prop="registerNo" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="注册号" prop="registerNo" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业" prop="manufactory" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="操作">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -21,7 +21,8 @@
|
|
|
|
|
关联
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" @click.native.stop="removeErp(scope.row)"
|
|
|
|
|
:disabled=" scope.row.thirdId==null || scope.row.thirdId==''">解绑
|
|
|
|
|
:disabled=" scope.row.thirdId==null || scope.row.thirdId==''"
|
|
|
|
|
>解绑
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -33,18 +34,20 @@
|
|
|
|
|
</template>
|
|
|
|
|
<div style=" float: right;
|
|
|
|
|
text-align: right;
|
|
|
|
|
margin-bottom: 8px;">
|
|
|
|
|
margin-bottom: 8px;"
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" size="mini" icon="search" @click="addDrugLevel"
|
|
|
|
|
style="text-align:right">新增药品层级
|
|
|
|
|
style="text-align:right"
|
|
|
|
|
>新增药品层级
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="detailList"
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
border
|
|
|
|
|
key="3"
|
|
|
|
|
@current-change="handleDetail"
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="detailList"
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
border
|
|
|
|
|
key="3"
|
|
|
|
|
@current-change="handleDetail"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="层级标识" prop="nameCode" show-overflow-tooltip width="160">
|
|
|
|
@ -95,22 +98,23 @@
|
|
|
|
|
<el-table-column label="操作" width="180px" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.$index == selectedIndex" @click.stop="true"
|
|
|
|
|
@click.native="levelSave(scope.row)">保存
|
|
|
|
|
@click.native="levelSave(scope.row)"
|
|
|
|
|
>保存
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
v-if="scope.$index != selectedIndex "
|
|
|
|
|
@click.stop="true"
|
|
|
|
|
@click.native="rowChange(scope.$index,scope.row)"
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
v-if="scope.$index != selectedIndex "
|
|
|
|
|
@click.stop="true"
|
|
|
|
|
@click.native="rowChange(scope.$index,scope.row)"
|
|
|
|
|
>编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.stop="true"
|
|
|
|
|
:disabled=" scope.row.id != null"
|
|
|
|
|
@click.native="deleteLevel(scope.$index, scope.row)"
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.stop="true"
|
|
|
|
|
:disabled=" scope.row.id != null"
|
|
|
|
|
@click.native="deleteLevel(scope.$index, scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
@ -177,22 +181,23 @@
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!--<el-col :span="11" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="包装比例:" prop="packRatio">-->
|
|
|
|
|
<!-- <el-input style="width: 90%" size="small" placeholder="请输入制剂单位"-->
|
|
|
|
|
<!-- v-model.trim="newProductData.packRatio"-->
|
|
|
|
|
<!-- ></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="包装比例:" prop="packRatio">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入制剂单位"
|
|
|
|
|
v-model.trim="newProductData.packRatio"
|
|
|
|
|
<el-form-item label="批准文号:" prop="zczbhhzbapzbh">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入批准文号"
|
|
|
|
|
v-model="newProductData.zczbhhzbapzbh"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="批准文号:" prop="registerNo">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入批准文号"
|
|
|
|
|
v-model.trim="newProductData.registerNo"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="生产企业:" prop="manufactory">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入生产企业"
|
|
|
|
@ -200,11 +205,9 @@
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="药品类型:" prop="physicType">
|
|
|
|
|
<el-select v-model="newProductData.physicType" style="width: 90%" placeholder="选择药品类型" >
|
|
|
|
|
<el-select v-model="newProductData.physicType" style="width: 90%" placeholder="选择药品类型">
|
|
|
|
|
<el-option label="特殊药品原料药" :value="1"></el-option>
|
|
|
|
|
<el-option label="特殊药品制剂" :value="2"></el-option>
|
|
|
|
|
<el-option label="普通药品" :value="3"></el-option>
|
|
|
|
@ -212,6 +215,9 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
|
|
|
|
|
<el-col :span="11" type="flex">
|
|
|
|
|
<el-form-item label="药品分类:" prop="majorType">
|
|
|
|
|
<el-select v-model="newProductData.majorType" style="width: 90%" placeholder="选择药品分类" clearable>
|
|
|
|
@ -221,8 +227,6 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="医保编码:" prop="ybbm">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入医保编码"
|
|
|
|
@ -230,6 +234,9 @@
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="医保分类:" prop="medicareType">
|
|
|
|
|
<el-select v-model="newProductData.medicareType" style="width: 90%" placeholder="选择医保分类"
|
|
|
|
@ -241,35 +248,34 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="药品价格:" prop="price">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入药品价格"
|
|
|
|
|
type="number"
|
|
|
|
|
:precision="2"
|
|
|
|
|
:min="0"
|
|
|
|
|
v-model.number="newProductData.price"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入药品价格"
|
|
|
|
|
type="text"
|
|
|
|
|
v-model="newProductData.price"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="有效期:" prop="indate">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
v-model="newProductData.indate"
|
|
|
|
|
type="datetime"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日 HH 点 mm 分 ss 秒"
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
placeholder="选择有效期"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<!--<el-row type="flex">-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-col :span="11" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="有效期:" prop="indate">-->
|
|
|
|
|
<!-- <el-date-picker-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- v-model="newProductData.indate"-->
|
|
|
|
|
<!-- type="datetime"-->
|
|
|
|
|
<!-- format="yyyy 年 MM 月 dd 日 HH 点 mm 分 ss 秒"-->
|
|
|
|
|
<!-- value-format="yyyy-MM-dd HH:mm:ss"-->
|
|
|
|
|
<!-- placeholder="选择有效期"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- </el-date-picker>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!--</el-row>-->
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="存储条件:" prop="ylqxzcrbarmc">
|
|
|
|
@ -307,32 +313,33 @@
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="收费项目编码:">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 65%"
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="选择项目收费编码"
|
|
|
|
|
v-model="newProductData.payFeeCode"
|
|
|
|
|
style="width: 65%"
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="选择项目收费编码"
|
|
|
|
|
v-model="newProductData.payFeeCode"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-button type="primary" size="mini" style="margin-left: 10px" @click="selectPayFeecode">选入</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="是否拆零:" prop="splitEnable">
|
|
|
|
|
<el-select v-model="newProductData.splitEnable" style="width: 90%" placeholder="是否拆零" clearable>
|
|
|
|
|
<el-option label="是" :value="true"></el-option>
|
|
|
|
|
<el-option label="否" :value="false"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-button type="primary" size="mini" style="margin-left: 10px" @click="selectPayFeecode">选入
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!--<el-col :span="11">-->
|
|
|
|
|
<!-- <el-form-item label="是否拆零:" prop="splitEnable">-->
|
|
|
|
|
<!-- <el-select v-model="newProductData.splitEnable" style="width: 90%" placeholder="是否拆零" clearable>-->
|
|
|
|
|
<!-- <el-option label="是" :value="true"></el-option>-->
|
|
|
|
|
<!-- <el-option label="否" :value="false"></el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex" class="edit-row">
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="是否自动赋码:" prop="autoCode">
|
|
|
|
|
<el-select v-model="newProductData.autoCode" style="width: 90%" placeholder="是否自动赋码" clearable>
|
|
|
|
|
<el-option label="是" :value="true"></el-option>
|
|
|
|
|
<el-option label="否" :value="false"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!--<el-col :span="11">-->
|
|
|
|
|
<!-- <el-form-item label="是否自动赋码:" prop="autoCode">-->
|
|
|
|
|
<!-- <el-select v-model="newProductData.autoCode" style="width: 90%" placeholder="是否自动赋码" clearable>-->
|
|
|
|
|
<!-- <el-option label="是" :value="true"></el-option>-->
|
|
|
|
|
<!-- <el-option label="否" :value="false"></el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="23" class="el-col">
|
|
|
|
@ -356,12 +363,14 @@
|
|
|
|
|
<el-select v-model="newProductData.distributeLevelDi" size="small" style="width: 90%"
|
|
|
|
|
@change="distributeLevelDiChange"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择流通计量层级标识">
|
|
|
|
|
placeholder="请选择流通计量层级标识"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in detailList"
|
|
|
|
|
:key="item.nameCode"
|
|
|
|
|
:value="item.nameCode"
|
|
|
|
|
:label="item.nameCode">
|
|
|
|
|
v-for="item in detailList"
|
|
|
|
|
:key="item.nameCode"
|
|
|
|
|
:value="item.nameCode"
|
|
|
|
|
:label="item.nameCode"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.nameCode }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.packLevel }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
@ -373,12 +382,14 @@
|
|
|
|
|
<el-select v-model="newProductData.useLevelDi" size="small" style="width: 90%"
|
|
|
|
|
@change="useLevelDiChange"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择流通计量层级标识">
|
|
|
|
|
placeholder="请选择流通计量层级标识"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in detailList"
|
|
|
|
|
:key="item.nameCode"
|
|
|
|
|
:value="item.nameCode"
|
|
|
|
|
:label="item.nameCode">
|
|
|
|
|
v-for="item in detailList"
|
|
|
|
|
:key="item.nameCode"
|
|
|
|
|
:value="item.nameCode"
|
|
|
|
|
:label="item.nameCode"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.nameCode }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.packLevel }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
@ -442,9 +453,9 @@
|
|
|
|
|
<el-divider direction="vertical"></el-divider>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-switch
|
|
|
|
|
v-model="status"
|
|
|
|
|
active-color="#13ce66"
|
|
|
|
|
inactive-color="#ff4949"
|
|
|
|
|
v-model="status"
|
|
|
|
|
active-color="#13ce66"
|
|
|
|
|
inactive-color="#ff4949"
|
|
|
|
|
>
|
|
|
|
|
</el-switch>
|
|
|
|
|
</el-col>
|
|
|
|
@ -462,19 +473,19 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="收费项目选入"
|
|
|
|
|
:visible.sync="tollProjectDialogVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="70%"
|
|
|
|
|
v-if="tollProjectDialogVisible"
|
|
|
|
|
append-to-body
|
|
|
|
|
title="收费项目选入"
|
|
|
|
|
:visible.sync="tollProjectDialogVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="70%"
|
|
|
|
|
v-if="tollProjectDialogVisible"
|
|
|
|
|
append-to-body
|
|
|
|
|
>
|
|
|
|
|
<!--<product-single-edit-->
|
|
|
|
|
<!-- :editQuery="editSingleFormat"-->
|
|
|
|
|
<!--></product-single-edit>-->
|
|
|
|
|
<selectChargesProjectDialog
|
|
|
|
|
:getData="getData"
|
|
|
|
|
:getData="getData"
|
|
|
|
|
>
|
|
|
|
|
</selectChargesProjectDialog>
|
|
|
|
|
<!--<div style="text-align: center;margin-top: 12px">-->
|
|
|
|
@ -521,9 +532,9 @@ import {
|
|
|
|
|
import {
|
|
|
|
|
getYbHcflDetail, removeRl, thirdSysDetail
|
|
|
|
|
} from '@/api/basic/product/udiRelevance'
|
|
|
|
|
import {filterClassify} from '@/api/purchase/classifyCode'
|
|
|
|
|
import {filterByUuid} from "@/api/basic/product/udiInfo";
|
|
|
|
|
import selectChargesProjectDialog from "./selectChargesProjectDialog"
|
|
|
|
|
import { filterClassify } from '@/api/purchase/classifyCode'
|
|
|
|
|
import { filterByUuid } from '@/api/basic/product/udiInfo'
|
|
|
|
|
import selectChargesProjectDialog from './selectChargesProjectDialog'
|
|
|
|
|
import chooseHouseDrug from './chooseHouseDrug'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -544,22 +555,22 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
uuid: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
relId: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
thisData: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
relevanceEdit: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
required: true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {selectChargesProjectDialog,chooseHouseDrug},
|
|
|
|
|
components: { selectChargesProjectDialog, chooseHouseDrug },
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
ybHcflDetail: {},
|
|
|
|
@ -586,52 +597,53 @@ export default {
|
|
|
|
|
useLevelUnit: null,
|
|
|
|
|
distributeLevel: null,
|
|
|
|
|
useLevel: null,
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
thirdSys: [],
|
|
|
|
|
classifyList: [],
|
|
|
|
|
saveLoading: false,
|
|
|
|
|
activeNames: ['0','1', '2'],
|
|
|
|
|
activeNames: ['0', '1', '2'],
|
|
|
|
|
formRules: {
|
|
|
|
|
cpmctymc: [
|
|
|
|
|
{required: true, message: '请输入药品通用名', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '请输入药品通用名', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
prepnSpec: [
|
|
|
|
|
{required: true, message: '请输入制剂规格', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '请输入制剂规格', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
packUnit: [
|
|
|
|
|
{required: true, message: '请输入包装单位', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '请输入包装单位', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
prepnUnit: [
|
|
|
|
|
{required: true, message: '请输入制剂单位', trigger: 'blur'}
|
|
|
|
|
],
|
|
|
|
|
packRatio: [
|
|
|
|
|
{required: true, message: '请输入包装比例', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '请输入制剂单位', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
// packRatio: [
|
|
|
|
|
// {required: true, message: '请输入包装比例', trigger: 'blur'}
|
|
|
|
|
// ],
|
|
|
|
|
packMatrial: [
|
|
|
|
|
{required: true, message: '请输入包装材质', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '请输入包装材质', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
registerNo: [
|
|
|
|
|
{required: true, message: '请输入批准文号', trigger: 'blur'}
|
|
|
|
|
zczbhhzbapzbh: [
|
|
|
|
|
{ required: true, message: '请输入批准文号', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
manufactory: [
|
|
|
|
|
{required: true, message: '生产企业不能为空', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '生产企业不能为空', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
physicType: [
|
|
|
|
|
{required: true, message: '药品类型不能为空', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '药品类型不能为空', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
ybbm: [
|
|
|
|
|
{required: true, message: '医保编码不能为空', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '医保编码不能为空', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
price: [
|
|
|
|
|
{required: true, message: '药品价格不能为空', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '药品价格不能为空', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
majorStatus: [
|
|
|
|
|
{required: true, message: '请选择药品状态', trigger: 'blur'}
|
|
|
|
|
{ required: true, message: '请选择药品状态', trigger: 'blur' }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
detailList: [
|
|
|
|
|
// 初始化一个空对象或包含默认值的对象
|
|
|
|
|
{nameCode: '', packLevel: null, bhxjsl: null, isDisabled: false, isUpDisabled: true, rowDisabled: false}
|
|
|
|
|
{ nameCode: '', packLevel: null, bhxjsl: null, isDisabled: false, isUpDisabled: true, rowDisabled: false }
|
|
|
|
|
],
|
|
|
|
|
status: false,
|
|
|
|
|
rowDisabled: false,
|
|
|
|
@ -641,7 +653,7 @@ export default {
|
|
|
|
|
sysList: [],
|
|
|
|
|
chooseHouseDrugVisible: false,
|
|
|
|
|
isImport: false,
|
|
|
|
|
defaultSys: null,
|
|
|
|
|
defaultSys: null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
@ -656,14 +668,14 @@ export default {
|
|
|
|
|
key: key
|
|
|
|
|
}
|
|
|
|
|
filterClassify(query)
|
|
|
|
|
.then(response => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.classifyList = response.data.list || []
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.classifyList = []
|
|
|
|
|
})
|
|
|
|
|
.then(response => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.classifyList = response.data.list || []
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.classifyList = []
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getYbHcData() {
|
|
|
|
|
let query = {
|
|
|
|
@ -690,6 +702,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
saveNewProduct() {
|
|
|
|
|
this.addProductDialogVisible = false
|
|
|
|
|
this.newProductData.registerNo = this.newProductData.zczbhhzbapzbh
|
|
|
|
|
this.newProductData.splitEnable = true
|
|
|
|
|
this.newProductData.autoCode = true
|
|
|
|
|
//新增
|
|
|
|
|
if (this.type == 1) {
|
|
|
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
|
|
@ -706,24 +721,24 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
const validateItem = (item, fieldName, errorMessage) => {
|
|
|
|
|
if (!item[fieldName]) {
|
|
|
|
|
this.$message.error(errorMessage);
|
|
|
|
|
return false;
|
|
|
|
|
this.$message.error(errorMessage)
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
};
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
for (let i = 0; i < this.detailList.length; i++) {
|
|
|
|
|
const item = this.detailList[i];
|
|
|
|
|
const item = this.detailList[i]
|
|
|
|
|
if (!validateItem(item, 'nameCode', '药品层级标识不能为空!') ||
|
|
|
|
|
!validateItem(item, 'packLevel', '包装级别不能为空') ||
|
|
|
|
|
!validateItem(item, 'packUnit', '层级单位不能为空')) {
|
|
|
|
|
return;
|
|
|
|
|
!validateItem(item, 'packLevel', '包装级别不能为空') ||
|
|
|
|
|
!validateItem(item, 'packUnit', '层级单位不能为空')) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const isLevel1 = this.detailList.some(item => item.packLevel === 1);
|
|
|
|
|
const isLevel1 = this.detailList.some(item => item.packLevel === 1)
|
|
|
|
|
if (!isLevel1) {
|
|
|
|
|
this.$message.error('药品层级缺少一级标识!');
|
|
|
|
|
this.$message.error('药品层级缺少一级标识!')
|
|
|
|
|
}
|
|
|
|
|
this.newProductData.drugLevelLists = this.detailList;
|
|
|
|
|
this.newProductData.drugLevelLists = this.detailList
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
this.saveLoading = true
|
|
|
|
@ -743,23 +758,28 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
if (this.status) {
|
|
|
|
|
this.newProductData.requireScanCode = 1
|
|
|
|
|
} else {
|
|
|
|
|
this.newProductData.requireScanCode = 0
|
|
|
|
|
}
|
|
|
|
|
this.newProductData.uuid = this.rowData.uuid
|
|
|
|
|
this.newProductData.nameCode = this.rowData.nameCode
|
|
|
|
|
this.newProductData.relId = this.newProductData.id;
|
|
|
|
|
updatetDrug(this.newProductData).then(res => {
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
//清空弹窗数据
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
this.$message.success('保存成功')
|
|
|
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
|
|
|
if (!valid) {
|
|
|
|
|
return this.$message.error('请补充必要数据')
|
|
|
|
|
}
|
|
|
|
|
if (this.status) {
|
|
|
|
|
this.newProductData.requireScanCode = 1
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
this.newProductData.requireScanCode = 0
|
|
|
|
|
}
|
|
|
|
|
this.newProductData.uuid = this.rowData.uuid
|
|
|
|
|
this.newProductData.nameCode = this.rowData.nameCode
|
|
|
|
|
this.newProductData.relId = this.newProductData.id
|
|
|
|
|
updatetDrug(this.newProductData).then(res => {
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
//清空弹窗数据
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
this.$message.success('保存成功')
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -771,15 +791,15 @@ export default {
|
|
|
|
|
//层级保存
|
|
|
|
|
levelSave(row) {
|
|
|
|
|
if (row.nameCode == null) {
|
|
|
|
|
this.$message.error("层级标识不能为空");
|
|
|
|
|
this.$message.error('层级标识不能为空')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (row.packLevel == null) {
|
|
|
|
|
this.$message.error("包装级别不能为空");
|
|
|
|
|
this.$message.error('包装级别不能为空')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (row.packUnit == null) {
|
|
|
|
|
this.$message.error("层级单位不能为空");
|
|
|
|
|
this.$message.error('层级单位不能为空')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
let editQuery = {
|
|
|
|
@ -795,10 +815,11 @@ export default {
|
|
|
|
|
updateLevelDrug(editQuery).then(res => {
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.$message.success("保存成功!");
|
|
|
|
|
this.$message.success('保存成功!')
|
|
|
|
|
this.selectedIndex = null
|
|
|
|
|
if (this.newProductData.id != null)
|
|
|
|
|
this.getDetailList();
|
|
|
|
|
if (this.newProductData.id != null) {
|
|
|
|
|
this.getDetailList()
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
@ -817,13 +838,12 @@ export default {
|
|
|
|
|
isDisabled: false,
|
|
|
|
|
rowDisabled: false,
|
|
|
|
|
isUpDisabled: true
|
|
|
|
|
});
|
|
|
|
|
this.selectedIndex = this.detailList.length -1
|
|
|
|
|
})
|
|
|
|
|
this.selectedIndex = this.detailList.length - 1
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rowChange(index, val) {
|
|
|
|
|
this.selectedIndex = index;
|
|
|
|
|
this.selectedIndex = index
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
deleteLevel(index, row) {
|
|
|
|
@ -832,20 +852,20 @@ export default {
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
if (row.id != null){
|
|
|
|
|
let params = {nameCode: row.nameCode};
|
|
|
|
|
if (row.id != null) {
|
|
|
|
|
let params = { nameCode: row.nameCode }
|
|
|
|
|
delDrugLevel(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("删除成功");
|
|
|
|
|
this.getDetailList();
|
|
|
|
|
this.$message.success('删除成功')
|
|
|
|
|
this.getDetailList()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
this.detailList.splice(index, 1);
|
|
|
|
|
this.$message.success("删除成功");
|
|
|
|
|
this.detailList.splice(index, 1)
|
|
|
|
|
this.$message.success('删除成功')
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//获取层级标识
|
|
|
|
@ -855,44 +875,43 @@ export default {
|
|
|
|
|
uuid: this.newProductData.uuid,
|
|
|
|
|
id: this.newProductData.id
|
|
|
|
|
}
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.loading = true
|
|
|
|
|
filterByUuid(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.detailList = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.detailList = response.data || []
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.detailList = []
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
distributeLevelDiChange(val) {
|
|
|
|
|
const matchingItem = this.detailList.find(item => item.nameCode == val);
|
|
|
|
|
const matchingItem = this.detailList.find(item => item.nameCode == val)
|
|
|
|
|
if (matchingItem) {
|
|
|
|
|
this.newProductData.distributeLevelUnit = matchingItem.packUnit;
|
|
|
|
|
this.newProductData.distributeLevelUnit = matchingItem.packUnit
|
|
|
|
|
this.newProductData.distributeLevel = matchingItem.packLevel
|
|
|
|
|
}
|
|
|
|
|
calculateDistCount(matchingItem).then((res) => {
|
|
|
|
|
this.newProductData = {
|
|
|
|
|
...this.newProductData,
|
|
|
|
|
distributeLevelCount: res.data.distributeLevelCount,
|
|
|
|
|
distributeLevelCount: res.data.distributeLevelCount
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
useLevelDiChange(val) {
|
|
|
|
|
const matchingItem = this.detailList.find(item => item.nameCode == val);
|
|
|
|
|
const matchingItem = this.detailList.find(item => item.nameCode == val)
|
|
|
|
|
if (matchingItem) {
|
|
|
|
|
this.newProductData.useLevelUnit = matchingItem.packUnit;
|
|
|
|
|
this.newProductData.useLevel = matchingItem.packLevel;
|
|
|
|
|
this.newProductData.useLevelUnit = matchingItem.packUnit
|
|
|
|
|
this.newProductData.useLevel = matchingItem.packLevel
|
|
|
|
|
}
|
|
|
|
|
calculateUseCount(matchingItem).then((res) => {
|
|
|
|
|
this.newProductData = {
|
|
|
|
|
...this.newProductData,
|
|
|
|
|
useLeverCount: res.data.useLeverCount,
|
|
|
|
|
useLeverCount: res.data.useLeverCount
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
@ -912,31 +931,31 @@ export default {
|
|
|
|
|
*/
|
|
|
|
|
getThirdSysDetail() {
|
|
|
|
|
let query = {
|
|
|
|
|
id: this.relevanceEdit.id,
|
|
|
|
|
};
|
|
|
|
|
id: this.relevanceEdit.id
|
|
|
|
|
}
|
|
|
|
|
thirdSysDetail(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.sysList = response.data.list || [];
|
|
|
|
|
this.resetThirdId();
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.sysList = response.data.list || []
|
|
|
|
|
this.resetThirdId()
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.sysList = [];
|
|
|
|
|
});
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.sysList = []
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
resetThirdId() {
|
|
|
|
|
this.sysList.forEach((item) => {
|
|
|
|
|
if (item.sysId === "thirdId") {
|
|
|
|
|
this.newProductData.thirdId = item.thirdId;
|
|
|
|
|
} else if (item.sysId === "thirdId1") {
|
|
|
|
|
this.newProductData.thirdId1 = item.thirdId;
|
|
|
|
|
} else if (item.sysId === "thirdId2") {
|
|
|
|
|
this.newProductData.thirdId2 = item.thirdId;
|
|
|
|
|
} else if (item.sysId === "thirdId3") {
|
|
|
|
|
this.newProductData.thirdId3 = item.thirdId;
|
|
|
|
|
} else if (item.sysId === "thirdId4") {
|
|
|
|
|
this.newProductData.thirdId4 = item.thirdId;
|
|
|
|
|
if (item.sysId === 'thirdId') {
|
|
|
|
|
this.newProductData.thirdId = item.thirdId
|
|
|
|
|
} else if (item.sysId === 'thirdId1') {
|
|
|
|
|
this.newProductData.thirdId1 = item.thirdId
|
|
|
|
|
} else if (item.sysId === 'thirdId2') {
|
|
|
|
|
this.newProductData.thirdId2 = item.thirdId
|
|
|
|
|
} else if (item.sysId === 'thirdId3') {
|
|
|
|
|
this.newProductData.thirdId3 = item.thirdId
|
|
|
|
|
} else if (item.sysId === 'thirdId4') {
|
|
|
|
|
this.newProductData.thirdId4 = item.thirdId
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
@ -944,58 +963,58 @@ export default {
|
|
|
|
|
* 关联 第三方
|
|
|
|
|
*/
|
|
|
|
|
addSelectErp(row) {
|
|
|
|
|
this.defaultSys = row.sysId;
|
|
|
|
|
this.isImport = false;
|
|
|
|
|
this.chooseHouseDrugVisible = true;
|
|
|
|
|
this.defaultSys = row.sysId
|
|
|
|
|
this.isImport = false
|
|
|
|
|
this.chooseHouseDrugVisible = true
|
|
|
|
|
},
|
|
|
|
|
removeErp(row) {
|
|
|
|
|
this.$confirm("此操作将解除该绑定药品信息, 是否继续?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
this.$confirm('此操作将解除该绑定药品信息, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
let query = {
|
|
|
|
|
relId: this.relId,
|
|
|
|
|
thirdSys: row.sysId
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
removeRl(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "解绑成功!",
|
|
|
|
|
});
|
|
|
|
|
this.getThirdSysDetail();
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: '解绑成功!'
|
|
|
|
|
})
|
|
|
|
|
this.getThirdSysDetail()
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.$message.error(response.message)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
closeUdi(val) {
|
|
|
|
|
this.chooseHouseDrugVisible = false;
|
|
|
|
|
this.getThirdSysDetail();
|
|
|
|
|
},
|
|
|
|
|
this.chooseHouseDrugVisible = false
|
|
|
|
|
this.getThirdSysDetail()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
if (this.rowData != null) {
|
|
|
|
|
this.newProductData = this.rowData
|
|
|
|
|
this.newProductData.cpmctymc = this.rowData.cpmctymc
|
|
|
|
|
this.newProductData.registerNo = this.rowData.zczbhhzbapzbh
|
|
|
|
|
this.newProductData.zczbhhzbapzbh = this.rowData.zczbhhzbapzbh
|
|
|
|
|
if (this.rowData.requireScanCode == 1) {
|
|
|
|
|
this.status = true
|
|
|
|
|
} else {
|
|
|
|
|
this.status = false
|
|
|
|
|
}
|
|
|
|
|
this.getDetailList();
|
|
|
|
|
this.getDetailList()
|
|
|
|
|
this.getThirdSysDetail()
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
this.selectedIndex = 0
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|