12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490 |
- <template>
- <div class="layout_display_flex_y">
- <div class="obviousBox">
- <searchArea :searchData="searchData" @submit="searchByForm"></searchArea>
- </div>
- <div class="layout_display_flex_y">
- <el-tabs class="el-tabs__fill" v-model="editableTabsValue" type="border-card" @tab-click="handleClick">
- <div style="padding: 6px; background-color: #fff;">
- <el-button type="primary" icon="Plus" @click="onAddItem" style="margin-left: 5px">新增</el-button>
- </div>
- <el-tab-pane key="ypClass" label="供应商字典" name="ypClass" style="height: 90%;">
- <div class="layout_display_flex_y">
- <div class="layout_flex_1-y">
- <el-table
- :data="ypClassData.slice(pageSizeClass * (currentPageClass - 1), pageSizeClass * currentPageClass)"
- border style="width: 100%" height="100%" stripe highlight-current-row
- class="ypClassTable normal-size">
- <el-table-column prop="code" label="供应商编码" width="80">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.code"></el-input>
- <span v-else>{{ scope.row.code }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="供应商名称" width="200">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="pyCode" label="拼音码" width="140" />
- <el-table-column prop="dcode" label="五笔码" width="140" />
- <el-table-column prop="name" label="厂商类型" width="200">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="地址" width="200">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="电话" width="140">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- =<el-table-column prop="name" label="账号" width="140">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="开户银行" width="140">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="delFlag" label="是否停用" width="100">
- <template v-slot="scope">
- <div v-if="scope.row.isEdit">
- <el-select v-model="scope.row.delFlag" clearable placeholder="请选择是否停用">
- <el-option v-for="option in delFlagOptions" :key="option.code"
- :label="option.name" :value="option.code"></el-option>
- </el-select>
- </div>
- <div v-else>
- <el-select v-model="scope.row.delFlag" disabled placeholder="请选择是否无效">
- <el-option v-for="option in delFlagOptions" :key="option.code"
- :label="option.name" :value="option.code"></el-option>
- </el-select>
- </div>
- </template>
- </el-table-column>
- <el-table-column fixed="right" label="操作" min-width="180" width="180" center>
- <template #default="scope">
- <el-button type="primary" size="small" v-if="!scope.row.isEdit"
- @click="editYpClass(scope.row)">编辑</el-button>
- <el-button type="primary" size="small" v-if="scope.row.isEdit"
- @click="updateYpClass(scope.row)">保存</el-button>
- <el-button type="primary" size="small" v-if="scope.row.isEdit"
- @click="cancelYpClass(scope.row)">取消
- </el-button>
- <el-button type="danger" size="small"
- @click.prevent="deleteYpClass(scope.$index, scope.row)">
- 删除
- </el-button>
- <el-button type="success" size="small"
- v-if="!scope.row.isEdit && scope.row.delFlag === '1'"
- @click.prevent="deleteYpClass(scope.$index, scope.row)">
- 启用
- </el-button>
- <el-button type="info" size="small"
- v-if="!scope.row.isEdit && scope.row.delFlag === '0'"
- @click.prevent="deleteYpClass(scope.$index, scope.row)">
- 停用
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div>
- <el-pagination :current-page="currentPageClass" :page-size="pageSizeClass"
- :page-sizes="[10, 15, 20, 25]" :total="ypClassData.length"
- layout="total, sizes, prev, pager, next, jumper" style="margin-top: 5px"
- @size-change="handleSizeChangeClass" @current-change="handleCurrentChangeClass">
- </el-pagination>
- </div>
- </div>
- </el-tab-pane>
- <el-tab-pane key="drugKind" label="生产厂家字典" name="drugKind" style="height: 90%;">
- <div class="layout_display_flex_y">
- <div class="layout_flex_1-y">
- <el-table
- :data="drugKindData.slice(pageSizeKind * (currentPageKind - 1), pageSizeKind * currentPageKind)"
- border style="width: 100%" height="100%" stripe highlight-current-row
- class="drugKindTable normal-size">
- <el-table-column prop="code" label="厂家编码" width="80">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.code"></el-input>
- <span v-else>{{ scope.row.code }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="厂家名称" width="200">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="pyCode" label="拼音码" width="140" />
- <el-table-column prop="dcode" label="五笔码" width="140" />
- <el-table-column prop="name" label="厂商类型" width="200">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="地址" width="200">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="电话" width="140">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- =<el-table-column prop="name" label="账号" width="140">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="name" label="开户银行" width="140">
- <template v-slot="scope">
- <el-input v-if="scope.row.isEdit" size="small"
- v-model="scope.row.name"></el-input>
- <span v-else>{{ scope.row.name }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="delFlag" label="是否停用" width="100">
- <template v-slot="scope">
- <div v-if="scope.row.isEdit">
- <el-select v-model="scope.row.delFlag" clearable placeholder="请选择是否停用">
- <el-option v-for="option in delFlagOptions" :key="option.code"
- :label="option.name" :value="option.code"></el-option>
- </el-select>
- </div>
- <div v-else>
- <el-select v-model="scope.row.delFlag" disabled placeholder="请选择是否无效">
- <el-option v-for="option in delFlagOptions" :key="option.code"
- :label="option.name" :value="option.code"></el-option>
- </el-select>
- </div>
- </template>
- </el-table-column>
- <el-table-column fixed="right" label="操作" min-width="180" width="180" center>
- <template #default="scope">
- <el-button type="primary" size="small" v-if="!scope.row.isEdit"
- @click="editYpClass(scope.row)">编辑</el-button>
- <el-button type="primary" size="small" v-if="scope.row.isEdit"
- @click="updateYpClass(scope.row)">保存</el-button>
- <el-button type="primary" size="small" v-if="scope.row.isEdit"
- @click="cancelYpClass(scope.row)">取消
- </el-button>
- <el-button type="danger" size="small"
- @click.prevent="deleteYpClass(scope.$index, scope.row)">
- 删除
- </el-button>
- <el-button type="success" size="small"
- v-if="!scope.row.isEdit && scope.row.delFlag === '1'"
- @click.prevent="deleteYpClass(scope.$index, scope.row)">
- 启用
- </el-button>
- <el-button type="info" size="small"
- v-if="!scope.row.isEdit && scope.row.delFlag === '0'"
- @click.prevent="deleteYpClass(scope.$index, scope.row)">
- 停用
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div>
- <el-pagination :current-page="currentPageKind" :page-size="pageSizeKind"
- :page-sizes="[10, 15, 20, 25]" :total="drugKindData.length"
- layout="total, sizes, prev, pager, next, jumper" style="margin-top: 5px"
- @size-change="handleSizeChangeKind" @current-change="handleCurrentChangeKind">
- </el-pagination>
- </div>
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- <el-dialog v-model="centerDialogVisible" :title="'新增' + currentTabLabel" width="500" center>
- <template #footer>
- <el-form :model="addItemForm" label-width="auto" style="max-width: 600px">
- <el-row type="flex" justify="center" :gutter="0">
- <el-col :span="colSize">
- <el-form-item label="供应商名称">
- <el-input v-model="addItemForm.name" />
- </el-form-item>
- </el-col>
- <el-col :span="colSize">
- <el-form-item label="厂商类型">
- <el-select v-model="addItemForm.region" placeholder="please select your zone">
- <el-option label="Zone one" value="shanghai" />
- <el-option label="Zone two" value="beijing" />
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row type="flex" justify="center" :gutter="0">
- <el-col :span="colSize">
- <el-form-item label="地址">
- <el-input v-model="addItemForm.name" />
- </el-form-item>
- </el-col>
- <el-col :span="colSize">
- <el-form-item label="电话">
- <el-input v-model="addItemForm.name" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row type="flex" justify="center" :gutter="0">
- <el-col :span="colSize">
- <el-form-item label="账号">
- <el-input v-model="addItemForm.name" />
- </el-form-item>
- </el-col>
- <el-col :span="colSize">
- <el-form-item label="开户银行">
- <el-input v-model="addItemForm.name" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row type="flex" justify="center" :gutter="0">
- <el-col :span="colSize">
- <el-form-item label="是否停用">
- <el-select v-model="addItemForm.region" placeholder="please select your zone">
- <el-option label="停用" value="1" />
- <el-option label="启用" value="0" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="colSize">
- </el-col>
- </el-row>
- </el-form>
- <div class="dialog-footer">
- <el-button @click="centerDialogVisible = false">Cancel</el-button>
- <el-button type="primary" @click="centerDialogVisible = false">
- Confirm
- </el-button>
- </div>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup name="YpDict">
- import { ref, onMounted, nextTick } from 'vue'
- import { ElMessage, ElMessageBox } from 'element-plus'
- import {
- selectYpClass, saveYpClass, delYpClassByCode,
- selectDrugKind, saveDrugKind, delDrugKindByCode,
- selectYpDosage, saveYpDosage, delYpDosageByCode,
- selectYpUnit, saveYpUnit, delYpUnitByCode,
- selectYpChargeGroup, saveYpChargeGroup, delYpChargeGroupByCode,
- selectYpVisibleFlag, updateYpVisibleFlag,
- selectYpSupply, saveYpSupply, delYpSupplyByCode,
- selectYpManuFactory, saveYpManuFactory, delYpManuFactoryByCode
- } from '@/api/yp-dict/yp-dict-base.js'
- import searchArea from '@/components/searchArea/index.vue';
- const editableTabsValue = ref('ypClass')
- const msgTip = '分类编码(code)有变更,原始字典记录存在关联,请谨慎做更改,是否确认!!!'
- const delFlagOptions = [{ code: '0', name: '启用' }, { code: '1', name: '停用' }]
- const searchData = ref([
- {
- label: '企业名称',
- key: 'vehicleName',
- type: 'input',
- value: '',
- clearable: true,
- },
- ])
- let addItemForm = reactive({})
- let centerDialogVisible = ref(false)
- let currentTabLabel = ref('供应商')
- const colSize = ref(12)
- const pageSizeClass = ref(20)
- const currentPageClass = ref(1)
- const handleSizeChangeClass = (val) => {
- pageSizeClass.value = val
- }
- const handleCurrentChangeClass = (val) => {
- currentPageClass.value = val
- }
- const pageSizeKind = ref(20)
- const currentPageKind = ref(1)
- const handleSizeChangeKind = (val) => {
- pageSizeKind.value = val
- }
- const handleCurrentChangeKind = (val) => {
- currentPageKind.value = val
- }
- const pageSizeDosage = ref(20)
- const currentPageDosage = ref(1)
- const pageSizeUnit = ref(20)
- const currentPageUnit = ref(1)
- const pageSize = ref(20)
- const currentPage = ref(1)
- const pageSizeSupply = ref(20)
- const currentPageSupply = ref(1)
- const pageSizeManuFactory = ref(20)
- const currentPageManuFactory = ref(1)
- const ypClassData = ref([])
- const drugKindData = ref([])
- const ypDosageData = ref([])
- const ypUnitData = ref([])
- const ypChargeGroupData = ref([])
- const visibleFlagData = ref([])
- const ypSupplyData = ref([])
- const ypManuFactoryData = ref([])
- const text = ref('')
- onMounted(() => {
- nextTick(() => {
- queryYpClass()
- })
- })
- //搜索表单方法
- const searchByForm = (form) => {
- console.log("search", form)
- }
- // 查询药品字典-药性字典
- const queryYpClass = () => {
- selectYpClass(text.value)
- .then((res) => {
- res.forEach(row => {
- // 是否标记
- row['isEdit'] = false
- // 是否新增
- row['isAdd'] = false
- })
- ypClassData.value = res
- })
- .catch(() => {
- ypClassData.value = []
- })
- }
- // 查询药品字典-药品分类字典
- const queryDrugKind = () => {
- selectDrugKind(text.value)
- .then((res) => {
- res.forEach(row => {
- // 是否标记
- row['isEdit'] = false
- // 是否新增
- row['isAdd'] = false
- })
- drugKindData.value = res
- })
- .catch(() => {
- drugKindData.value = []
- })
- }
- // 查询药房药品停用情况
- const flagFilter = ref('')
- const queryVisibleFlag = () => {
- selectYpVisibleFlag(text.value, flagFilter.value)
- .then((res) => {
- res.forEach(row => {
- // 是否标记
- row['isEdit'] = false
- // 是否新增
- row['isAdd'] = false
- })
- visibleFlagData.value = res
- })
- .catch(() => {
- visibleFlagData.value = []
- })
- }
- // 查询
- const queryItem = () => {
- if (editableTabsValue.value === 'ypClass') {
- queryYpClass()
- } else if (editableTabsValue.value === 'drugKind') {
- queryDrugKind()
- }
- }
- // 新增行
- const onAddItem = () => {
- console.log('onAddItem')
- centerDialogVisible.value = true
- return
- if (editableTabsValue.value === 'ypClass') {
- let count
- if (ypClassData.value.length % pageSizeClass.value === 0) {
- count = Math.ceil(ypClassData.value.length / pageSizeClass.value) + 1
- } else {
- count = Math.ceil(ypClassData.value.length / pageSizeClass.value)
- }
- currentPageClass.value = count
- ypClassData.value.push({
- code: '',
- name: '',
- pyCode: '',
- dcode: '',
- delFlag: '',
- isEdit: true,
- isAdd: true,
- })
- const el = document.querySelector('.ypClassTable .el-scrollbar__wrap')
- const el2 = document.querySelector('.ypClassTable .el-table__body tbody')
- setTimeout(() => {
- const height = el2.clientHeight - el.clientHeight
- if (height > 0) {
- el.scrollTop = height
- }
- }, 100)
- } else if (editableTabsValue.value === 'drugKind') {
- let count
- if (drugKindData.value.length % pageSizeKind.value === 0) {
- count = Math.ceil(drugKindData.value.length / pageSizeKind.value) + 1
- } else {
- count = Math.ceil(drugKindData.value.length / pageSizeKind.value)
- }
- currentPageKind.value = count
- drugKindData.value.push({
- code: '',
- name: '',
- pyCode: '',
- dcode: '',
- ypType: '',
- mzBillCode: '',
- zyBillCode: '',
- isEdit: true,
- isAdd: true,
- })
- const el = document.querySelector('.drugKindTable .el-scrollbar__wrap')
- const el2 = document.querySelector('.drugKindTable .el-table__body tbody')
- setTimeout(() => {
- const height = el2.clientHeight - el.clientHeight
- if (height > 0) {
- el.scrollTop = height
- }
- }, 100)
- }
- }
- // 药品字典-药性字典增删改存开始
- // 编辑
- const editYpClass = (row) => {
- // 备份原始数据
- row['oldRow'] = JSON.parse(JSON.stringify(row))
- row.isEdit = true
- }
- // 取消
- const cancelYpClass = (row) => {
- // 如果是新增的数据
- if (row.isAdd) {
- ypClassData.value.splice(ypClassData.value.length - 1, 1)
- } else {
- // 不是新增的数据 还原数据
- for (const i in row.oldRow) {
- row[i] = row.oldRow[i]
- }
- }
- }
- // 保存
- const updateYpClass = (row) => {
- if (!row.code || !row.name) {
- ElMessage({
- type: "warning",
- message: "药性字典编码或名称不存在,请检查!",
- duration: 2500,
- showClose: true,
- });
- return
- }
- if (row.isAdd) {
- let fe = 0
- for (let num in ypClassData.value) {
- if (ypClassData.value[num].code === row.code) {
- fe++
- }
- }
- if (fe === 2) {
- ElMessage({
- type: "warning",
- message: "存在重复的药性字典,请核对!",
- duration: 2500,
- showClose: true,
- });
- } else {
- callSaveYpClass(row, null)
- }
- } else {
- let oldCode = row.oldRow.code
- if (oldCode !== row.code) {
- ElMessageBox.confirm(msgTip, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- callSaveYpClass(row, oldCode)
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpClass()
- }
- })
- } else {
- callSaveYpClass(row, oldCode)
- }
- }
- }
- const callSaveYpClass = (row, oldCode) => {
- let title = '请确认是否保存<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- saveYpClass(row).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- if (oldCode !== null && oldCode !== row.code) {
- // 删除原始数据
- delYpClassByCode(oldCode).then((res) => {
- queryYpClass()
- })
- } else {
- queryYpClass()
- }
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpClass()
- }
- })
- }
- const deleteYpClass = (index, row) => {
- let title = '请确认是否删除<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- delYpClassByCode(row.code).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- queryYpClass()
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpClass()
- }
- })
- }
- const callSaveDrugKind = (row, oldCode) => {
- let title = '请确认是否保存<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- saveDrugKind(row).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- if (oldCode !== null && oldCode !== row.code) {
- // 删除原始数据
- delDrugKindByCode(oldCode).then((res) => {
- queryDrugKind()
- })
- } else {
- queryDrugKind()
- }
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryDrugKind()
- }
- })
- }
- const deleteDrugKind = (index, row) => {
- let title = '请确认是否删除<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- delDrugKindByCode(row.code).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- queryDrugKind()
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryDrugKind()
- }
- })
- }
- // 药品字典-药品分类字典增删改存结束
- // 药品字典-药品剂型字典增删改存开始
- // 编辑
- const editYpDosage = (row) => {
- // 备份原始数据
- row['oldRow'] = JSON.parse(JSON.stringify(row))
- row.isEdit = true
- }
- // 取消
- const cancelYpDosage = (row) => {
- // 如果是新增的数据
- if (row.isAdd) {
- ypDosageData.value.splice(ypDosageData.value.length - 1, 1)
- } else {
- // 不是新增的数据 还原数据
- for (const i in row.oldRow) {
- row[i] = row.oldRow[i]
- }
- }
- }
- // 保存
- const updateYpDosage = (row) => {
- if (!row.code || !row.name) {
- ElMessage({
- type: "warning",
- message: "药品剂型字典编码或名称不存在,请检查!",
- duration: 2500,
- showClose: true,
- });
- return
- }
- if (row.isAdd) {
- let fe = 0
- for (let num in ypDosageData.value) {
- if (ypDosageData.value[num].code === row.code) {
- fe++
- }
- }
- if (fe === 2) {
- ElMessage({
- type: "warning",
- message: "存在重复的药品剂型字典,请核对!",
- duration: 2500,
- showClose: true,
- });
- } else {
- callSaveYpDosage(row, null)
- }
- } else {
- let oldCode = row.oldRow.code
- if (oldCode !== row.code) {
- ElMessageBox.confirm(msgTip, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- callSaveYpDosage(row, oldCode)
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpDosage()
- }
- })
- } else {
- callSaveYpDosage(row, oldCode)
- }
- }
- }
- const callSaveYpDosage = (row, oldCode) => {
- let title = '请确认是否保存<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- saveYpDosage(row).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- if (oldCode !== null && oldCode !== row.code) {
- // 删除原始数据
- delYpDosageByCode(oldCode).then((res) => {
- queryYpDosage()
- })
- } else {
- queryYpDosage()
- }
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpDosage()
- }
- })
- }
- const deleteYpDosage = (index, row) => {
- let title = '请确认是否删除<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- delYpDosageByCode(row.code).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- queryYpDosage()
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpDosage()
- }
- })
- }
- // 药品字典-药品剂型字典增删改存结束
- // 药品字典-药品单位字典增删改存开始
- // 编辑
- const editYpUnit = (row) => {
- // 备份原始数据
- row['oldRow'] = JSON.parse(JSON.stringify(row))
- row.isEdit = true
- }
- // 取消
- const cancelYpUnit = (row) => {
- // 如果是新增的数据
- if (row.isAdd) {
- ypUnitData.value.splice(ypUnitData.value.length - 1, 1)
- } else {
- // 不是新增的数据 还原数据
- for (const i in row.oldRow) {
- row[i] = row.oldRow[i]
- }
- }
- }
- // 保存
- const updateYpUnit = (row) => {
- if (!row.code || !row.name) {
- ElMessage({
- type: "warning",
- message: "药品单位字典编码或名称不存在,请检查!",
- duration: 2500,
- showClose: true,
- });
- return
- }
- if (row.isAdd) {
- let fe = 0
- for (let num in ypUnitData.value) {
- if (ypUnitData.value[num].code === row.code) {
- fe++
- }
- }
- if (fe === 2) {
- ElMessage({
- type: "warning",
- message: "存在重复的药品单位字典,请核对!",
- duration: 2500,
- showClose: true,
- });
- } else {
- callSaveYpUnit(row, null)
- }
- } else {
- let oldCode = row.oldRow.code
- if (oldCode !== row.code) {
- ElMessageBox.confirm(msgTip, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- callSaveYpUnit(row, oldCode)
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpUnit()
- }
- })
- } else {
- callSaveYpUnit(row, oldCode)
- }
- }
- }
- const callSaveYpUnit = (row, oldCode) => {
- let title = '请确认是否保存<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- saveYpUnit(row).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- // 若修改了主键code,则需要删除原来的记录
- if (oldCode !== null && oldCode !== row.code) {
- // 删除原始数据
- delYpUnitByCode(oldCode).then((res) => {
- queryYpUnit()
- })
- } else {
- queryYpUnit()
- }
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpUnit()
- }
- })
- }
- const deleteYpUnit = (index, row) => {
- let title = '请确认是否删除<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- delYpUnitByCode(row.code).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- queryYpUnit()
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpUnit()
- }
- })
- }
- // 药品字典-药品单位字典增删改存结束
- // 药品字典-药品费别字典增删改存开始
- // 编辑
- const editYpChargeGroup = (row) => {
- // 备份原始数据
- row['oldRow'] = JSON.parse(JSON.stringify(row))
- row.isEdit = true
- }
- // 取消
- const cancelYpChargeGroup = (row, index) => {
- // 如果是新增的数据
- if (row.isAdd) {
- ypChargeGroupData.value.splice(index, 1)
- } else {
- // 不是新增的数据 还原数据
- for (const i in row.oldRow) {
- row[i] = row.oldRow[i]
- }
- }
- }
- // 保存
- const updateYpChargeGroup = (row) => {
- if (!row.code || !row.name) {
- ElMessage({
- type: "warning",
- message: "药品费别字典编码或名称不存在,请检查!",
- duration: 2500,
- showClose: true,
- });
- return
- }
- if (row.isAdd) {
- let fe = 0
- for (let num in ypChargeGroupData.value) {
- if (ypChargeGroupData.value[num].code === row.code) {
- fe++
- }
- }
- if (fe === 2) {
- ElMessage({
- type: "warning",
- message: "存在重复的药品费别字典,请核对!",
- duration: 2500,
- showClose: true,
- });
- } else {
- callSaveYpChargeGroup(row, null)
- }
- } else {
- let oldCode = row.oldRow.code
- if (oldCode !== row.code) {
- ElMessageBox.confirm(msgTip, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- callSaveYpChargeGroup(row, oldCode)
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpChargeGroup()
- }
- })
- } else {
- callSaveYpChargeGroup(row, oldCode)
- }
- }
- }
- const callSaveYpChargeGroup = (row, oldCode) => {
- let title = '请确认是否保存<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- saveYpChargeGroup(row).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- if (oldCode !== null && oldCode !== row.code) {
- // 删除原始数据
- delYpChargeGroupByCode(oldCode).then((res) => {
- queryYpChargeGroup()
- })
- } else {
- queryYpChargeGroup()
- }
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpChargeGroup()
- }
- })
- }
- const deleteYpChargeGroup = (index, row) => {
- let title = '请确认是否删除<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- delYpChargeGroupByCode(row.code).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- queryYpChargeGroup()
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpChargeGroup()
- }
- })
- }
- // 药品字典-药品费别字典增删改存结束
- // 药房药品住院停用增删改存开始
- // 编辑
- const editVisibleFlag = (row) => {
- // 备份原始数据
- row['oldRow'] = JSON.parse(JSON.stringify(row))
- row.isEdit = true
- }
- // 取消
- const cancelVisibleFlag = (row, index) => {
- // 如果是新增的数据
- if (row.isAdd) {
- visibleFlagData.value.splice(index, 1)
- } else {
- // 不是新增的数据 还原数据
- for (const i in row.oldRow) {
- row[i] = row.oldRow[i]
- }
- }
- }
- // 保存
- const updateVisibleFlag = (row) => {
- if (!row.chargeCode || !row.groupNo) {
- ElMessage({
- type: "warning",
- message: "药房药品停用的药品编码或药房编码不存在,请检查!",
- duration: 2500,
- showClose: true,
- });
- return
- }
- if (row.isAdd) {
- ElMessage({
- type: "warning",
- message: "不能新增药房药品停用,需先维护药品信息!",
- duration: 2500,
- showClose: true,
- });
- } else {
- callSaveVisibleFlag(row)
- }
- }
- const callSaveVisibleFlag = (row) => {
- let title = '请确认是否保存<span style="color:#d12020;">' + row.drug + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- updateYpVisibleFlag(row).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- queryVisibleFlag()
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryVisibleFlag()
- }
- })
- }
- // 药房药品住院停用增删改存结束
- // 药品字典-药品供应商字典增删改存开始
- // 编辑
- const editYpSupply = (row) => {
- // 备份原始数据
- row['oldRow'] = JSON.parse(JSON.stringify(row))
- row.isEdit = true
- }
- // 取消
- const cancelYpSupply = (row, index) => {
- // 如果是新增的数据
- if (row.isAdd) {
- ypSupplyData.value.splice(ypSupplyData.value.length - 1, 1)
- } else {
- // 不是新增的数据 还原数据
- for (const i in row.oldRow) {
- row[i] = row.oldRow[i]
- }
- }
- }
- // 保存
- const updateYpSupply = (row) => {
- if (!row.code || !row.name) {
- ElMessage({
- type: "warning",
- message: "药品供应商字典编码或名称不存在,请检查!",
- duration: 2500,
- showClose: true,
- });
- return
- }
- if (row.isAdd) {
- let fe = 0
- for (let num in ypSupplyData.value) {
- if (ypSupplyData.value[num].code === row.code) {
- fe++
- }
- }
- if (fe === 2) {
- ElMessage({
- type: "warning",
- message: "存在重复的药品供应商字典,请核对!",
- duration: 2500,
- showClose: true,
- });
- } else {
- callSaveYpSupply(row, null)
- }
- } else {
- let oldCode = row.oldRow.code
- if (oldCode !== row.code) {
- ElMessageBox.confirm(msgTip, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- callSaveYpSupply(row, oldCode)
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpSupply()
- }
- })
- } else {
- callSaveYpSupply(row, oldCode)
- }
- }
- }
- const callSaveYpSupply = (row, oldCode) => {
- let title = '请确认是否保存<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- saveYpSupply(row).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- if (oldCode !== null && oldCode !== row.code) {
- // 删除原始数据
- delYpSupplyByCode(oldCode).then((res) => {
- queryYpSupply()
- })
- } else {
- queryYpSupply()
- }
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpSupply()
- }
- })
- }
- const deleteYpSupply = (index, row) => {
- let title = '请确认是否删除<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- delYpSupplyByCode(row.code).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- queryYpSupply()
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpSupply()
- }
- })
- }
- // 药品字典-药品供应商字典增删改存结束
- // 药品字典-生产厂家字典增删改存开始
- // 编辑
- const editYpManuFactory = (row) => {
- // 备份原始数据
- row['oldRow'] = JSON.parse(JSON.stringify(row))
- row.isEdit = true
- }
- // 取消
- const cancelYpManuFactory = (row) => {
- // 如果是新增的数据
- if (row.isAdd) {
- ypManuFactoryData.value.splice(ypManuFactoryData.value.length - 1, 1)
- } else {
- // 不是新增的数据 还原数据
- for (const i in row.oldRow) {
- row[i] = row.oldRow[i]
- }
- }
- }
- // 保存
- const updateYpManuFactory = (row) => {
- if (!row.code || !row.name) {
- ElMessage({
- type: "warning",
- message: "生产厂家字典编码或名称不存在,请检查!",
- duration: 2500,
- showClose: true,
- });
- return
- }
- if (row.isAdd) {
- let fe = 0
- for (let num in ypManuFactoryData.value) {
- if (ypManuFactoryData.value[num].code === row.code) {
- fe++
- }
- }
- if (fe === 2) {
- ElMessage({
- type: "warning",
- message: "存在重复的生产厂家字典,请核对!",
- duration: 2500,
- showClose: true,
- });
- } else {
- callSaveYpManuFactory(row, null)
- }
- } else {
- let oldCode = row.oldRow.code
- if (oldCode !== row.code) {
- ElMessageBox.confirm(msgTip, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- callSaveYpManuFactory(row, oldCode)
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpManuFactory()
- }
- })
- } else {
- callSaveYpManuFactory(row, oldCode)
- }
- }
- }
- const callSaveYpManuFactory = (row, oldCode) => {
- let title = '请确认是否保存<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- saveYpManuFactory(row).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- if (oldCode !== null && oldCode !== row.code) {
- // 删除原始数据
- delYpManuFactoryByCode(oldCode).then((res) => {
- queryYpManuFactory()
- })
- } else {
- queryYpManuFactory()
- }
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpManuFactory()
- }
- })
- }
- const deleteYpManuFactory = (index, row) => {
- let title = '请确认是否删除<span style="color:#d12020;">' + row.name + '</span>?'
- ElMessageBox.confirm(title, {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- type: 'warning',
- distinguishCancelAndClose: true,
- dangerouslyUseHTMLString: true
- }).then(() => {
- delYpManuFactoryByCode(row.code).then((res) => {
- ElMessage({
- type: "success",
- message: res.cg,
- duration: 2500,
- showClose: true,
- });
- queryYpManuFactory()
- })
- }).catch((action) => {
- if (action === 'cancel') {
- queryYpManuFactory()
- }
- })
- }
- // 药品字典-生产厂家字典增删改存结束
- const exportData = () => {
- alert("功能建设中。。。")
- }
- const handleClick = (tab, event) => {
- // 查询哪个tab页面
- editableTabsValue.value = tab.props.name
- if (editableTabsValue.value === 'ypClass') {
- currentTabLabel.value = '供应商'
- queryYpClass()
- currentPageClass.value = 1
- } else if (editableTabsValue.value === 'drugKind') {
- currentTabLabel.value = '生产厂家'
- queryDrugKind()
- currentPageKind.value = 1
- } else if (editableTabsValue.value === 'ypDosage') {
- queryYpDosage()
- currentPageDosage.value = 1
- } else if (editableTabsValue.value === 'ypUnit') {
- queryYpUnit()
- currentPageUnit.value = 1
- } else if (editableTabsValue.value === 'ypChargeGroup') {
- queryYpChargeGroup()
- } else if (editableTabsValue.value === 'visibleFlag') {
- queryVisibleFlag()
- currentPage.value = 1
- } else if (editableTabsValue.value === 'ypSupply') {
- queryYpSupply()
- currentPageSupply.value = 1
- } else if (editableTabsValue.value === 'ypManuFactory') {
- queryYpManuFactory()
- currentPageManuFactory.value = 1
- }
- }
- const tableRowClassName = ({
- row,
- rowIndex,
- }) => {
- if (row.delFlag === '1') {
- return 'warning-row'
- }
- }
- </script>
- <style lang="scss" deep>
- .el-dialog__body {
- padding: 0 16px;
- height: calc(100% - 25px);
- }
- .el-tabs {
- height: calc(100% - 27px);
- .el-tabs__content {
- padding: 5px;
- height: calc(100% - 27px);
- }
- .el-tab-pane {
- height: calc(100% - 27px);
- overflow: auto;
- }
- .el-table__inner-wrapper {
- height: calc(100% - 10px) !important;
- }
- }
- .el-table .warning-row {
- --el-table-tr-bg-color: #dd7694;
- }
- </style>
|