|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
<div>
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<div>
|
|
|
|
|
<el-form :model="unionQuery" size="mini" label-width="125px">
|
|
|
|
|
<el-form :model="unionQuery" size="mini" label-width="125px" v-show="showSearch">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="18">
|
|
|
|
|
<el-form-item class="query-form-item" label="UDI码:">
|
|
|
|
@ -17,30 +17,30 @@
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item label="销售单元产品标识:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="unionQuery.nameCode" clearable="true"
|
|
|
|
|
placeholder="请输入完整DI"
|
|
|
|
|
@keyup.enter.native="keyup_submit($event)"
|
|
|
|
|
v-model="unionQuery.nameCode" clearable="true"
|
|
|
|
|
placeholder="请输入完整DI"
|
|
|
|
|
@keyup.enter.native="keyup_submit($event)"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item label="医疗器械注册人:" class="query-form-item">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="unionQuery.ylqxzcrbarmc"
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="医疗器械注册人"
|
|
|
|
|
:remote-method="findMethod"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
v-model="unionQuery.ylqxzcrbarmc"
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="医疗器械注册人"
|
|
|
|
|
:remote-method="findMethod"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fromOptions"
|
|
|
|
|
:key="item.ylqxzcrbarmc"
|
|
|
|
|
:label="item.ylqxzcrbarmc"
|
|
|
|
|
:value="item.ylqxzcrbarmc"
|
|
|
|
|
v-for="item in fromOptions"
|
|
|
|
|
:key="item.ylqxzcrbarmc"
|
|
|
|
|
:label="item.ylqxzcrbarmc"
|
|
|
|
|
:value="item.ylqxzcrbarmc"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.ylqxzcrbarmc }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
@ -50,112 +50,99 @@
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item label="器械通用名称:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
:disabled="unionQuery.ylqxzcrbarmc==null || unionQuery.ylqxzcrbarmc==''"
|
|
|
|
|
v-model="unionQuery.cpmctymc" clearable="true"
|
|
|
|
|
placeholder="器械通用名称"
|
|
|
|
|
:disabled="unionQuery.ylqxzcrbarmc==null || unionQuery.ylqxzcrbarmc==''"
|
|
|
|
|
v-model="unionQuery.cpmctymc" clearable="true"
|
|
|
|
|
placeholder="器械通用名称"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item label="规格型号:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="unionQuery.ggxh" clearable="true"
|
|
|
|
|
:disabled="(unionQuery.cpmctymc=='' && unionQuery.nameCode=='' && (unionQuery.ylqxzcrbarmc==null || unionQuery.ylqxzcrbarmc==''))"
|
|
|
|
|
placeholder="规格型号"
|
|
|
|
|
v-model="unionQuery.ggxh" clearable="true"
|
|
|
|
|
:disabled="(unionQuery.cpmctymc=='' && unionQuery.nameCode=='' && (unionQuery.ylqxzcrbarmc==null || unionQuery.ylqxzcrbarmc==''))"
|
|
|
|
|
placeholder="规格型号"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item label="注册证/备案号:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="unionQuery.zczbhhzbapzbh" clearable="true"
|
|
|
|
|
:disabled="(unionQuery.cpmctymc=='' && unionQuery.nameCode=='' && (unionQuery.ylqxzcrbarmc==null || unionQuery.ylqxzcrbarmc==''))"
|
|
|
|
|
placeholder="注册证/备案号"
|
|
|
|
|
v-model="unionQuery.zczbhhzbapzbh" clearable="true"
|
|
|
|
|
:disabled="(unionQuery.cpmctymc=='' && unionQuery.nameCode=='' && (unionQuery.ylqxzcrbarmc==null || unionQuery.ylqxzcrbarmc==''))"
|
|
|
|
|
placeholder="注册证/备案号"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
|
@click="onReset"
|
|
|
|
|
></el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="searchList" size="mini"
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" size="mini" icon="search" @click="checkCombine"
|
|
|
|
|
:loading="combineLoading"
|
|
|
|
|
>选入
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<!-- <el-button type="primary" size="mini" icon="search" @click="combineUdiAll"-->
|
|
|
|
|
<!-- v-if="relId==null"-->
|
|
|
|
|
<!-- >结果全部选入-->
|
|
|
|
|
<!-- </el-button-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</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="searchList">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-bottom-left" @click="checkCombine"
|
|
|
|
|
:loading="combineLoading"
|
|
|
|
|
>选入
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
|
:data="udidlList"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
highlight-current-row="true"
|
|
|
|
|
:row-class-name="tableRowClassName"
|
|
|
|
|
@current-change="handleErpChange"
|
|
|
|
|
@selection-change="handleSelectionUdiChange"
|
|
|
|
|
:data="udidlList"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
border
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
highlight-current-row="true"
|
|
|
|
|
:row-class-name="tableRowClassName"
|
|
|
|
|
@current-change="handleErpChange"
|
|
|
|
|
@selection-change="handleSelectionUdiChange"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="relId==null"
|
|
|
|
|
type="selection"
|
|
|
|
|
:selectable="checkSelectable"
|
|
|
|
|
width="55"
|
|
|
|
|
v-if="relId==null"
|
|
|
|
|
type="selection"
|
|
|
|
|
:selectable="checkSelectable"
|
|
|
|
|
width="55"
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="产品标识"
|
|
|
|
|
prop="nameCode"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
label="产品标识"
|
|
|
|
|
prop="nameCode"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="产品名称"
|
|
|
|
|
prop="cpmctymc"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
label="产品名称"
|
|
|
|
|
prop="cpmctymc"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="规格型号"
|
|
|
|
|
prop="ggxh"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
label="规格型号"
|
|
|
|
|
prop="ggxh"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="医疗器械注册人"
|
|
|
|
|
prop="ylqxzcrbarmc"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
label="医疗器械注册人"
|
|
|
|
|
prop="ylqxzcrbarmc"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="注册证编号"
|
|
|
|
|
prop="zczbhhzbapzbh"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
label="注册证编号"
|
|
|
|
|
prop="zczbhhzbapzbh"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click="diDetail(scope.row)"
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click="diDetail(scope.row)"
|
|
|
|
|
>详情
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -163,218 +150,179 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-pagination
|
|
|
|
|
:page-size="unionQuery.limit"
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="total"
|
|
|
|
|
:current-page="unionQuery.page"
|
|
|
|
|
></el-pagination>
|
|
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="unionQuery.page"
|
|
|
|
|
:limit.sync="unionQuery.limit"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-card class="el-card" v-if="isImport">
|
|
|
|
|
<div>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>产品名称: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
<el-form label-width="120px">
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="产品名称:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
v-model="data.cpmctymc"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>产品标识: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="产品标识:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.nameCode"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>规格型号: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="规格型号:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.ggxh"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>医疗器械注册人: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="医疗器械注册人:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="ylqxzcrbarmc"
|
|
|
|
|
v-model="data.ylqxzcrbarmc"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>注册人英文名称: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="注册人英文名称:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.ylqxzcrbarywmc"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>器械类别: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="器械类别:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.qxlb"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>产品类别: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="产品类别:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.cplb"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>分类编码: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="分类编码:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.flbm"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>商品条码: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="商品条码:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.sptm"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>医保编码: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="医保编码:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.ybbm"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>统一社会信用号: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="统一社会信用号:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.tyshxydm"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<div class="text item">
|
|
|
|
|
<div class="itemTag">
|
|
|
|
|
<span>注册证/备案号: </span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 60%"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="注册证/备案号:" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
:disabled="true"
|
|
|
|
|
size="small"
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
v-model="data.zczbhhzbapzbh"
|
|
|
|
|
></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="器械信息详情"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:visible.sync="selectDialog"
|
|
|
|
|
width="65%"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="selectDialog"
|
|
|
|
|
title="器械信息详情"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:visible.sync="selectDialog"
|
|
|
|
|
width="65%"
|
|
|
|
|
append-to-body
|
|
|
|
|
v-if="selectDialog"
|
|
|
|
|
>
|
|
|
|
|
<selectDiDetail :editQuery="diDetails"
|
|
|
|
|
></selectDiDetail>
|
|
|
|
@ -442,8 +390,8 @@ export default {
|
|
|
|
|
checked: true,
|
|
|
|
|
udidlList: [],
|
|
|
|
|
erpList: [],
|
|
|
|
|
pageTotal: 1,
|
|
|
|
|
total: 1,
|
|
|
|
|
pageTotal: 0,
|
|
|
|
|
total: 0,
|
|
|
|
|
currentRow: null,
|
|
|
|
|
fromOptions: [],
|
|
|
|
|
loading: false,
|
|
|
|
@ -451,6 +399,7 @@ export default {
|
|
|
|
|
multipleUdiSelection: [],
|
|
|
|
|
selectDialog: false,
|
|
|
|
|
diDetails: null,
|
|
|
|
|
showSearch: true,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -470,8 +419,7 @@ export default {
|
|
|
|
|
zczbhhzbapzbh: "",
|
|
|
|
|
isCheck: 1
|
|
|
|
|
},
|
|
|
|
|
this.actDateRange = [];
|
|
|
|
|
// this.getList();
|
|
|
|
|
this.actDateRange = [];
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
searchList() {
|
|
|
|
@ -481,64 +429,39 @@ export default {
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
|
if (
|
|
|
|
|
this.unionQuery.udiCode == "" &&
|
|
|
|
|
this.unionQuery.nameCode == "" &&
|
|
|
|
|
this.unionQuery.cpmctymc == "" &&
|
|
|
|
|
this.unionQuery.ylqxzcrbarmc == "" &&
|
|
|
|
|
this.unionQuery.ggxh == "" &&
|
|
|
|
|
this.unionQuery.zczbhhzbapzbh == ""
|
|
|
|
|
this.unionQuery.udiCode == "" &&
|
|
|
|
|
this.unionQuery.nameCode == "" &&
|
|
|
|
|
this.unionQuery.cpmctymc == "" &&
|
|
|
|
|
this.unionQuery.ylqxzcrbarmc == "" &&
|
|
|
|
|
this.unionQuery.ggxh == "" &&
|
|
|
|
|
this.unionQuery.zczbhhzbapzbh == ""
|
|
|
|
|
) {
|
|
|
|
|
this.$message.warning("请输入查询条件");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.loading = true;
|
|
|
|
|
// this.unionQuery.page = 1;
|
|
|
|
|
getUdiInfos(this.unionQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.udidlList = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.udidlList = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.udidlList = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.udidlList = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
combineUdiAll() {
|
|
|
|
|
this.$confirm("此操作将在后台自动下载所有查询结果, 是否继续?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
combineAllUdi(this.unionQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success(response.data);
|
|
|
|
|
this.$emit("closeUdi", true);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
hideSearch() {
|
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
keyup_submit(event) {
|
|
|
|
|
this.unionQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
@ -550,7 +473,6 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
diDetail(row) {
|
|
|
|
|
|
|
|
|
|
this.diDetails = row;
|
|
|
|
|
this.selectDialog = true;
|
|
|
|
|
},
|
|
|
|
@ -597,51 +519,51 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.combineLoading = true;
|
|
|
|
|
checkExitUdi(this.combineQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.combineLoading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.combine();
|
|
|
|
|
// combineUdi(this.combineQuery)
|
|
|
|
|
// .then((response) => {
|
|
|
|
|
// this.combineLoading = false;
|
|
|
|
|
// if (response.code == 20000) {
|
|
|
|
|
// this.$emit("closeUdi", true);
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$emit("closeUdi", false);
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// .catch(() => {
|
|
|
|
|
// this.combineLoading = false;
|
|
|
|
|
// this.$emit("closeUdi", false);
|
|
|
|
|
// });
|
|
|
|
|
} else if (response.code == 499) {
|
|
|
|
|
this.$confirm(response.message, {type: "warning"})
|
|
|
|
|
.then(_ => {
|
|
|
|
|
this.combine();
|
|
|
|
|
// combineUdi(this.combineQuery)
|
|
|
|
|
// .then((response) => {
|
|
|
|
|
// this.combineLoading = false;
|
|
|
|
|
// if (response.code == 20000) {
|
|
|
|
|
// this.$emit("closeUdi", true);
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$emit("closeUdi", false);
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// .catch(() => {
|
|
|
|
|
// this.combineLoading = false;
|
|
|
|
|
// this.$emit("closeUdi", false);
|
|
|
|
|
// });
|
|
|
|
|
})
|
|
|
|
|
.catch(_ => {
|
|
|
|
|
|
|
|
|
|
this.combineQuery.keys = [];
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.combineLoading = false;
|
|
|
|
|
this.$emit("closeUdi", false);
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.combineLoading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.combine();
|
|
|
|
|
// combineUdi(this.combineQuery)
|
|
|
|
|
// .then((response) => {
|
|
|
|
|
// this.combineLoading = false;
|
|
|
|
|
// if (response.code == 20000) {
|
|
|
|
|
// this.$emit("closeUdi", true);
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$emit("closeUdi", false);
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// .catch(() => {
|
|
|
|
|
// this.combineLoading = false;
|
|
|
|
|
// this.$emit("closeUdi", false);
|
|
|
|
|
// });
|
|
|
|
|
} else if (response.code == 499) {
|
|
|
|
|
this.$confirm(response.message, {type: "warning"})
|
|
|
|
|
.then(_ => {
|
|
|
|
|
this.combine();
|
|
|
|
|
// combineUdi(this.combineQuery)
|
|
|
|
|
// .then((response) => {
|
|
|
|
|
// this.combineLoading = false;
|
|
|
|
|
// if (response.code == 20000) {
|
|
|
|
|
// this.$emit("closeUdi", true);
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$emit("closeUdi", false);
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// .catch(() => {
|
|
|
|
|
// this.combineLoading = false;
|
|
|
|
|
// this.$emit("closeUdi", false);
|
|
|
|
|
// });
|
|
|
|
|
})
|
|
|
|
|
.catch(_ => {
|
|
|
|
|
|
|
|
|
|
this.combineQuery.keys = [];
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.combineLoading = false;
|
|
|
|
|
this.$emit("closeUdi", false);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
@ -653,20 +575,20 @@ export default {
|
|
|
|
|
this.combineQuery.erpName = this.data.thirdName;
|
|
|
|
|
}
|
|
|
|
|
combineUdi(this.combineQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.combineLoading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$emit("closeUdi", true);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.$emit("closeUdi", false);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.combineLoading = false;
|
|
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.combineLoading = false;
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$emit("closeUdi", true);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.$emit("closeUdi", false);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.combineLoading = false;
|
|
|
|
|
|
|
|
|
|
this.$emit("closeUdi", false);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleSelectionUdiChange(val) {
|
|
|
|
@ -679,14 +601,14 @@ export default {
|
|
|
|
|
limit: 10,
|
|
|
|
|
};
|
|
|
|
|
filterCompany(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromOptions = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromOptions = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|