|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-form :model="newProductData" :rules="formRules" label-width="120px" ref="dataForm">
|
|
|
|
|
<el-form :model="newProductData" :rules="formRules" label-width="140px" ref="dataForm">
|
|
|
|
|
<el-collapse v-model="activeNames">
|
|
|
|
|
<el-collapse-item name="1">
|
|
|
|
|
<template slot="title">
|
|
|
|
@ -21,53 +21,73 @@
|
|
|
|
|
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">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input v-model="productData.nameCode"
|
|
|
|
|
placeholder="" style="width: 100%"
|
|
|
|
|
<el-input size="small" v-model="scope.row.nameCode" style="width: 100%;margin: 4px;"
|
|
|
|
|
|
|
|
|
|
:disabled="scope.$index !== selectedIndex"
|
|
|
|
|
></el-input>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="包装级别" prop="packLevel" show-overflow-tooltip width="160">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input v-model="productData.packLevel"
|
|
|
|
|
placeholder="" style="width: 100%"
|
|
|
|
|
<el-input size="small" v-model="scope.row.packLevel" style="width: 100%"
|
|
|
|
|
type="number"
|
|
|
|
|
:disabled="scope.$index !== selectedIndex"
|
|
|
|
|
></el-input>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="层级单位" prop="packUnit" show-overflow-tooltip width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input v-model="productData.packUnit"
|
|
|
|
|
placeholder="" style="width: 100%"
|
|
|
|
|
<el-input size="small" v-model="scope.row.packUnit" style="width: 100%"
|
|
|
|
|
:disabled="scope.$index !== selectedIndex"
|
|
|
|
|
></el-input>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="上级标识" prop="sjcpbm" show-overflow-tooltip width="160">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input v-model="productData.packUnit"
|
|
|
|
|
placeholder="" style="width: 100%;margin: 5px"
|
|
|
|
|
<el-input size="small" v-model="scope.row.sjcpbm" style="width: 100%"
|
|
|
|
|
:disabled="scope.$index !== selectedIndex"
|
|
|
|
|
></el-input>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="下级标识" prop="bhxjcpbm" show-overflow-tooltip width="160">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input v-model="productData.packUnit"
|
|
|
|
|
placeholder="" style="width: 100%"
|
|
|
|
|
<el-input size="small" v-model="scope.row.bhxjcpbm" style="width: 100%"
|
|
|
|
|
:disabled="scope.$index !== selectedIndex"
|
|
|
|
|
></el-input>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="下级数量" prop="bhxjsl" show-overflow-tooltip width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-input v-model="productData.bhxjsl"
|
|
|
|
|
<el-input size="small" v-model="scope.row.bhxjsl" style="width: 100%"
|
|
|
|
|
type="number"
|
|
|
|
|
placeholder="" style="width: 100%"
|
|
|
|
|
:disabled="scope.$index !== selectedIndex"
|
|
|
|
|
></el-input>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="180px">
|
|
|
|
|
<el-table-column label="操作" width="180px" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click.native="levelSave(productData)">保存</el-button>
|
|
|
|
|
<el-button type="text">删除</el-button>
|
|
|
|
|
<el-button type="text" size="small" v-if="scope.$index == selectedIndex" @click.stop="true"
|
|
|
|
|
@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)"
|
|
|
|
|
>编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.stop="true"
|
|
|
|
|
:disabled="scope.$index == selectedIndex || scope.row.id == null"
|
|
|
|
|
@click.native="deleteLevel(scope.$index, scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -241,51 +261,6 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<!-- <el-row type="flex">-->
|
|
|
|
|
<!-- <el-col :span="11" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="产品类别:" prop="cplb">-->
|
|
|
|
|
<!-- <el-input style="width: 90%" size="small" placeholder="请输入产品类别" v-model.trim="newProductData.cplb"></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="11" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="分类编码:" prop="flbm">-->
|
|
|
|
|
<!-- <el-select-->
|
|
|
|
|
<!-- size="small"-->
|
|
|
|
|
<!-- v-model="newProductData.flbm"-->
|
|
|
|
|
<!-- filterable-->
|
|
|
|
|
<!-- remote-->
|
|
|
|
|
<!-- clearable="true"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- reserve-keyword-->
|
|
|
|
|
<!-- placeholder="请选择"-->
|
|
|
|
|
<!-- :loading="loading"-->
|
|
|
|
|
<!-- @change="classifyChange()"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
<!-- v-for="item in classifyList"-->
|
|
|
|
|
<!-- :key="item.code"-->
|
|
|
|
|
<!-- :label="item.name"-->
|
|
|
|
|
<!-- :value="item.code">-->
|
|
|
|
|
<!-- <span>{{ item.code }}</span>-->
|
|
|
|
|
<!-- <span>{{ item.name }}</span>-->
|
|
|
|
|
<!-- </el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!--<!– <el-input style="width: 90%" size="small" placeholder="请输入分类编码" v-model.trim="newProductData.flbm"></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="sptm">-->
|
|
|
|
|
<!-- <el-input style="width: 90%" size="small" placeholder="请输入商品条码" v-model.trim="newProductData.sptm"></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="11" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="医保编码:" prop="ybbm">-->
|
|
|
|
|
<!-- <el-input style="width: 90%" size="small" placeholder="请输入医保编码" v-model.trim="newProductData.ybbm" v-debounce-input:500ms="getYbHcData" ></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="tyshxydm">
|
|
|
|
@ -302,13 +277,6 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!--<el-col :span="11" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="产品描述:" prop="cpms">-->
|
|
|
|
|
<!-- <el-input style="width: 90%" type="textarea" size="mini" rows="1" placeholder="请输入产品描述"-->
|
|
|
|
|
<!-- v-model.trim="newProductData.cpms"-->
|
|
|
|
|
<!-- ></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row type="flex">
|
|
|
|
@ -322,7 +290,80 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-collapse-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-collapse-item name="3">
|
|
|
|
|
<template slot="title">
|
|
|
|
|
<p class="form-title">参数设置</p>
|
|
|
|
|
</template>
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="流通计量层级标识:" prop="distributeLevelDi" label-width="160px">
|
|
|
|
|
<el-select v-model="newProductData.distributeLevelDi" size="small" style="width: 90%"
|
|
|
|
|
@change="distributeLevelDiChange"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择流通计量层级标识">
|
|
|
|
|
<el-option
|
|
|
|
|
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>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="使用计量层级标识:" prop="useLevelDi" label-width="160px">
|
|
|
|
|
<el-select v-model="newProductData.useLevelDi" size="small" style="width: 90%"
|
|
|
|
|
@change="useLevelDiChange"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择流通计量层级标识">
|
|
|
|
|
<el-option
|
|
|
|
|
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>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="流通计量层级单位:" prop="distributeLevelUnit" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入流通计量层级单位"
|
|
|
|
|
disabled
|
|
|
|
|
v-model="newProductData.distributeLevelUnit"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="使用计量层级标识:" prop="useLevelUnit" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入使用计量层级标识"
|
|
|
|
|
disabled
|
|
|
|
|
v-model.trim="newProductData.useLevelUnit"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="流通时含计量单元数量:" prop="distributeLevelCount" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入流通时包含计量单元的数量"
|
|
|
|
|
v-model.trim="newProductData.distributeLevelCount"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="使用时含计量单元数量:" prop="useLeverCount" label-width="160px">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入使用时包含计量单元的数量"
|
|
|
|
|
v-model.trim="newProductData.useLeverCount"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-collapse-item>
|
|
|
|
|
<el-collapse-item name="4">
|
|
|
|
|
<template slot="title">
|
|
|
|
|
<p class="form-title">高级设置</p>
|
|
|
|
|
</template>
|
|
|
|
@ -345,10 +386,6 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-divider direction="vertical"></el-divider>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<!--<el-select v-model="newProductData.status" style="width: 65%" placeholder="状态" clearable>-->
|
|
|
|
|
<!-- <el-option label="是" :value=1></el-option>-->
|
|
|
|
|
<!-- <el-option label="否" :value=0></el-option>-->
|
|
|
|
|
<!--</el-select>-->
|
|
|
|
|
<el-switch
|
|
|
|
|
v-model="status"
|
|
|
|
|
active-color="#13ce66"
|
|
|
|
@ -372,8 +409,16 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {getYbHcflDetail, addProduct, addDrug, updatetDrug} from '@/api/basic/product/udiRelevance'
|
|
|
|
|
import {
|
|
|
|
|
getYbHcflDetail,
|
|
|
|
|
addProduct,
|
|
|
|
|
addDrug,
|
|
|
|
|
updatetDrug,
|
|
|
|
|
delDrugLevel,
|
|
|
|
|
updateLevelDrug
|
|
|
|
|
} from '@/api/basic/product/udiRelevance'
|
|
|
|
|
import {filterClassify} from '@/api/purchase/classifyCode'
|
|
|
|
|
import {filterByUuid} from "@/api/basic/product/udiInfo";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'drugAdd',
|
|
|
|
@ -387,6 +432,7 @@ export default {
|
|
|
|
|
required: false
|
|
|
|
|
},
|
|
|
|
|
type: {
|
|
|
|
|
//1:新增;2:编辑
|
|
|
|
|
type: Object,
|
|
|
|
|
required: false
|
|
|
|
|
}
|
|
|
|
@ -403,10 +449,19 @@ export default {
|
|
|
|
|
manufactory: null,
|
|
|
|
|
ybbm: null,
|
|
|
|
|
cpms: null,
|
|
|
|
|
|
|
|
|
|
productsType: 2,
|
|
|
|
|
//高级设置默认开启扫码
|
|
|
|
|
status: false
|
|
|
|
|
status: false,
|
|
|
|
|
relId: null,
|
|
|
|
|
drugLevelLists: [],
|
|
|
|
|
|
|
|
|
|
useLevelDi: null,
|
|
|
|
|
distributeLevelDi: null,
|
|
|
|
|
distributeLevelUnit: null,
|
|
|
|
|
useLeverCount: null,
|
|
|
|
|
distributeLevelCount: null,
|
|
|
|
|
useLevelUnit: null
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
thirdSys: [],
|
|
|
|
|
classifyList: [],
|
|
|
|
@ -452,7 +507,9 @@ export default {
|
|
|
|
|
{nameCode: '', packLevel: null, bhxjsl: null, isDisabled: false, isUpDisabled: true, rowDisabled: false}
|
|
|
|
|
],
|
|
|
|
|
status: false,
|
|
|
|
|
rowDisabled: false
|
|
|
|
|
rowDisabled: false,
|
|
|
|
|
selectedIndex: null,
|
|
|
|
|
loading: false,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
@ -501,6 +558,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
saveNewProduct() {
|
|
|
|
|
this.addProductDialogVisible = false
|
|
|
|
|
//新增
|
|
|
|
|
if (this.type == 1) {
|
|
|
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
@ -509,13 +567,33 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
this.newProductData.requireScanCode = 0
|
|
|
|
|
}
|
|
|
|
|
let detailList = this.detailList.map(item => ({
|
|
|
|
|
nameCode: item.nameCode,
|
|
|
|
|
packLevel: item.packLevel,
|
|
|
|
|
bhxjsl: item.bhxjsl
|
|
|
|
|
}));
|
|
|
|
|
this.newProductData.drugLevelLists = detailList
|
|
|
|
|
this.saveLoading = true
|
|
|
|
|
if (this.detailList.length <= 0) {
|
|
|
|
|
this.$message.error('请先添加药品层级标识')
|
|
|
|
|
return
|
|
|
|
|
} else {
|
|
|
|
|
const validateItem = (item, fieldName, errorMessage) => {
|
|
|
|
|
if (!item[fieldName]) {
|
|
|
|
|
this.$message.error(errorMessage);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
};
|
|
|
|
|
for (let i = 0; i < this.detailList.length; i++) {
|
|
|
|
|
const item = this.detailList[i];
|
|
|
|
|
if (!validateItem(item, 'nameCode', '药品层级标识不能为空!') ||
|
|
|
|
|
!validateItem(item, 'packLevel', '包装级别不能为空') ||
|
|
|
|
|
!validateItem(item, 'packUnit', '层级单位不能为空')) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const isLevel1 = this.detailList.some(item => item.packLevel === 1);
|
|
|
|
|
if (!isLevel1) {
|
|
|
|
|
this.$message.error('药品层级缺少一级标识!');
|
|
|
|
|
}
|
|
|
|
|
this.newProductData.drugLevelLists = this.detailList;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
addDrug(this.newProductData).then((res) => {
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
@ -539,14 +617,15 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
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.$message.success('保存成功')
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error('失败')
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
@ -558,26 +637,38 @@ export default {
|
|
|
|
|
|
|
|
|
|
//层级保存
|
|
|
|
|
levelSave(row) {
|
|
|
|
|
const isNotEmpty = row.nameCode || row.packLevel || row.bhxjsl;
|
|
|
|
|
if (!isNotEmpty) {
|
|
|
|
|
return this.$message.error("至少填写一个属性");
|
|
|
|
|
if (row.nameCode == null) {
|
|
|
|
|
this.$message.error("层级标识不能为空");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (row.packLevel == null) {
|
|
|
|
|
this.$message.error("包装级别不能为空");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (row.packUnit == null) {
|
|
|
|
|
this.$message.error("层级单位不能为空");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
let editQuery = {
|
|
|
|
|
nameCode: row.nameCode,
|
|
|
|
|
packLevel: row.packLevel,
|
|
|
|
|
packUnit: row.packUnit,
|
|
|
|
|
sjcpbm: row.sjcpbm,
|
|
|
|
|
bhxjcpbm: row.bhxjcpbm,
|
|
|
|
|
bhxjsl: row.bhxjsl,
|
|
|
|
|
relId: this.newProductData.id,
|
|
|
|
|
uuid: this.newProductData.uuid
|
|
|
|
|
}
|
|
|
|
|
row.isDisabled = true
|
|
|
|
|
row.isUpDisabled = false
|
|
|
|
|
row.rowDisabled = true
|
|
|
|
|
// //药品层级的数据
|
|
|
|
|
// if ( this.drugLevelList.length > 0){
|
|
|
|
|
// //根据下标更新 this.drugLevelList 数据
|
|
|
|
|
// const index = this.detailList.indexOf(row);
|
|
|
|
|
// this.$set(this.drugLevelList, index, {
|
|
|
|
|
// ...this.drugLevelList[index],
|
|
|
|
|
// nameCode: row.nameCode,
|
|
|
|
|
// packLevel: row.packLevel,
|
|
|
|
|
// bhxjsl: row.bhxjsl,
|
|
|
|
|
// });
|
|
|
|
|
// }else {
|
|
|
|
|
// this.drugLevelList.push(data)
|
|
|
|
|
// }
|
|
|
|
|
updateLevelDrug(editQuery).then(res => {
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.$message.success("保存成功!");
|
|
|
|
|
if (this.newProductData.id != null)
|
|
|
|
|
this.getDetailList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
update(row) {
|
|
|
|
|
row.isDisabled = false
|
|
|
|
@ -585,7 +676,6 @@ export default {
|
|
|
|
|
row.rowDisabled = false
|
|
|
|
|
},
|
|
|
|
|
addDrugLevel() {
|
|
|
|
|
// 添加新数据到detailList
|
|
|
|
|
this.detailList.push({
|
|
|
|
|
nameCode: '',
|
|
|
|
|
packLevel: null,
|
|
|
|
@ -595,16 +685,64 @@ export default {
|
|
|
|
|
isUpDisabled: true
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
remove(row) {
|
|
|
|
|
// 从 detailList 中删除当前行数据
|
|
|
|
|
const index = this.detailList.indexOf(row);
|
|
|
|
|
if (index == 0) {
|
|
|
|
|
return this.$message.error("至少添加一层")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rowChange(index, val) {
|
|
|
|
|
this.selectedIndex = index;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
deleteLevel(index, row) {
|
|
|
|
|
this.$confirm('此操作将删除该层级,是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
let params = {nameCode: row.nameCode};
|
|
|
|
|
delDrugLevel(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("删除成功");
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//获取层级标识
|
|
|
|
|
getDetailList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
if (this.newProductData.uuid != null) {
|
|
|
|
|
let query = {
|
|
|
|
|
uuid: this.newProductData.uuid,
|
|
|
|
|
id: this.newProductData.id
|
|
|
|
|
}
|
|
|
|
|
filterByUuid(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.detailList = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (index !== -1) {
|
|
|
|
|
this.detailList.splice(index, 1);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
distributeLevelDiChange(val) {
|
|
|
|
|
|
|
|
|
|
const matchingItem = this.detailList.find(item => item.nameCode == val);
|
|
|
|
|
if (matchingItem) {
|
|
|
|
|
this.newProductData.distributeLevelUnit = matchingItem.packUnit;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
useLevelDiChange(val) {
|
|
|
|
|
const matchingItem = this.detailList.find(item => item.nameCode == val);
|
|
|
|
|
if (matchingItem) {
|
|
|
|
|
this.newProductData.useLevelUnit = matchingItem.packUnit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
if (this.rowData != null) {
|
|
|
|
@ -616,6 +754,7 @@ export default {
|
|
|
|
|
} else {
|
|
|
|
|
this.status = false
|
|
|
|
|
}
|
|
|
|
|
this.getDetailList();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
directives: {
|
|
|
|
|