123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292 |
- <template>
- <div class="main-contain new-main-contain">
- <div class="position">
- <bread-crumb :crumbs='crumbs'></bread-crumb>
- </div>
- <div class="app-container" style="display:flex;flex: 1;padding: 10px 20px 0px 20px;">
- <div class="mainLeft">
- <div class="mainCell" style="justify-content: space-between;">
- <p style="font-size:14px;">未就诊:<span>{{cal_one}}</span>人</p>
- <p style="font-size:14px;">已就诊:<span>{{cal_two}}</span>人</p>
- </div>
- <div class="mainCell">
- <el-radio-group v-model="radio" @change="change">
- <el-radio :label="1">未就诊</el-radio>
- <el-radio :label="2">已就诊</el-radio>
- <el-radio :label="0">全部</el-radio>
- </el-radio-group>
- </div>
- <div class="mainCell" style="margin-bottom:10px;">
- <el-input size="small" placeholder="请输入姓名或就诊号" @input="searchAction" @keyup.enter.native='searchAction'
- v-model="search_input" class="filter-item"/>
- <el-button size="small" style="margin-left:10px;" class="filter-item" type="primary" @click="searchAction">
- 搜索
- </el-button>
- </div>
- <div>
- <el-table :data="patientTableData" :height="tableHeight" @row-click='choosePatient'
- @current-change='currentChange' border style="width: 100%;"
- :row-style="{ color: '#303133' }"
- :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
- highlight-current-row
- ref="tab"
- >
- <el-table-column prop="name" label="姓名" width='89'>
- <template slot-scope="scope">{{scope.row.name}}</template>
- </el-table-column>
- <el-table-column prop="name" label="就诊号" width="110">
- <template slot-scope="scope">{{ scope.row.his_patient ?scope.row.his_patient.number:''}}</template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- <div class="mainRight">
- <div class="mainHeader">
- <el-tabs v-model="titleType" @tab-click="handleClick"
- style="position: fixed;width: calc(100% - 490px);background:#fff;">
- <el-tab-pane label="电子处方" name="电子处方"></el-tab-pane>
- <el-tab-pane label="电子病历" name="电子病历"></el-tab-pane>
- </el-tabs>
- <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子处方'">
- <el-button size="small" ref="button_one" @click="open(1)" type="primary" v-loading="saveLoading">保存
- </el-button>
- <el-button size="small" ref="button_three" @click="open_two()" type="primary">处方调用</el-button>
- <el-popover
- placement="bottom"
- width="200"
- trigger="click">
- <el-button size="small" ref="button_two" @click="open(2)">处方单</el-button>
- <el-button size="small" ref="button_six" @click="open(6)">治疗单</el-button>
- <el-button slot="reference" style="margin:0 10px;" type="primary" size="small">打印</el-button>
-
- </el-popover>
- <!--<el-button size="small" ref="button_four" @click="open(5)" type="primary" :disabled='prescriptions && prescriptions[0].advices && prescriptions[0].project ? prescriptions[0].advices.length == 0 && prescriptions[0].project.length == 0 : false'>存模板</el-button> -->
- </div>
- <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子病历'">
- <el-button size="small" @click="opentwo(1)" type="primary">保存</el-button>
- <el-button size="small" @click="opentwo(2)" type="primary">打印</el-button>
- <el-button size="small" @click="opentwo(3)" type="primary">病历调用</el-button>
- <el-button size="small" @click="opentwo(4)" type="primary">存模板</el-button>
- </div>
- </div>
- <!--<desk-prescription ref="prescriptions" :prescriptions="prescriptions" :patientInfo="patientInfo" :hisPatientInfo="hisPatientInfo"-->
- <!--v-if="titleType == '处方'" style="flex:1;"></desk-prescription>-->
- <desk-prescription v-on:setData="setData" :diagnoses="diagnoses" :loading="isloading"
- :other_sick="other_sick" :record_date="record_date"
- v-on:change="changeOther"
- :month_prescriptions="month_prescriptions"
- ref="prescriptions" :prescriptions="prescriptions" :patientInfo="patientInfo"
- :hisPatientInfo="hisPatientInfo" @event1="changetwo($event)"
- v-if="titleType == '电子处方'" style="flex:1;" ></desk-prescription>
-
-
- <desk-record :record_date="record_date" :case_history="case_history" :patientInfo="patientInfo"
- :hisPatientInfo="hisPatientInfo" v-if="titleType == '电子病历'" :detalid="detalid"
- ref="child"></desk-record>
-
- <medicalRecord ref='medicalRecord' @func="getMsgFormSon"></medicalRecord>
- <saveRecordTemplate ref='saveRecordTemplate'></saveRecordTemplate>
- </div>
-
- </div>
-
- <el-dialog
- title="处方打印"
- :visible.sync="centerDialogVisible"
- width="600px"
- center>
- <el-table
- ref="multipleTable"
- :data="tableData"
- tooltip-effect="dark"
- style="width: 600px"
-
- @selection-change="handleSelectionChange">
- <el-table-column
- align='center'
- type="selection"
- width="50">
- </el-table-column>
- <el-table-column
- align='center'
- label="处方编号"
- width="120">
- <template slot-scope="scope">
- <span>处方 {{scope.$index + 1}}</span>
- </template>
- </el-table-column>
- <el-table-column label="处方号">
- <template slot-scope="scope">
- <span>
- <el-input v-model="scope.row.prescription_number" :disabled="true"></el-input>
- </span>
- </template>
- </el-table-column>
- </el-table>
- <el-dialog
- class="centerDialog"
- width="600px"
- title="打印"
- :visible.sync="innerVisible"
- append-to-body>
-
- <print v-if="index == 2" :paramsObj='paramsObj'></print>
- <treatPrint v-if="index == 6" :paramsObj='paramsObj'></treatPrint>
- </el-dialog>
- <span slot="footer" class="dialog-footer">
- <el-button @click="centerDialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="savePrint">确 定</el-button>
- </span>
- </el-dialog>
- <el-dialog
- class="centerDialog"
- width="600px"
- title="打印"
- :visible.sync="recordVisible">
- <recordPrint :patientid="patientid" ref="recordPrint"></recordPrint>
- </el-dialog>
-
- </div>
- </template>
-
- <script>
- import BreadCrumb from '@/xt_pages/components/bread-crumb'
- import deskPrescription from './components/deskPrescription'
- import deskRecord from './components/deskRecord'
- import {createCaseHistory, getPatientInfo, getSchedulePatientList} from '@/api/his/his'
- import {getDictionaryDataConfig} from '@/utils/data'
- import medicalRecord from './components/medicalRecord'
- import saveRecordTemplate from './components/saveRecordTemplate'
- import {uParseTime} from '@/utils/tools'
- import {getPrescriptionList} from "@/api/project/project"
- import print from './print'
- import treatPrint from './treatPrint'
- import recordPrint from './recordPrint'
-
- const moment = require('moment');
-
- export default {
- components: {
- BreadCrumb,
- deskPrescription,
- deskRecord,
- medicalRecord,
- saveRecordTemplate,
- print,
- treatPrint,
- recordPrint
- },
- data() {
- return {
- tableHeight: '',
- saveloading: false,
- fullHeight: document.documentElement.clientHeight,
- month_prescriptions: [],
- isloading:false,
- prescriptions: [
- {
- name: '处方1',
- advices: [],
- project: [],
- addition: [],
- }
- ],
- search_input: '',
- cal_one: 0,
- cal_two: 0,
- radio: 1,
- record_date: '',
- crumbs: [
- {path: false, name: '门诊医生站'},
- {path: false, name: '医生工作台'}
- ],
- titleType: '电子处方',
- patientTableData: [{}],
- patientTableDataTwo: [{}],
- patientInfo: {},
- hisPatientInfo: {},
- case_history: {},
- patient_id: 0,
- diagnoses: [],
- other_sick: [],
- info: {},
- templatedetail: {},
- detalid: 0,
- prescription_id: 0,
- doctors: [],
- department: [],
- patientid: 0,
- prescriptionList: [],
- centerDialogVisible: false,
- tableData: [],
- selecting_schs: [],
- index: 0,
- admin_info: {},
- saveLoading: false,
- innerVisible: false,
- paramsObj: {},
- recordVisible: false,
- recordObj: {},
- additions: [],
-
- }
- },
- methods: {
- changeOther(patient_id){
- this.radio = 2;
- let params = {
- 'record_date': this.record_date,
- 'type': this.radio
- };
- this.patientTableData = [];
-
- getSchedulePatientList(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false
- } else {
- this.patientTableData = response.data.data.list;
- this.patientTableDataTwo = response.data.data.list;
- this.cal_one = response.data.data.total_one;
- this.cal_two = response.data.data.total_two;
- this.admin_info = response.data.data.info;
-
-
- if (this.patientTableData.length > 0) {
- for(let i = 0; i < this.patientTableData.length; i++){
- if (this.patientTableData[i].id == patient_id){
- this.$refs.tab.setCurrentRow(this.patientTableData[i]);
- this.oldCurrentRow = this.patientTableData[i];
- this.getPatientInfo(this.patientTableData[i])
- }
- }
-
- }
-
- this.prescriptionList = response.data.data.list.prescription
-
- }
- })
-
- },
- setData(val) {
- this.prescriptions = val
- },
- getDictionaryDataConfig(module, filed_name) {
- return getDictionaryDataConfig(module, filed_name)
-
- },
-
- searchAction() {
- if (this.search_input.length == 0) {
- this.patientTableData = this.patientTableDataTwo
- } else {
- let arr = [];
- for (let i = 0; i < this.patientTableData.length; i++) {
- if (this.patientTableData[i].name.indexOf(this.search_input) != -1 || this.patientTableData[i].his_patient.number.indexOf(this.search_input) != -1) {
- arr = arr.concat(this.patientTableData[i])
- }
- }
- this.patientTableData = arr
-
- }
-
-
- },
- // changeTab() {
- // this.saveLoading = false
- //
- // this.radio = 2
- // let params = {
- // 'record_date': this.record_date,
- // 'type': this.radio
- // }
- // this.patientTableData = []
- // getSchedulePatientList(params).then(response => {
- // if (response.data.state == 0) {
- // this.$message.error(response.data.msg)
- // return false
- // } else {
- // this.patientTableData = response.data.data.list
- // this.patientTableDataTwo = response.data.data.list
- // this.cal_one = response.data.data.total_one
- // this.cal_two = response.data.data.total_two
- // this.admin_info = response.data.data.info
- // for (let i = 0; i < this.patientTableData.length; i++) {
- // if (this.patientTableData[i].id == this.patientid) {
- // this.$refs.tab.setCurrentRow(this.patientTableData[i])
- // this.getPatientInfo(this.patientTableData[i])
- //
- // }
- // }
- //
- //
- // }
- // })
- //
- // },
- change() {
- let params = {
- 'record_date': this.record_date,
- 'type': this.radio
- };
- this.patientTableData = [];
-
- getSchedulePatientList(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false
- } else {
- this.patientTableData = response.data.data.list;
- this.patientTableDataTwo = response.data.data.list;
- this.cal_one = response.data.data.total_one;
- this.cal_two = response.data.data.total_two;
- this.admin_info = response.data.data.info;
-
- if (this.patientTableData.length > 0) {
- this.$refs.tab.setCurrentRow(this.patientTableData[0]);
- this.oldCurrentRow = this.patientTableData[0];
-
- this.getPatientInfo(this.patientTableData[0])
- }
-
- this.prescriptionList = response.data.data.list.prescription
-
- // this.patientid = this.patientTableData[0].patient_id
-
- }
- })
- },
- setMonthPrescription(month_prescriptions) {
- console.log("11111111");
- console.log(month_prescriptions);
-
-
- this.month_prescriptions = [];
-
- let drug_month_prescriptions = {
- advices: []
- };
- let drug_ids = [];
- let project_month_prescriptions = {
- project: []
-
- };
- let project_ids = [];
-
- let addition_month_prescriptions = {
- addition: []
-
- };
- let additions_ids = [];
-
- for (let i = 0; i < month_prescriptions.length; i++) {
- if (month_prescriptions[i].type == 1) { //药品
- for (let a = 0; a < month_prescriptions[i].advices.length; a++) {
- let obj = {
- id: month_prescriptions[i].advices[a].drug_id,
- price:month_prescriptions[i].advices[a].price,
-
- };
- drug_ids.push(obj);
- drug_month_prescriptions.advices.push(month_prescriptions[i].advices[a])
- }
-
- } else if (month_prescriptions[i].type == 2) { //项目
- for (let a = 0; a < month_prescriptions[i].project.length; a++) {
- let obj = {
- id: month_prescriptions[i].project[a].project_id,
- price:month_prescriptions[i].project[a].price,
-
- };
- project_ids.push(obj);
- project_month_prescriptions.project.push(month_prescriptions[i].project[a])
- }
- }
- //附加收费
- for (let a = 0; a < month_prescriptions[i].addition.length; a++) {
- let obj = {
- id: month_prescriptions[i].addition[a].item_id,
- price:month_prescriptions[i].addition[a].price,
-
- };
- additions_ids.push(obj);
- addition_month_prescriptions.addition.push(month_prescriptions[i].addition[a])
-
- }
-
- }
- console.log("00000000000000");
- console.log(drug_ids);
- console.log(project_ids);
- console.log(additions_ids);
- console.log("00000000000000");
-
-
- const obj = {};
- const obj1 = {};
- const obj2 = {};
-
- drug_ids = drug_ids.reduce((cur, next) => {
- obj[next.price] ? '' : obj[next.price] = true && cur.push(next);
- return cur
- }, []); // 设置cur默认类型为数组,并且初始值为空的数组
- project_ids = project_ids.reduce((cur, next) => {
- obj[next.price] ? '' : obj[next.price] = true && cur.push(next);
- return cur
- }, []); // 设置cur默认类型为数组,并且初始值为空的数组
- additions_ids = additions_ids.reduce((cur, next) => {
- obj[next.price] ? '' : obj[next.price] = true && cur.push(next);
- return cur
- }, []); // 设置cur默认类型为数组,并且初始值为空的数组
-
-
-
- let drugs = [];
- let projects = [];
- let additions = [];
-
- for (let i = 0; i < drug_ids.length; i++) {
- let obj = {};
- let count = 0;
- for (let a = 0; a < drug_month_prescriptions.advices.length; a++) {
- if (drug_ids[i].price == drug_month_prescriptions.advices[a].price) {
- obj['drug_name'] = drug_month_prescriptions.advices[a].advice_name;
- obj['single_dose'] = drug_month_prescriptions.advices[a].single_dose;
- obj['delivery_way'] = drug_month_prescriptions.advices[a].delivery_way;
- obj['execution_frequency'] = drug_month_prescriptions.advices[a].execution_frequency;
- obj['day'] = drug_month_prescriptions.advices[a].day;
- // obj['prescribing_number'] = obj['prescribing_number'] + drug_month_prescriptions.advices[a].prescribing_number
- obj['prescribing_number_unit'] = drug_month_prescriptions.advices[a].prescribing_number_unit;
- obj['medical_insurance_number'] = drug_month_prescriptions.advices[a].drug.medical_insurance_number;
- obj['id'] = drug_month_prescriptions.advices[a].drug_id;
- // obj['retail_price'] = obj['retail_price'] + drug_month_prescriptions.advices[a].drug.retail_price
- obj['retail_price'] = parseFloat(drug_month_prescriptions.advices[a].price);
- count = count + drug_month_prescriptions.advices[a].prescribing_number
-
- }
- }
- obj['prescribing_number'] = count;
- drugs.push(obj)
- }
-
- for (let i = 0; i < project_ids.length; i++) {
- let obj = {};
- let count = 0;
- for (let a = 0; a < project_month_prescriptions.project.length; a++) {
- if (project_ids[i].price == project_month_prescriptions.project[a].price) {
- obj['project_name'] = project_month_prescriptions.project[a].project.project_name;
- obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification;
- obj['single_dose'] = project_month_prescriptions.project[a].single_dose;
- obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way;
- obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency;
- obj['number_days'] = project_month_prescriptions.project[a].day;
- obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code;
- obj['unit'] = project_month_prescriptions.project[a].unit;
- obj['project_id'] = project_month_prescriptions.project[a].project_id;
- count = count + project_month_prescriptions.project[a].count;
- // price = price + project_month_prescriptions.project[a].price
- obj['price'] = parseFloat(project_month_prescriptions.project[a].price)
-
- }
- }
- obj['total'] = count;
- projects.push(obj)
- }
-
- for (let i = 0; i < additions_ids.length; i++) {
- let obj = {};
- let count = 0;
- console.log(addition_month_prescriptions.addition);
- if (addition_month_prescriptions.addition) {
- for (let a = 0; a < addition_month_prescriptions.addition.length; a++) {
- if (project_ids[i].price == addition_month_prescriptions.addition[a].price) {
- obj['item_name'] = addition_month_prescriptions.addition[a].item_name;
- obj['id'] = addition_month_prescriptions.addition[a].id;
- obj['item_id'] = addition_month_prescriptions.addition[a].item_id;
- count = count + addition_month_prescriptions.addition[a].count;
- obj['price'] = parseFloat(addition_month_prescriptions.addition[a].price)
- }
- }
- obj['count'] = count;
- additions.push(obj)
- }
- }
-
- console.log(drugs);
- console.log(projects);
- console.log(additions);
-
- let p1 = {
- name: '处方' + 1,
- advices: drugs,
- project: [],
- type: 1,
- addition: additions
- };
- let p2 = {
- name: '处方' + 2,
- type: 2,
- project: projects,
- advices: [],
- addition: []
-
- };
-
- this.month_prescriptions.push(p1);
- this.month_prescriptions.push(p2);
-
- this.curMonthPrescriptions = this.month_prescriptions[0]
-
- },
-
- // setMonthPrescription(month_prescriptions){
- // let drug_month_prescriptions = {
- // advices:[],
- // }
- // let drug_ids=[]
- // let project_month_prescriptions ={
- // project:[],
- //
- // }
- // let project_ids=[]
- //
- // let addition_month_prescriptions ={
- // addtions:[],
- //
- // }
- // let additions_ids=[]
- //
- //
- // for (let i = 0; i < month_prescriptions.length; i++){
- // if(month_prescriptions[i].type == 1){ //药品
- // for (let a = 0; a < month_prescriptions[i].advices.length; a++){
- // drug_ids.push(month_prescriptions[i].advices[a].drug_id)
- // drug_month_prescriptions.advices.push(month_prescriptions[i].advices[a])
- // }
- //
- // }else if(month_prescriptions[i].type == 2){ //项目
- // for (let a = 0; a < month_prescriptions[i].project.length; a++){
- // project_ids.push(month_prescriptions[i].project[a].project_id)
- // project_month_prescriptions.project.push(month_prescriptions[i].project[a])
- // }
- // }
- // //附加收费
- // for (let a = 0; a < month_prescriptions[i].addition.length; a++) {
- // additions_ids.push(month_prescriptions[i].addition[a].item_id)
- // addition_month_prescriptions.addtions.push(month_prescriptions[i].addition[a])
- // }
- //
- // }
- //
- //
- //
- //
- // const obj = {}
- // const obj1 = {}
- // const obj2 = {}
- //
- // drug_ids = drug_ids.reduce((cur, next) => {
- // obj[next] ? '' : obj[next] = true && cur.push(next)
- // return cur
- // }, []) // 设置cur默认类型为数组,并且初始值为空的数组
- // project_ids = project_ids.reduce((cur, next) => {
- // obj1[next] ? '' : obj1[next] = true && cur.push(next)
- // return cur
- // }, []) // 设置cur默认类型为数组,并且初始值为空的数组
- // additions_ids = additions_ids.reduce((cur, next) => {
- // obj2[next] ? '' : obj2[next] = true && cur.push(next)
- // return cur
- // }, []) // 设置cur默认类型为数组,并且初始值为空的数组
- //
- //
- //
- //
- //
- // let drugs =[]
- // let projects =[]
- // let additions =[]
- //
- //
- // for (let i = 0; i < drug_ids.length; i++){
- // let obj = {}
- // let price = 0
- // let count = 0
- // for (let a = 0; a < drug_month_prescriptions.advices.length; a++){
- // if(drug_ids[i] == drug_month_prescriptions.advices[a].drug_id){
- // obj['drug_name'] = drug_month_prescriptions.advices[a].advice_name
- // obj['single_dose'] = drug_month_prescriptions.advices[a].single_dose
- // obj['delivery_way'] = drug_month_prescriptions.advices[a].delivery_way
- // obj['execution_frequency'] = drug_month_prescriptions.advices[a].execution_frequency
- // obj['day'] = drug_month_prescriptions.advices[a].day
- // // obj['prescribing_number'] = obj['prescribing_number'] + drug_month_prescriptions.advices[a].prescribing_number
- // obj['prescribing_number_unit'] = drug_month_prescriptions.advices[a].prescribing_number_unit
- // obj['medical_insurance_number'] = drug_month_prescriptions.advices[a].drug.medical_insurance_number
- // obj['id'] = drug_month_prescriptions.advices[a].drug_id
- // // obj['retail_price'] = obj['retail_price'] + drug_month_prescriptions.advices[a].drug.retail_price
- //
- //
- // count = count + drug_month_prescriptions.advices[a].prescribing_number
- // price = price + drug_month_prescriptions.advices[a].price
- //
- // }
- // }
- // obj['retail_price'] = price
- // obj['prescribing_number'] = count
- // drugs.push(obj)
- // }
- //
- //
- //
- //
- // for (let i = 0; i < project_ids.length; i++){
- // let obj = {}
- // let price = 0
- // let count = 0
- // for (let a = 0; a < project_month_prescriptions.project.length; a++){
- // if(project_ids[i] == project_month_prescriptions.project[a].project_id){
- // obj['project_name'] = project_month_prescriptions.project[a].project.project_name
- // obj['statistical_classification'] = project_month_prescriptions.project[a].project.statistical_classification
- // obj['single_dose'] = project_month_prescriptions.project[a].single_dose
- // obj['delivery_way'] = project_month_prescriptions.project[a].delivery_way
- // obj['execution_frequency'] = project_month_prescriptions.project[a].execution_frequency
- // obj['number_days'] = project_month_prescriptions.project[a].day
- // obj['medical_code'] = project_month_prescriptions.project[a].project.medical_code
- // obj['unit'] = project_month_prescriptions.project[a].unit
- // obj['project_id'] = project_month_prescriptions.project[a].project_id
- // count = count + project_month_prescriptions.project[a].count
- // price = price + project_month_prescriptions.project[a].price
- // }
- // }
- // obj['price'] = price
- // obj['total'] = count
- // projects.push(obj)
- // }
- //
- //
- // for (let i = 0; i < additions_ids.length; i++){
- // let obj = {}
- // let price = 0
- // let count = 0
- // for (let a = 0; a < addition_month_prescriptions.addition.length; a++){
- // if(project_ids[i] == addition_month_prescriptions.addition[a].item_id){
- // obj['item_name'] = addition_month_prescriptions.addition[a].item_name
- // obj['id'] = addition_month_prescriptions.addition[a].id
- // obj['item_id'] = addition_month_prescriptions.addition[a].item_id
- // count = count + addition_month_prescriptions.addition[a].count
- // price = price + addition_month_prescriptions.addition[a].price
- // }
- // }
- // obj['price'] = price
- // obj['count'] = count
- // additions.push(obj)
- // }
- //
- //
- // let p1 = {
- // name: '处方' + 1,
- // advices: drugs,
- // project: [],
- // type:1,
- // addition: additions,
- // }
- // let p2 = {
- // name: '处方' + 2,
- // type:2,
- // project: projects,
- // advices: [],
- // }
- // this.month_prescriptions.push(p1)
- // this.month_prescriptions.push(p2)
- //
- // },
- getList() {
- let params = {
- 'record_date': this.record_date,
- 'type': this.radio
- };
- this.patientTableData = [];
- getSchedulePatientList(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false
- } else {
- this.patientTableData = response.data.data.list;
- this.patientTableDataTwo = response.data.data.list;
- this.cal_one = response.data.data.total_one;
- this.cal_two = response.data.data.total_two;
- this.admin_info = response.data.data.info;
-
- if (this.patientTableData.length > 0) {
- this.$refs.tab.setCurrentRow(this.patientTableData[0]);
- this.oldCurrentRow = this.patientTableData[0];
- this.getPatientInfo(this.patientTableData[0])
- }
-
- this.prescriptionList = response.data.data.list.prescription
-
- // this.patientid = this.patientTableData[0].patient_id
-
- }
- })
- },
- getPatientInfo(val) {
-
- var nowDate = new Date();
- var nowYear = nowDate.getFullYear();
- var nowMonth = nowDate.getMonth() + 1;
- var nowDay = nowDate.getDate();
-
- var hours = nowDate.getHours();
- var min = nowDate.getMinutes();
-
-
- var nowTime =
- nowYear +
- '-' +
- (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
- '-' +
- (nowDay < 10 ? '0' + nowDay : nowDay) + " " + (hours < 10 ? '0' + hours : hours) +
- ':' + (min < 10 ? '0' + min : min);
-
-
-
- this.patientid = val.id;
- let params = {
- 'record_date': this.record_date,
- 'patient_id': val.id,
- 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
- 'end_time': moment(new Date()).add('year', 0).format("YYYY-MM-DD"),
- 'p_type':2,
-
- };
- this.isloading = true;
- getPatientInfo(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- this.isloading = false;
-
- return false
- } else {
- this.isloading = false;
-
- this.prescriptions = [];
- this.month_prescriptions = [];
-
- this.patientInfo = response.data.data.xt_info;
- this.hisPatientInfo = response.data.data.his_info;
- this.case_history = response.data.data.case_history;
- console.log("病历222222",this.case_history);
- this.info = response.data.data.info;
- this.doctors = response.data.data.doctors;
- this.department = response.data.data.department;
-
- for (let i = 0; i < this.doctors.length; i++){
- if(this.doctors[i].user_type == 1){
- this.doctors.splice(i,1)
- }
- }
-
- var month_prescriptions = response.data.data.month_prescriptions;
- this.setMonthPrescription(month_prescriptions);
- this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}');
- if (this.case_history.temperature <= 0) {
- this.case_history.temperature = ''
- }
- if (this.case_history.blood_sugar <= 0) {
- this.case_history.blood_sugar = ''
- }
- if (this.case_history.pulse <= 0) {
- this.case_history.pulse = ''
- }
- if (this.case_history.sbp <= 0) {
- this.case_history.sbp = ''
- }
- if (this.case_history.dbp <= 0) {
- this.case_history.dbp = ''
- }
- if (this.case_history.height <= 0) {
- this.case_history.height = ''
- }
- if (this.case_history.blood_fat <= 0) {
- this.case_history.blood_fat = ''
- }
- if (this.case_history.sick_type <= 0) {
- this.case_history.sick_type = ''
- }
-
- if (this.case_history.sick <= 0) {
- this.case_history.sick = ''
- }
-
- if (this.case_history.diagnose <= 0) {
- this.case_history.diagnose = ''
- }
-
- this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}');
- if (this.case_history.is_infect == 1) {
- this.case_history.is_infect = true
- } else {
- this.case_history.is_infect = false
- }
-
- //处方相关
- this.prescriptionList = response.data.data.prescription;
-
- if (response.data.data.prescription.length > 0) {
- for (let i = 0; i < response.data.data.prescription.length; i++) {
- var prescription = response.data.data.prescription[i];
- let tempAdvice = [];
- let tempProject = [];
- let tempAddition = [];
-
-
- //药品
- for (let b = 0; b < prescription.advices.length; b++) {
- let obj = {
- advice_id: prescription.advices[b].id,
- drug_name: prescription.advices[b].advice_name,
- single_dose: prescription.advices[b].single_dose,
- delivery_way: prescription.advices[b].delivery_way,
- execution_frequency: prescription.advices[b].execution_frequency,
- retail_price: prescription.advices[b].price.toString(),
- remark: prescription.advices[b].remark,
- day: prescription.advices[b].day,
- prescribing_number: prescription.advices[b].prescribing_number.toString(),
- single_dose_unit: prescription.advices[b].single_dose_unit,
- prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
- medical_insurance_number: prescription.advices[b].med_list_codg,
- id: prescription.advices[b].drug_id
- };
- tempAdvice.push(obj)
- }
-
-
- //项目
- for (let b = 0; b < prescription.project.length; b++) {
- let obj = {
- id: prescription.project[b].id,
- project_id: prescription.project[b].project_id,
- project_name: prescription.project[b].project.project_name,
- statistical_classification: prescription.project[b].project.statistical_classification,
- single_dose: prescription.project[b].single_dose,
- delivery_way: prescription.project[b].delivery_way,
- execution_frequency: prescription.project[b].execution_frequency,
- number_days: prescription.project[b].day,
- total: prescription.project[b].count.toString(),
- price: prescription.project[b].price,
- remark: prescription.project[b].remark,
- medical_code: prescription.project[b].project.medical_code,
- unit: prescription.project[b].project.unit,
- };
- tempProject.push(obj)
- }
-
-
- //附加收费
- for (let b = 0; b < prescription.addition.length; b++) {
- let obj = {
- id: prescription.addition[b].id,
- item_name: prescription.addition[b].item_name,
- price: prescription.addition[b].price,
- count: prescription.addition[b].count,
- item_id: prescription.addition[b].item_id,
- };
- tempAddition.push(obj)
- }
-
- var preTime = "";
-
- if (prescription.pre_time == 0) {
- preTime = nowTime
- } else {
- preTime = this.getTime(prescription.pre_time, "{y}-{m}-{d} {h}:{i}")
- }
-
- let index = i + 1;
- let obj = {
- id: prescription.id,
- name: '处方' + index,
- advices: tempAdvice,
- project: tempProject,
- addition: tempAddition,
- order_status: prescription.order_status,
- pre_time: preTime
- };
- this.prescriptions.push(obj)
- }
- } else {
- let obj = {
- id: 0,
- name: '处方' + 1,
- advices: [],
- project: [],
- addition: [],
- orderStatus: 0,
- pre_time: nowTime,
-
- };
- this.prescriptions.push(obj)
- }
- this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department, this.hisPatientInfo, this.month_prescriptions)
- }
- })
-
-
- },
-
- choosePatient(val) {
- console.log(val);
- if(this.titleType == '电子病历'){
- console.log('this.$refs.child.watchSign',this.$refs.child.watchSign);
- if(this.$refs.child.watchSign > 2){
- this.$confirm('是否保存当前病例', '保存', {
- confirmButtonText: '确 定',
- cancelButtonText: '取 消',
- type: 'warning'
- }).then(() => {
-
- this.$refs.child.createCaseHistory(this.newPatientId);
- this.patientid = val.id;
-
- let params = {
- 'record_date': this.record_date,
- 'patient_id': val.id,
- 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
- 'end_time': moment(new Date()).add('year', 0).format("YYYY-MM-DD"),
- 'p_type':2,
-
- };
- getPatientInfo(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false
- } else {
- this.prescriptions = [];
-
- this.month_prescriptions = [];
-
- var month_prescriptions = response.data.data.month_prescriptions;
- this.setMonthPrescription(month_prescriptions);
-
-
- this.patientInfo = response.data.data.xt_info;
- this.hisPatientInfo = response.data.data.his_info;
- this.case_history = response.data.data.case_history;
- console.log("数据是22222多少",this.case_history);
- this.info = response.data.data.info;
- this.doctors = response.data.data.doctors;
- this.department = response.data.data.department;
-
- for (let i = 0; i < this.doctors.length; i++){
- if(this.doctors[i].user_type == 1){
- this.doctors.splice(i,1)
- }
- }
- this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}');
- if (this.case_history.breathing <= 0) {
- this.case_history.breathing = ""
- }
- if (this.case_history.sick <= 0) {
- this.case_history.sick = ""
- }
- if (this.case_history.diagnose <= 0) {
- this.case_history.diagnose = ""
- }
-
- if (this.case_history.temperature <= 0) {
- this.case_history.temperature = ''
- }
- if (this.case_history.blood_sugar <= 0) {
- this.case_history.blood_sugar = ''
- }
- if (this.case_history.pulse <= 0) {
- this.case_history.pulse = ''
- }
- if (this.case_history.sbp <= 0) {
- this.case_history.sbp = ''
- }
- if (this.case_history.dbp <= 0) {
- this.case_history.dbp = ''
- }
- if (this.case_history.height <= 0) {
- this.case_history.height = ''
- }
- if (this.case_history.blood_fat <= 0) {
- this.case_history.blood_fat = ''
- }
- if (this.case_history.sick_type <= 0) {
- this.case_history.sick_type = ''
- }
- this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}');
- if (this.case_history.is_infect == 1) {
- this.case_history.is_infect = true
- } else {
- this.case_history.is_infect = false
- }
- this.prescriptionList = response.data.data.prescription;
- if (response.data.data.prescription.length > 0) {
- for (let i = 0; i < response.data.data.prescription.length; i++) {
- var prescription = response.data.data.prescription[i];
- let tempAdvice = [];
- let tempProject = [];
- let tempAddition = [];
- for (let b = 0; b < prescription.advices.length; b++) {
- let obj = {
- advice_id: prescription.advices[b].id,
- drug_name: prescription.advices[b].advice_name,
- single_dose: prescription.advices[b].single_dose,
- delivery_way: prescription.advices[b].delivery_way,
- execution_frequency: prescription.advices[b].execution_frequency,
- retail_price: prescription.advices[b].price.toString(),
- remark: prescription.advices[b].remark,
- day: prescription.advices[b].day,
- prescribing_number: prescription.advices[b].prescribing_number.toString(),
- single_dose_unit: prescription.advices[b].single_dose_unit,
- prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
- medical_insurance_number: prescription.advices[b].med_list_codg,
- id: prescription.advices[b].drug_id
- };
- tempAdvice.push(obj)
- }
- for (let b = 0; b < prescription.project.length; b++) {
- let obj = {
- id: prescription.project[b].id,
- project_id: prescription.project[b].project_id,
- project_name: prescription.project[b].project.project_name,
- statistical_classification: prescription.project[b].project.statistical_classification,
- single_dose: prescription.project[b].single_dose,
- delivery_way: prescription.project[b].delivery_way,
- execution_frequency: prescription.project[b].execution_frequency,
- number_days: prescription.project[b].day,
- total: prescription.project[b].count.toString(),
- price: prescription.project[b].price,
- remark: prescription.project[b].remark,
- medical_code: prescription.project[b].project.medical_code,
- unit: prescription.project[b].unit
- };
- tempProject.push(obj)
- }
- for (let b = 0; b < prescription.addition.length; b++) {
- let obj = {
- id: prescription.addition[b].id,
- item_name: prescription.addition[b].item_name,
- price: prescription.addition[b].price,
- count: prescription.addition[b].count,
- item_id: prescription.addition[b].item_id,
- };
- tempAddition.push(obj)
- }
-
- var preTime = "";
-
- if (prescription.pre_time == 0) {
- preTime = nowTime
- } else {
- preTime = this.getTime(prescription.pre_time, "{y}-{m}-{d} {h}:{i}")
- }
-
- let index = i + 1;
- let obj = {
- id: prescription.id,
- name: '处方' + index,
- advices: tempAdvice,
- project: tempProject,
- addition: tempAddition,
- order_status: prescription.order_status,
- pre_time: preTime
- };
- this.prescriptions.push(obj)
- }
- } else {
- let obj = {
- id: 0,
- name: '处方' + 1,
- advices: [],
- project: [],
- addition: [],
- orderStatus: 0,
- pre_time: nowTime,
- };
- this.prescriptions.push(obj)
- }
- this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department,this.hisPatientInfo, this.month_prescriptions);
- this.$refs.child.watchSign = 0
- }
- });
- this.$refs.child.watchSign = 0
- }).catch(() => {
-
- this.patientid = val.id;
- let params = {
- 'record_date': this.record_date,
- 'patient_id': val.id,
- 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
- 'end_time': moment(new Date()).add('year', 0).format("YYYY-MM-DD"),
- 'p_type':2,
-
- };
- getPatientInfo(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false
- } else {
- this.prescriptions = [];
-
- this.month_prescriptions = [];
-
- var month_prescriptions = response.data.data.month_prescriptions;
- this.setMonthPrescription(month_prescriptions);
-
-
- this.patientInfo = response.data.data.xt_info;
- this.hisPatientInfo = response.data.data.his_info;
- this.case_history = response.data.data.case_history;
- console.log("数据是22222多少",this.case_history);
- this.info = response.data.data.info;
- this.doctors = response.data.data.doctors;
- this.department = response.data.data.department;
-
- for (let i = 0; i < this.doctors.length; i++){
- if(this.doctors[i].user_type == 1){
- this.doctors.splice(i,1)
- }
- }
- this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}');
- if (this.case_history.breathing <= 0) {
- this.case_history.breathing = ""
- }
- if (this.case_history.sick <= 0) {
- this.case_history.sick = ""
- }
- if (this.case_history.diagnose <= 0) {
- this.case_history.diagnose = ""
- }
-
- if (this.case_history.temperature <= 0) {
- this.case_history.temperature = ''
- }
- if (this.case_history.blood_sugar <= 0) {
- this.case_history.blood_sugar = ''
- }
- if (this.case_history.pulse <= 0) {
- this.case_history.pulse = ''
- }
- if (this.case_history.sbp <= 0) {
- this.case_history.sbp = ''
- }
- if (this.case_history.dbp <= 0) {
- this.case_history.dbp = ''
- }
- if (this.case_history.height <= 0) {
- this.case_history.height = ''
- }
- if (this.case_history.blood_fat <= 0) {
- this.case_history.blood_fat = ''
- }
- if (this.case_history.sick_type <= 0) {
- this.case_history.sick_type = ''
- }
- this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}');
- if (this.case_history.is_infect == 1) {
- this.case_history.is_infect = true
- } else {
- this.case_history.is_infect = false
- }
- this.prescriptionList = response.data.data.prescription;
- if (response.data.data.prescription.length > 0) {
- for (let i = 0; i < response.data.data.prescription.length; i++) {
- var prescription = response.data.data.prescription[i];
- let tempAdvice = [];
- let tempProject = [];
- let tempAddition = [];
- for (let b = 0; b < prescription.advices.length; b++) {
- let obj = {
- advice_id: prescription.advices[b].id,
- drug_name: prescription.advices[b].advice_name,
- single_dose: prescription.advices[b].single_dose,
- delivery_way: prescription.advices[b].delivery_way,
- execution_frequency: prescription.advices[b].execution_frequency,
- retail_price: prescription.advices[b].price.toString(),
- remark: prescription.advices[b].remark,
- day: prescription.advices[b].day,
- prescribing_number: prescription.advices[b].prescribing_number.toString(),
- single_dose_unit: prescription.advices[b].single_dose_unit,
- prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
- medical_insurance_number: prescription.advices[b].med_list_codg,
- id: prescription.advices[b].drug_id
- };
- tempAdvice.push(obj)
- }
- for (let b = 0; b < prescription.project.length; b++) {
- let obj = {
- id: prescription.project[b].id,
- project_id: prescription.project[b].project_id,
- project_name: prescription.project[b].project.project_name,
- statistical_classification: prescription.project[b].project.statistical_classification,
- single_dose: prescription.project[b].single_dose,
- delivery_way: prescription.project[b].delivery_way,
- execution_frequency: prescription.project[b].execution_frequency,
- number_days: prescription.project[b].day,
- total: prescription.project[b].count.toString(),
- price: prescription.project[b].price,
- remark: prescription.project[b].remark,
- medical_code: prescription.project[b].project.medical_code,
- unit: prescription.project[b].unit
- };
- tempProject.push(obj)
- }
- for (let b = 0; b < prescription.addition.length; b++) {
- let obj = {
- id: prescription.addition[b].id,
- item_name: prescription.addition[b].item_name,
- price: prescription.addition[b].price,
- count: prescription.addition[b].count,
- item_id: prescription.addition[b].item_id,
- };
- tempAddition.push(obj)
- }
-
- var preTime = "";
-
- if (prescription.pre_time == 0) {
- preTime = nowTime
- } else {
- preTime = this.getTime(prescription.pre_time, "{y}-{m}-{d} {h}:{i}")
- }
-
- let index = i + 1;
- let obj = {
- id: prescription.id,
- name: '处方' + index,
- advices: tempAdvice,
- project: tempProject,
- addition: tempAddition,
- order_status: prescription.order_status,
- pre_time: preTime
- };
- this.prescriptions.push(obj)
- }
- } else {
- let obj = {
- id: 0,
- name: '处方' + 1,
- advices: [],
- project: [],
- addition: [],
- orderStatus: 0,
- pre_time: nowTime,
- };
- this.prescriptions.push(obj)
- }
- this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department,this.hisPatientInfo, this.month_prescriptions);
- this.$refs.child.watchSign = 0
- }
- })
-
- });
- this.$refs.child.watchSign = 0
- }else{
- this.patientid = val.id;
- let params = {
- 'record_date': this.record_date,
- 'patient_id': val.id,
- 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
- 'end_time': moment(new Date()).add('year', 0).format("YYYY-MM-DD"),
- 'p_type':2,
-
- };
- getPatientInfo(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false
- } else {
- this.prescriptions = [];
-
- this.month_prescriptions = [];
-
- var month_prescriptions = response.data.data.month_prescriptions;
- this.setMonthPrescription(month_prescriptions);
-
-
- this.patientInfo = response.data.data.xt_info;
- this.hisPatientInfo = response.data.data.his_info;
- this.case_history = response.data.data.case_history;
- console.log("数据是22222多少",this.case_history);
- this.info = response.data.data.info;
- this.doctors = response.data.data.doctors;
- this.department = response.data.data.department;
-
- for (let i = 0; i < this.doctors.length; i++){
- if(this.doctors[i].user_type == 1){
- this.doctors.splice(i,1)
- }
- }
- this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}');
- if (this.case_history.breathing <= 0) {
- this.case_history.breathing = ""
- }
- if (this.case_history.sick <= 0) {
- this.case_history.sick = ""
- }
- if (this.case_history.diagnose <= 0) {
- this.case_history.diagnose = ""
- }
-
- if (this.case_history.temperature <= 0) {
- this.case_history.temperature = ''
- }
- if (this.case_history.blood_sugar <= 0) {
- this.case_history.blood_sugar = ''
- }
- if (this.case_history.pulse <= 0) {
- this.case_history.pulse = ''
- }
- if (this.case_history.sbp <= 0) {
- this.case_history.sbp = ''
- }
- if (this.case_history.dbp <= 0) {
- this.case_history.dbp = ''
- }
- if (this.case_history.height <= 0) {
- this.case_history.height = ''
- }
- if (this.case_history.blood_fat <= 0) {
- this.case_history.blood_fat = ''
- }
- if (this.case_history.sick_type <= 0) {
- this.case_history.sick_type = ''
- }
- this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}');
- if (this.case_history.is_infect == 1) {
- this.case_history.is_infect = true
- } else {
- this.case_history.is_infect = false
- }
- this.prescriptionList = response.data.data.prescription;
- if (response.data.data.prescription.length > 0) {
- for (let i = 0; i < response.data.data.prescription.length; i++) {
- var prescription = response.data.data.prescription[i];
- let tempAdvice = [];
- let tempProject = [];
- let tempAddition = [];
- for (let b = 0; b < prescription.advices.length; b++) {
- let obj = {
- advice_id: prescription.advices[b].id,
- drug_name: prescription.advices[b].advice_name,
- single_dose: prescription.advices[b].single_dose,
- delivery_way: prescription.advices[b].delivery_way,
- execution_frequency: prescription.advices[b].execution_frequency,
- retail_price: prescription.advices[b].price.toString(),
- remark: prescription.advices[b].remark,
- day: prescription.advices[b].day,
- prescribing_number: prescription.advices[b].prescribing_number.toString(),
- single_dose_unit: prescription.advices[b].single_dose_unit,
- prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
- medical_insurance_number: prescription.advices[b].med_list_codg,
- id: prescription.advices[b].drug_id
- };
- tempAdvice.push(obj)
- }
- for (let b = 0; b < prescription.project.length; b++) {
- let obj = {
- id: prescription.project[b].id,
- project_id: prescription.project[b].project_id,
- project_name: prescription.project[b].project.project_name,
- statistical_classification: prescription.project[b].project.statistical_classification,
- single_dose: prescription.project[b].single_dose,
- delivery_way: prescription.project[b].delivery_way,
- execution_frequency: prescription.project[b].execution_frequency,
- number_days: prescription.project[b].day,
- total: prescription.project[b].count.toString(),
- price: prescription.project[b].price,
- remark: prescription.project[b].remark,
- medical_code: prescription.project[b].project.medical_code,
- unit: prescription.project[b].unit
- };
- tempProject.push(obj)
- }
- for (let b = 0; b < prescription.addition.length; b++) {
- let obj = {
- id: prescription.addition[b].id,
- item_name: prescription.addition[b].item_name,
- price: prescription.addition[b].price,
- count: prescription.addition[b].count,
- item_id: prescription.addition[b].item_id,
- };
- tempAddition.push(obj)
- }
-
- var preTime = "";
-
- if (prescription.pre_time == 0) {
- preTime = nowTime
- } else {
- preTime = this.getTime(prescription.pre_time, "{y}-{m}-{d} {h}:{i}")
- }
-
- let index = i + 1;
- let obj = {
- id: prescription.id,
- name: '处方' + index,
- advices: tempAdvice,
- project: tempProject,
- addition: tempAddition,
- order_status: prescription.order_status,
- pre_time: preTime
- };
- this.prescriptions.push(obj)
- }
- } else {
- let obj = {
- id: 0,
- name: '处方' + 1,
- advices: [],
- project: [],
- addition: [],
- orderStatus: 0,
- pre_time: nowTime,
- };
- this.prescriptions.push(obj)
- }
- this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department,this.hisPatientInfo, this.month_prescriptions);
- this.$refs.child.watchSign = 0
- }
- });
- this.$refs.child.watchSign = 0
- }
- }else{
- var nowDate = new Date();
- var nowYear = nowDate.getFullYear();
- var nowMonth = nowDate.getMonth() + 1;
- var nowDay = nowDate.getDate();
-
- var hours = nowDate.getHours();
- var min = nowDate.getMinutes();
-
- var nowTime =
- nowYear +
- '-' +
- (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
- '-' +
- (nowDay < 10 ? '0' + nowDay : nowDay) + " " + (hours < 10 ? '0' + hours : hours) +
- ':' + (min < 10 ? '0' + min : min);
-
- var last_month = nowDate.getMonth() < 10 ? '0' + nowDate.getMonth().toString() : nowDate.getMonth(); //获取当前月份(0-11,0代表1月)
-
-
- var endTime =
- nowYear +
- '-' +
- last_month +
- '-' +
- (nowDay < 10 ? '0' + nowDay : nowDay) + " " + (hours < 10 ? '0' + hours : hours) +
- ':' + (min < 10 ? '0' + min : min);
-
-
- let isShowDailog = false;
- for (let i = 0; i < this.prescriptions.length; i++) {
- if ((this.prescriptions[i].id == 0 && this.prescriptions[i].advices.length > 0) || (this.prescriptions[i].id == 0 && this.prescriptions[i].project.length > 0)) {
- isShowDailog = true
- }
- }
-
- if (isShowDailog) {
- this.patientTableData.map((item, index) => {
- if (item.patient_id == this.oldCurrentRow.patient_id) {
- this.$refs.tab.setCurrentRow(this.patientTableData[index]);
-
- }
- });
- this.$confirm('是否保存当前处方', '保存', {
- confirmButtonText: '确 定',
- cancelButtonText: '取 消',
- type: 'warning'
- }).then(() => {
- this.open(1)
- }).catch(() => {
- this.patientTableData.map((item, index) => {
- if (item.patient_id == val.patient_id) {
- this.$refs.tab.setCurrentRow(this.patientTableData[index])
- }
- });
-
- this.patientid = val.id;
- let params = {
- 'record_date': this.record_date,
- 'patient_id': val.id,
- 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
- 'end_time': moment(new Date()).add('year', 0).format("YYYY-MM-DD"),
- 'p_type':2,
-
- };
- getPatientInfo(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false
- } else {
-
- this.prescriptions = [];
- this.patientInfo = response.data.data.xt_info;
- this.hisPatientInfo = response.data.data.his_info;
- this.case_history = response.data.data.case_history;
- console.log("数据列表是多少",this.case_history);
- var month_prescriptions = response.data.data.month_prescriptions;
- this.setMonthPrescription(month_prescriptions);
- this.doctors = response.data.data.doctors;
- this.department = response.data.data.department;
-
- for (let i = 0; i < this.doctors.length; i++){
- if(this.doctors[i].user_type == 1){
- this.doctors.splice(i,1)
- }
- }
-
- this.case_history = case_history;
- this.info = response.data.data.info;
- this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}');
- if (this.case_history.breathing <= 0) {
- this.case_history.breathing = ""
- }
- if (this.case_history.sick <= 0) {
- this.case_history.sick = ""
- }
- if (this.case_history.diagnose <= 0) {
- this.case_history.diagnose = ""
- }
- if (this.case_history.temperature <= 0) {
- this.case_history.temperature = ''
- }
- if (this.case_history.blood_sugar <= 0) {
- this.case_history.blood_sugar = ''
- }
- if (this.case_history.pulse <= 0) {
- this.case_history.pulse = ''
- }
- if (this.case_history.sbp <= 0) {
- this.case_history.sbp = ''
- }
- if (this.case_history.dbp <= 0) {
- this.case_history.dbp = ''
- }
- if (this.case_history.height <= 0) {
- this.case_history.height = ''
- }
- if (this.case_history.blood_fat <= 0) {
- this.case_history.blood_fat = ''
- }
- if (this.case_history.sick_type <= 0) {
- this.case_history.sick_type = ''
- }
- this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}');
- if (this.case_history.is_infect == 1) {
- this.case_history.is_infect = true
- } else {
- this.case_history.is_infect = false
- }
- this.prescriptionList = response.data.data.prescription;
- if (response.data.data.prescription.length > 0) {
- for (let i = 0; i < response.data.data.prescription.length; i++) {
- var prescription = response.data.data.prescription[i];
-
- let tempAdvice = [];
- let tempProject = [];
- let tempAddition = [];
- for (let b = 0; b < prescription.advices.length; b++) {
- let obj = {
- advice_id: prescription.advices[b].id,
- drug_name: prescription.advices[b].advice_name,
- single_dose: prescription.advices[b].single_dose,
- delivery_way: prescription.advices[b].delivery_way,
- execution_frequency: prescription.advices[b].execution_frequency,
- retail_price: prescription.advices[b].price.toString(),
- remark: prescription.advices[b].remark,
- day: prescription.advices[b].day,
- prescribing_number: prescription.advices[b].prescribing_number.toString(),
- single_dose_unit: prescription.advices[b].single_dose_unit,
- prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
- medical_insurance_number: prescription.advices[b].med_list_codg,
- id: prescription.advices[b].drug_id
- };
- tempAdvice.push(obj)
- }
- for (let b = 0; b < prescription.project.length; b++) {
- let obj = {
- id: prescription.project[b].id,
- project_id: prescription.project[b].project_id,
- project_name: prescription.project[b].project.project_name,
- statistical_classification: prescription.project[b].project.statistical_classification,
- single_dose: prescription.project[b].single_dose,
- delivery_way: prescription.project[b].delivery_way,
- execution_frequency: prescription.project[b].execution_frequency,
- number_days: prescription.project[b].day,
- total: prescription.project[b].count.toString(),
- price: prescription.project[b].price,
- remark: prescription.project[b].remark,
- medical_code: prescription.project[b].project.medical_code,
- unit: prescription.project[b].unit
- };
- tempProject.push(obj)
- }
- for (let b = 0; b < prescription.addition.length; b++) {
- let obj = {
- id: prescription.addition[b].id,
- item_name: prescription.addition[b].item_name,
- price: prescription.addition[b].price,
- count: prescription.addition[b].count,
- item_id: prescription.addition[b].item_id,
- };
- tempAddition.push(obj)
- }
-
-
- var preTime = "";
-
- if (prescription.pre_time == 0) {
- preTime = nowTime
- } else {
- preTime = this.getTime(prescription.pre_time, "{y}-{m}-{d} {h}:{i}")
- }
-
-
- let index = i + 1;
- let obj = {
- id: prescription.id,
- name: '处方' + index,
- advices: tempAdvice,
- project: tempProject,
- addition: tempAddition,
- order_status: prescription.order_status,
- pre_time: preTime
- };
- this.prescriptions.push(obj)
- }
- } else {
- let obj = {
- id: 0,
- name: '处方' + 1,
- advices: [],
- project: [],
- addition: [],
- orderStatus: 0,
- pre_time: nowTime
-
- };
- this.prescriptions.push(obj)
- }
- this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department,this.hisPatientInfo, this.month_prescriptions)
- }
- })
-
-
- })
-
-
- // this.$message.error('需要保存保存处方才能切换')
- } else {
- this.patientid = val.id;
- let params = {
- 'record_date': this.record_date,
- 'patient_id': val.id,
- 'start_time': moment(new Date()).subtract(30, 'days').format('YYYY-MM-DD'),
- 'end_time': moment(new Date()).add('year', 0).format("YYYY-MM-DD"),
- 'p_type':2,
-
- };
- getPatientInfo(params).then(response => {
- if (response.data.state == 0) {
- this.$message.error(response.data.msg);
- return false
- } else {
- this.prescriptions = [];
-
- this.month_prescriptions = [];
-
- var month_prescriptions = response.data.data.month_prescriptions;
- this.setMonthPrescription(month_prescriptions);
-
-
- this.patientInfo = response.data.data.xt_info;
- this.hisPatientInfo = response.data.data.his_info;
- this.case_history = response.data.data.case_history;
- console.log("数据是22222多少",this.case_history);
- this.info = response.data.data.info;
- this.doctors = response.data.data.doctors;
- this.department = response.data.data.department;
-
- for (let i = 0; i < this.doctors.length; i++){
- if(this.doctors[i].user_type == 1){
- this.doctors.splice(i,1)
- }
- }
- this.patientInfo.birth = uParseTime(this.patientInfo.birthday, '{y}-{m}-{d}');
- if (this.case_history.breathing <= 0) {
- this.case_history.breathing = ""
- }
- if (this.case_history.sick <= 0) {
- this.case_history.sick = ""
- }
- if (this.case_history.diagnose <= 0) {
- this.case_history.diagnose = ""
- }
-
- if (this.case_history.temperature <= 0) {
- this.case_history.temperature = ''
- }
- if (this.case_history.blood_sugar <= 0) {
- this.case_history.blood_sugar = ''
- }
- if (this.case_history.pulse <= 0) {
- this.case_history.pulse = ''
- }
- if (this.case_history.sbp <= 0) {
- this.case_history.sbp = ''
- }
- if (this.case_history.dbp <= 0) {
- this.case_history.dbp = ''
- }
- if (this.case_history.height <= 0) {
- this.case_history.height = ''
- }
- if (this.case_history.blood_fat <= 0) {
- this.case_history.blood_fat = ''
- }
- if (this.case_history.sick_type <= 0) {
- this.case_history.sick_type = ''
- }
- this.case_history.sick_date = uParseTime(this.case_history.sick_date, '{y}-{m}-{d}');
- if (this.case_history.is_infect == 1) {
- this.case_history.is_infect = true
- } else {
- this.case_history.is_infect = false
- }
- this.prescriptionList = response.data.data.prescription;
- if (response.data.data.prescription.length > 0) {
- for (let i = 0; i < response.data.data.prescription.length; i++) {
- var prescription = response.data.data.prescription[i];
- let tempAdvice = [];
- let tempProject = [];
- let tempAddition = [];
- for (let b = 0; b < prescription.advices.length; b++) {
- let obj = {
- advice_id: prescription.advices[b].id,
- drug_name: prescription.advices[b].advice_name,
- single_dose: prescription.advices[b].single_dose,
- delivery_way: prescription.advices[b].delivery_way,
- execution_frequency: prescription.advices[b].execution_frequency,
- retail_price: prescription.advices[b].price.toString(),
- remark: prescription.advices[b].remark,
- day: prescription.advices[b].day,
- prescribing_number: prescription.advices[b].prescribing_number.toString(),
- single_dose_unit: prescription.advices[b].single_dose_unit,
- prescribing_number_unit: prescription.advices[b].prescribing_number_unit,
- medical_insurance_number: prescription.advices[b].med_list_codg,
- id: prescription.advices[b].drug_id
- };
- tempAdvice.push(obj)
- }
- for (let b = 0; b < prescription.project.length; b++) {
- let obj = {
- id: prescription.project[b].id,
- project_id: prescription.project[b].project_id,
- project_name: prescription.project[b].project.project_name,
- statistical_classification: prescription.project[b].project.statistical_classification,
- single_dose: prescription.project[b].single_dose,
- delivery_way: prescription.project[b].delivery_way,
- execution_frequency: prescription.project[b].execution_frequency,
- number_days: prescription.project[b].day,
- total: prescription.project[b].count.toString(),
- price: prescription.project[b].price,
- remark: prescription.project[b].remark,
- medical_code: prescription.project[b].project.medical_code,
- unit: prescription.project[b].unit
- };
- tempProject.push(obj)
- }
- for (let b = 0; b < prescription.addition.length; b++) {
- let obj = {
- id: prescription.addition[b].id,
- item_name: prescription.addition[b].item_name,
- price: prescription.addition[b].price,
- count: prescription.addition[b].count,
- item_id: prescription.addition[b].item_id,
- };
- tempAddition.push(obj)
- }
-
- var preTime = "";
-
- if (prescription.pre_time == 0) {
- preTime = nowTime
- } else {
- preTime = this.getTime(prescription.pre_time, "{y}-{m}-{d} {h}:{i}")
- }
-
- let index = i + 1;
- let obj = {
- id: prescription.id,
- name: '处方' + index,
- advices: tempAdvice,
- project: tempProject,
- addition: tempAddition,
- order_status: prescription.order_status,
- pre_time: preTime
- };
- this.prescriptions.push(obj)
- }
- } else {
- let obj = {
- id: 0,
- name: '处方' + 1,
- advices: [],
- project: [],
- addition: [],
- orderStatus: 0,
- pre_time: nowTime,
- };
- this.prescriptions.push(obj)
- }
- this.$refs.prescriptions.setData(this.prescriptions, this.info, this.admin_info, this.doctors, this.department,this.hisPatientInfo, this.month_prescriptions)
- }
- })
-
-
- }
- }
-
-
-
-
-
- },
- currentChange(currentRow, oldCurrentRow) {
- this.newPatientId = oldCurrentRow.id;
- console.log('老数据',oldCurrentRow.id);
- this.patientid = oldCurrentRow.id;
-
- let isShowDailog = false;
- for (let i = 0; i < this.prescriptions.length; i++) {
- if ((this.prescriptions[i].id == 0 && this.prescriptions[i].advices.length > 0) || (this.prescriptions[i].id == 0 && this.prescriptions[i].project.length > 0)) {
- isShowDailog = true
- }
- }
- if (!isShowDailog) {
- this.oldCurrentRow = currentRow;
-
- }
-
-
-
- }, open_two() {
- this.$refs.prescriptions.open_two()
- },
- open(index) {
-
- this.index = index;
- if (index == 1) {
- this.$refs.prescriptions.open(1, this.saveLoading)
- } else if (index == 2) {
-
- this.getPrescriptionList(this.patientInfo.id)
- // this.$router.push("/outpatientDoctorStation/print?record="+this.record_date+"&prescription_id="+this.prescription_id)
- } else if (index == 3) {
- this.$refs.prescriptions.open(3)
- } else if (index == 4) {
- this.$refs.prescriptions.open(4)
- } else if (index == 6) {
- // this.$router.push("/outpatientDoctorStation/treatPrint?record="+this.record_date+"&prescription_id="+this.prescription_id)
- this.getPrescriptionList(this.patientInfo.id)
- // this.$router.push("/outpatientDoctorStation/treatPrint?record="+this.record_date+"&prescription_id="+this.prescription_id)
-
- }
-
- },
-
- opentwo(index) {
- if (index == 1) {
- if (this.patientInfo.id == undefined) {
- this.$message.error("请先选择病人");
- return
- }
- this.$refs.child.createCaseHistory()
- } else if (index == 2) {
- console.log("患者ID",this.patientid);
-
- this.recordVisible = true;
- this.$refs.recordPrint.show(this.patientid)
-
- } else if (index == 3) {
- var mode_status = this.$refs.saveRecordTemplate.mode_status;
- this.$refs.medicalRecord.show(mode_status)
- } else if (index == 4) {
- this.$refs.saveRecordTemplate.show(this.case_history)
- }
-
- },
- // changePatient(val){
- // console.log("患者val",val)
- // this.hisPatientInfo = val.hisPatientInfo
- // console.log("333333",this.hisPatientInfo)
- // }
-
- getMsgFormSon(id) {
-
- this.detalid = id
- },
- changetwo(data) {
- this.prescription_id = data
- },
-
- getPrescriptionList(id) {
- getPrescriptionList(id).then(response => {
- if (response.data.state == 1) {
- this.centerDialogVisible = true;
- var list = response.data.data.list;
- console.log("list2222222",list);
- for(let i=0;i<list.length;i++){
- list[i].prescription_number = list[i].prescription_number + i
- }
- this.tableData = list
- }
- })
- },
- handleSelectionChange(val) {
- this.selecting_schs = val
- // console.log("99999",this.selecting_schs)
- },
- handleClick() {
-
- },
- savePrint() {
- var arr = [];
- for (let i = 0; i < this.selecting_schs.length; i++) {
- arr.push(this.selecting_schs[i].id)
- }
- var ids = arr.join(",");
- if (this.index == 2) {
- let obj = {
- record: this.record_date,
- prescription_id: this.prescription_id,
- ids: ids,
- patient_id: this.patientid
- };
- this.paramsObj = obj;
- this.innerVisible = true
-
- // this.$router.push("/outpatientDoctorStation/print?record="+this.record_date+"&prescription_id="+this.prescription_id+"&ids="+ids+"&patient_id="+this.patientid)
- }
- if (this.index == 6) {
- let obj = {
- record: this.record_date,
- prescription_id: this.prescription_id,
- ids: ids,
- patient_id: this.patientid
- };
- this.paramsObj = obj;
- this.innerVisible = true
- // this.$router.push("/outpatientDoctorStation/treatPrint?record="+this.record_date+"&prescription_id="+this.prescription_id+"&ids="+ids+"&patient_id="+this.patientid)
- }
- }, getTime(val, temp) {
- if (val != 0) {
- return uParseTime(val, temp)
- } else {
- return ''
- }
- }
- },
- created() {
- var nowDate = new Date();
- var nowYear = nowDate.getFullYear();
- var nowMonth = nowDate.getMonth() + 1;
- var nowDay = nowDate.getDate();
- this.record_date =
- nowYear +
- '-' +
- (nowMonth < 10 ? '0' + nowMonth : nowMonth) +
- '-' +
- (nowDay < 10 ? '0' + nowDay : nowDay);
- this.getList();
-
- this.diagnoses = this.getDictionaryDataConfig('system', 'diagnose');
- this.other_sick = this.getDictionaryDataConfig('system', 'other_sick_history');
- let tableHeight = document.body.clientHeight - 263;
- this.tableHeight = tableHeight
-
- },
-
- mounted() {
- const that = this;
- window.onresize = () => {
- return (() => {
- window.fullHeight = document.documentElement.clientHeight;
- that.fullHeight = window.fullHeight
- })()
- }
- },
- watch: {
- fullHeight(val) {
- if (!this.timer) {
- this.fullHeight = val;
- let tableHeight = val - 263;
- this.tableHeight = tableHeight;
- this.timer = true;
- let that = this;
- setTimeout(function () {
- that.timer = false
- }, 400)
- }
- },
-
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .new-main-contain {
- height: 100%;
- display: flex;
- flex-direction: column;
- }
-
- .app-container {
- height: 100%;
- }
-
- .mainCell {
- height: 36px;
- display: flex;
- align-items: center;
- }
-
- .mainLeft {
- width: 200px;
- height: 100%;
- display: flex;
- flex-direction: column;
-
- .el-radio {
- margin-right: 5px;
- }
-
- }
- .mainRight {
- margin-left: 10px;
- flex: 1;
- height: 100%;
- display: flex;
- flex-direction: column;
- overflow-y: auto;
-
- .cellSpan {
- min-width: 80px;
- display: inline-block;
- margin-right: 10px;
- }
-
- }
- .mainCenter {
- display: flex;
- flex: 1;
- }
-
- .centerLeft {
- flex: 1;
- display: flex;
- flex-direction: column;
- position: relative;
-
- .el-form-item {
- width: 32%;
- margin-right: 1%;
- float: left;
- }
-
- .el-form-item__label {
- text-align: left;
- }
-
- }
- .backColor {
- background: #f6f8f9;
- height: 5px;
- margin-bottom: 5px;
- }
-
- .tabsBox {
- position: relative;
- height: 76%;
- overflow-y: auto;
- margin-bottom: 60px;
-
- .el-tabs__item {
- padding: 0 10px;
- }
-
- }
- .preTabs {
- height: 100%;
- display: flex;
- flex-direction: column;
-
- .el-tabs__content {
- flex: 1;
- overflow-y: auto;
- }
-
- }
-
- .costBox {
- width: 100%;
- height: 60px;
- background: #fff;
- position: absolute;
- bottom: 0;
- display: flex;
- align-items: center;
- }
-
- .addTab {
- position: absolute;
- right: 0;
- top: 14px;
- z-index: 20;
- }
-
- .centerRight {
- width: 300px;
- margin-left: 10px;
- display: flex;
- flex-direction: column;
- position: relative;
- }
-
- .rightTab {
- height: 40px;
- width: 100%;
- border: 1px solid #d2d2d2;
- box-sizing: border-box;
-
- p {
- width: 50%;
- height: 40px;
- line-height: 40px;
- text-align: center;
- background: #eee;
- float: left;
- }
-
- > p:last-child {
- border-left: 1px solid #d2d2d2;
- float: right;
- }
-
- .activeP {
- background: #409EFF;
- color: #fff;
- }
-
- }
- .comfirmBox {
- width: 100%;
- height: 60px;
- background: #fff;
- position: absolute;
- bottom: 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
-
- .mainHeader {
- width: 100%;
- background: #fff;
- position: fixed;
- z-index: 100;
- height: 36px;
- }
-
- .titleBox {
- position: fixed;
- z-index: 99;
- background: #fff;
- }
-
- .fixedCell {
- position: fixed;
- z-index: 99;
- right: 30px;
- background: #fff;
- width: 300px;
- display: flex;
- justify-content: space-between;
- }
- </style>
-
- <style lang="scss">
- .centerLeft {
-
- .el-form-item__label {
- text-align: left;
- }
-
- }
- .tabsBox {
-
- .el-tabs__item {
- padding: 0 10px;
- }
-
- .el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2) {
- padding: 0 10px;
- }
-
- .el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:last-child {
- padding: 0 10px;
- }
-
- .el-tabs--card > .el-tabs__header .el-tabs__item.is-active.is-closable {
- padding: 0 10px;
- }
-
- }
- .centerRight {
-
- .el-tabs__nav-scroll {
- display: flex;
- }
-
- .el-tabs__nav {
- margin: 0 auto;
- }
-
- .el-table th .cell, .el-table td .cell {
- padding: 0 2px;
- }
-
- }
- .preTabs {
-
- .el-tabs__content {
-
- }
-
- }
- .rightTabs {
- height: 100%;
-
-
- .el-tabs__content {
-
- }
-
- }
- .centerDialog {
-
- .el-dialog__body {
- max-height: calc(100vh - 100px) !important;
- padding: 0 20px;
- }
-
- }
- </style>
|