123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982 |
- <template>
- <div class="dashboard-container" :class="{'nocopy': $route.meta.nocopy}">
- <div class="block">
- <div class="barBtn">
- <el-radio-group v-model="choice" class="bnts" size="medium">
- <el-radio-button :label="0">普通检索</el-radio-button>
- <el-radio-button :label="1">高级检索</el-radio-button>
- </el-radio-group>
- </div>
- <div class="bnh"></div>
- <div class="inputs" v-if="choice == 0">
- <el-row :gutter="20" class="rowsa">
- <el-col :span="4">
- <div class="grid-content bg-purple">
- <el-input class="inpus" v-model="formData0.recordNum" placeholder="病案号"></el-input>
- </div>
- </el-col>
- <el-col :span="5">
- <div class="grid-content bg-purple">
- <el-select v-model="formData0.Department" filterable class="selects" placeholder="出院科室">
- <el-option v-for="(item, index) in departmentList" :label="item.name" :value="item.id" :key="index"></el-option>
- </el-select>
- </div>
- </el-col>
- <el-col :span="5">
- <div class="grid-content bg-purple">
- <el-select v-model="formData0.problem" class="selects" placeholder="问题属性">
- <el-option v-for="(item, index) in levelList" :label="item.name" :value="item.id" :key="index"></el-option>
- </el-select>
- </div>
- </el-col>
- <el-col :span="5">
- <div class="grid-content bg-purple">
- <el-select v-model="formData0.payment" filterable class="selects" placeholder="医疗付款方式">
- <el-option v-for="(item, index) in payList" :label="item.name" :value="item.id" :key="index"></el-option>
- </el-select>
- </div>
- </el-col>
- <el-col :span="5">
- <div class="grid-content bg-purple">
- <el-select v-model="formData0.medicalRecord" class="selects" placeholder="全部病案">
- <el-option label="已质控" value="1"></el-option>
- <el-option label="未质控" value="0"></el-option>
- </el-select>
- </div>
- </el-col>
- </el-row>
- <el-row :gutter="20" class="rowsa">
- <el-col :span="4">
- <div class="grid-content bg-purple">
- <el-select v-model="formData0.state" class="selects" placeholder="编辑状态">
- <!-- statusList -->
- <el-option v-for="(item, index) in statusList" :label="item.name" :value="item.id" :key="index"></el-option>
- </el-select>
- </div>
- </el-col>
- <el-col :span="5">
- <div class="grid-content bg-purple">
- <el-date-picker
- class="selects"
- v-model="formData0.startTime"
- type="date"
- format="yyyy 年 MM 月 dd 日"
- value-format="yyyyMMdd"
- placeholder="开始日期"
- ></el-date-picker>
- </div>
- </el-col>
- <el-col :span="5">
- <div class="grid-content bg-purple">
- <el-date-picker class="selects" v-model="formData0.endTime" type="date" format="yyyy 年 MM 月 dd 日" value-format="yyyyMMdd" placeholder="结束日期"></el-date-picker>
- </div>
- </el-col>
- <el-col :span="5">
- <div class="grid-content bg-purple">
- <el-select v-model="formData0.Coder" filterable class="selects" placeholder="编码员">
- <el-option v-for="(item, index) in coderList" :label="item.name" :value="item.id" :key="index"></el-option>
- </el-select>
- </div>
- </el-col>
- <el-col :span="5">
- <div class="grid-content bg-purple">
- </div>
- </el-col>
- </el-row>
- </div>
- <div class="barBtn" v-else>
- <el-form ref="form" :model="formData1" label-width="100px">
- <el-form-item v-for="(item, index) in formData1.seniorList" :key="index">
- <!-- 下拉框开始 -->
- <el-select
- v-if="index != 0"
- v-model="item.select_type"
- :class="index != 0 ? 'marginLeft' : ''"
- class="width100"
- filterable
- placeholder=""
- :disabled="item.lock"
- >
- <!-- fieldList -->
- <el-option label="且" :value="0" />
- <el-option label="或者" :value="1" />
- <el-option label="不包含" :value="2" />
- </el-select>
- <span v-if="index != 0" class="pind10" />
- <el-select class="width150" filterable v-model="item.key" @change="getOneCleck(item, index)" placeholder="请选择">
- <!-- fieldList -->
- <el-option v-for="(item, index) in fieldList" :label="item.name" :value="item.id" :key="index"></el-option>
- </el-select>
- <!-- 下拉框结束 -->
- <span class="pind10"></span>
- <!-- 中间选择输入框开始 -->
- <span v-if="keyList.includes(item.key)">
- <el-select class="width150" filterable v-model="item.value" placeholder="请选择">
- <el-option v-for="(itemo, indexo) in item.selectList" :key="indexo" :label="itemo.label" :value="itemo.id"></el-option>
- </el-select>
- </span>
- <span v-else>
- <el-input class="width150" v-model="item.value" placeholder="请输入"></el-input>
- </span>
- <!-- 中间选择输入框结束 -->
- <span class="pind10"></span>
- <!-- 条件下拉开始 -->
- <el-select class="width90" v-model="item.type" placeholder="">
- <el-option label="精确" value="1"></el-option>
- <el-option label="模糊" value="0"></el-option>
- </el-select>
- <!-- 条件下拉结束 -->
- <span class="pind10"></span>
- <!-- 增减重置选项按钮开始 -->
- <span>
- <el-button :disabled="formData1.seniorList.length == 1" type="primary" icon="el-icon-minus" @click="funDel(index)"></el-button>
- <el-button type="primary" icon="el-icon-plus" @click="funAdd" v-if="index == 0"></el-button>
- </span>
- <!-- 增减重置选项按钮结束 -->
- </el-form-item>
- <el-form-item label="患者年龄">
- <div class="zkSelect">
- <el-input class="width300" v-model="formData1.ageday" :min="28" :max="365" type="number" placeholder="<28天" @blur="funBlur">
- <template slot="append">
- <el-select v-model="formData1.age_start_type" placeholder="请选择">
- <el-option v-for="item in Dayoptions" :key="item.value" :label="item.label" :value="item.value"></el-option>
- </el-select>
- </template>
- </el-input>
- </div>
- <span class="pind" style="color: #ccc">——</span>
- <div class="zkSelect">
- <el-input class="width300" v-model="formData1.ageyear" :min="1" :max="150" type="number" placeholder="1-150岁" @blur="funBlur">
- <template slot="append">
- <el-select v-model="formData1.age_end_type" placeholder="请选择">
- <el-option v-for="item in Dayoptions" :key="item.value" :label="item.label" :value="item.value"></el-option>
- </el-select>
- </template>
- </el-input>
- </div>
- </el-form-item>
- <el-form-item label="住院天数">
- <div class="zkSelect">
- <el-input class="width300" v-model="formData1.hospitalizationon" :min="28" :max="365" type="number" @blur="funBluron" placeholder="请输入">
- <template slot="append">天</template>
- </el-input>
- </div>
- <span class="pind" style="color: #ccc">——</span>
- <div class="zkSelect">
- <el-input class="width300" v-model="formData1.hospitalizationin" :min="1" :max="150" type="number" @blur="funBluron" placeholder="请输入">
- <template slot="append">天</template>
- </el-input>
- </div>
- </el-form-item>
- <el-form-item label="时间范围">
- <el-date-picker v-model="formData1.startTime" type="date" format="yyyy 年 MM 月 dd 日" value-format="yyyyMMdd" placeholder="开始日期"></el-date-picker>
- <span class="pind10"></span>
- <el-date-picker v-model="formData1.endTime" type="date" format="yyyy 年 MM 月 dd 日" value-format="yyyyMMdd" placeholder="结束日期"></el-date-picker>
- </el-form-item>
- </el-form>
- </div>
- <div class="fBtn" style="position: relative">
- <el-button style="position: absolute; right: 30px" @click="reset">重置条件</el-button>
- <el-button @click="funQuery">检索</el-button>
- </div>
- </div>
- <div class="tableBox">
- <div class="flextab" style="margin: 0; margin-bottom: 15px">
- <div class="flextabtitle-box">
- <div class="h-title">
- <span class="blue"></span>
- <span class="text">病案列表</span>
- </div>
- <div class="flextab-item">
- <div>
- 平均住院日:
- <span class="s-1">{{ ARG_STAY }}</span>
- <span class="s-2">天</span>
- </div>
- <div>
- 平均费用:
- <span class="s-1">{{ ARG_F_D }}</span>
- <span class="s-2">元;</span>
- </div>
- <div>
- 例数:
- <span class="s-1">{{ paginationData.total ? paginationData.total : 0 }}</span>
- <span class="s-2">例</span>
- </div>
- <div>
- 死亡例数:
- <span class="s-1">{{ AEM01C ? AEM01C : 0 }}</span>
- <span class="s-2">例</span>
- </div>
- <div>
- 总费用:
- <span class="s-1">{{ SUM_ARG_F_D ? SUM_ARG_F_D : 0 }}</span>
- <span class="s-2">元</span>
- </div>
- <div>
- 总住院日:
- <span class="s-1">{{ SUM_ARG_STAY ? SUM_ARG_STAY : 0 }}</span>
- <span class="s-2">天</span>
- </div>
- </div>
- </div>
- <!-- 不登录没有导出 -->
- <el-button v-if="!isWhitelist" type="primary" icon="el-icon-download" @click="funExport('质控列表', '/qualityList')" class="export-btn">导出数据</el-button>
- </div>
- <el-table :data="tableData" border style="width: 100%">
- <el-table-column type="index" label="序号" width="70px"></el-table-column>
- <el-table-column prop="AAA28" label="病案号">
- <template slot-scope="scope">
- <span class="blue" @click="funGoto(scope.row.MED_REC_ID)">{{ scope.row.AAA28 }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="AAA01" label="患者姓名"></el-table-column>
- <el-table-column prop="AAC01" label="出院时间"></el-table-column>
- <el-table-column prop="AAA02C" label="性别"></el-table-column>
- <el-table-column prop="AAA04" label="年龄"></el-table-column>
- <template v-for="(item, ind) in formData1.seniorList">
- <el-table-column :key="ind" v-if="tabKeyList.includes(item.key)" :label="funkdef(item.key)" :prop="item.key"></el-table-column>
- </template>
- <el-table-column prop="ABC01N" label="主诊断名称"></el-table-column>
- <el-table-column prop="ABC01C" label="主诊断编码"></el-table-column>
- <el-table-column prop="ICD9_NAME" label="主手术名称"></el-table-column>
- <el-table-column prop="ICD9_ID1" label="主手术编码"></el-table-column>
- <el-table-column v-if="columnShow" :prop="clumText.id" :label="clumText.name"></el-table-column>
- <el-table-column prop="AAA29" label="住院次数"></el-table-column>
- <el-table-column prop="AAC11N" label="出院科室"></el-table-column>
- <el-table-column prop="ADA01" label="住院总费用"></el-table-column>
- <el-table-column prop="F_D" label="药品总费用"></el-table-column>
- <el-table-column prop="J" label="材料总费用"></el-table-column>
- <el-table-column prop="AAC04" label="实际住院(天)"></el-table-column>
- <el-table-column prop="AEM01C" label="离院方式"></el-table-column>
- <el-table-column prop="AAB06C" label="入院途径"></el-table-column>
- <el-table-column prop="SSPB" label="手术判别"></el-table-column>
- <el-table-column prop="AAB11N" label="入院科室"></el-table-column>
- <el-table-column prop="AAB01" label="入院时间"></el-table-column>
- </el-table>
- <!-- 分页控制 -->
- <el-pagination
- v-if="tableData && tableData.length !== 0"
- @size-change="SizeChangeEvent"
- @current-change="pageHasChanged"
- :total="paginationData.total"
- background
- class="table-pagination"
- style="margin: 15px 0px"
- :page-size="paginationData.pageSize"
- :current-page.sync="paginationData.currentPage"
- layout="total, sizes, prev, pager, next, jumper"
- ></el-pagination>
- </div>
- </div>
- </template>
- <script>
- import { downloadFile } from '@/httpFile';
- import Title from '@/components/Title';
- import { mapGetters } from 'vuex';
- import mPagination from '@/components/m-pagination';
- export default {
- name: 'Dashboard',
- props: {
- isWhitelist: {
- type: Boolean,
- default() {
- return false
- }
- }
- },
- components: {
- Title,
- mPagination,
- },
- computed: {
- ...mapGetters(['name']),
- },
- data() {
- return {
- choice: 0,
- clumText: {},
- columnShow: false,
- labelList: ['ICD10_NAME'],
- formData0: {
- recordNum: '', //病案号
- Department: '', //出院科室
- problem: 'all', //问题属性
- payment: '', //医疗付款方式
- state: '', //编辑状态
- // rangeDate: [], //时间
- endTime: '',
- startTime: '',
- Coder: '', //住院医师
- medicalRecord: '', //全部病案
- },
- Dayoptions: [
- {
- value: 1,
- label: '天',
- },
- {
- value: 2,
- label: '岁',
- },
- ],
- formData1: {
- ageday: '',
- age_start_type: 2,
- age_end_type: 2,
- ageyear: '',
- endTime: '',
- startTime: '',
- seniorList: [
- {
- key: '',
- value: '',
- type: '0',
- selectList: [],
- select_type: 0,
- },
- {
- key: '',
- value: '',
- type: '0',
- selectList: [],
- select_type: 0,
- },
- ],
- hospitalizationon: '',
- hospitalizationin: '',
- },
- inputOn: '', //全站搜索病案号
- value: '',
- value1: '',
- selectList: [],
- labelText: '',
- keyList: ['OPE_LEVEL', 'SSPB', 'ABC03C', 'RYQK', 'AAA02C', 'RJSS', 'AEM01C', 'AAC11N', 'LNSSQ', 'LNSSH', 'AEL01'],
- tabKeyList: [
- 'ICD10_ID1_first',
- 'ICD10_NAME_first',
- 'ICD10_ID1',
- 'ICD10_NAME',
- 'ICD9_ID1',
- 'ICD9_NAME',
- 'ABC03C',
- 'RYQK',
- 'OPE_LEVEL',
- 'ABA01N',
- 'ABA01C',
- 'AEL01',
- 'RJSS',
- 'LNSSQ',
- 'LNSSH',
- ], // 表头key动态展示
- tableData: [],
- payList: [], //支付方式
- departmentList: [], //出院科室
- levelList: [], //问题属性
- coderList: [], //编码元
- statusList: [], //编辑状态
- fieldList: [], //主要诊断名字
- department: [], //科室
- // 分页数据
- paginationData: {
- total: 10,
- currentPage: 1,
- pageSize: 10,
- },
- ARG_F_D: '',
- ARG_STAY: '',
- AEM01C: '',
- SUM_ARG_STAY: '',
- SUM_ARG_F_D: ''
- };
- },
- mounted() {},
- created() {
- this.funQuery();
- this.selectInfo();
- },
- methods: {
- funkdef(key) {
- for (let item in this.fieldList) {
- if (this.fieldList[item].id == key) {
- return this.fieldList[item].name;
- }
- }
- },
- /**
- * 根据下拉框选择出现对应数据
- * @param {val} 选中当前
- */
- getOneCleck(val, index) {
- this.$set(this.formData1.seniorList[index], 'value', '');
- var that = this;
- this.labelText = val.key;
- var text = this.fieldList.filter(item => val.key == item.id);
- that.$nextTick(function () {
- that.clumText = {
- name: text[0].name,
- id: text[0].id,
- };
- });
- if (val.key == 'OPE_LEVEL') {
- val.selectList = [
- {
- label: '全部',
- id: 0,
- },
- {
- label: '一级手术',
- id: 1,
- },
- {
- label: '二级手术',
- id: 2,
- },
- {
- label: '三级手术',
- id: 3,
- },
- {
- label: '四级手术',
- id: 4,
- },
- ];
- } else if (val.key == 'SSPB') {
- val.selectList = [
- {
- label: '全部',
- id: 5,
- },
- {
- label: '介入治疗',
- id: 4,
- },
- {
- label: '手术',
- id: 1,
- },
- {
- label: '诊断操作',
- id: 2,
- },
- {
- label: '治疗操作',
- id: 3,
- },
- {
- label: '空',
- id: 0,
- },
- ];
- } else if (val.key == 'AAA02C') {
- val.selectList = [
- {
- label: '全部',
- id: 0,
- },
- {
- label: '男',
- id: 1,
- },
- {
- label: '女',
- id: 2,
- },
- {
- label: '未知的性别',
- id: 3,
- },
- {
- label: '未说明的性别',
- id: 4,
- },
- ];
- } else if (val.key == 'RJSS') {
- val.selectList = [
- {
- label: '全部',
- id: 0,
- },
- {
- label: '是',
- id: 1,
- },
- {
- label: '否',
- id: 2,
- },
- ];
- } else if (val.key == 'ABC03C') {
- val.selectList = [
- {
- label: '全部',
- id: 0,
- },
- {
- label: '有',
- id: 1,
- },
- {
- label: '临床未确定',
- id: 2,
- },
- {
- label: '情况不明',
- id: 3,
- },
- {
- label: '无',
- id: 4,
- },
- ];
- } else if (val.key == 'RYQK') {
- val.selectList = [
- {
- label: '全部',
- id: 0,
- },
- {
- label: '有',
- id: 1,
- },
- {
- label: '临床未确定',
- id: 2,
- },
- {
- label: '情况不明',
- id: 3,
- },
- {
- label: '无',
- id: 4,
- },
- ];
- } else if (val.key == 'AEM01C') {
- val.selectList = [
- {
- label: '全部',
- id: 0,
- },
- {
- label: '医嘱离院',
- id: 1,
- },
- {
- label: '医嘱转院',
- id: 2,
- },
- {
- label: '医嘱转社区卫生服务机构/乡镇卫生院',
- id: 3,
- },
- {
- label: '非医嘱离院',
- id: 4,
- },
- {
- label: '死亡',
- id: 5,
- },
- {
- label: '其他',
- id: 6,
- },
- ];
- } else if (val.key == 'AAC11N') {
- for (let item in this.departmentList) {
- this.departmentList[item];
- val.selectList.push({
- label: this.departmentList[item].name,
- id: this.departmentList[item].id,
- });
- }
- } else if (val.key == 'LNSSQ' || val.key == 'LNSSH') {
- val.selectList = [
- {
- label: '全部',
- id: '0',
- },
- {
- label: '有',
- id: '1',
- },
- {
- label: '无',
- id: '2',
- },
- ];
- } else if (val.key == 'AEL01') {
- val.selectList = [
- {
- label: '全部',
- id: '0',
- },
- {
- label: '有',
- id: '1',
- },
- {
- label: '无',
- id: '2',
- },
- ];
- }
- this.$nextTick();
- },
- funRead() {
- //重置
- Object.assign(this.$data.formData1, this.$options.data().formData1);
- },
- funExport(fileName, httpUrl) {
- //查询
- var pramse = {};
- let min = this.formData1.hospitalizationon;
- let max = this.formData1.hospitalizationin;
- if (this.choice == 0) {
- // hospitalizationon: '',
- // hospitalizationin: '',
- pramse = {
- level: this.formData0.problem || null, //问题属性
- AAA28: this.formData0.recordNum || null, //病案号
- AAC11C: this.formData0.Department || null, //出院科室
- AAA26C: this.formData0.payment || null, //付款方式
- status: this.formData0.state || null, //编辑状态
- AAC01_start_date: this.formData0.startTime || '',
- AAC01_end_date: this.formData0.endTime || '',
- coder_id: this.formData0.Coder || null, //编码员ID
- ORG_STATE: this.formData0.medicalRecord || null, //全部病案
- page: this.paginationData.currentPage, //页码
- limit: this.paginationData.pageSize, //条数
- is_export: 1,
- };
- } else {
- pramse = {
- AAC04: `${min ? min : 0}-${max ? max : 0}`,
- AAC0401: `${min ? min : 0}`,
- AAC0402: `${max ? max : 0}`,
- AAA04: this.formData1.ageyear || null, //年龄
- AAA40: this.formData1.ageday || null, //不足一周岁年龄
- age_start_type: this.formData1.age_start_type || null,
- age_end_type: this.formData1.age_end_type || null,
- AAC01_start_date: this.formData1.startTime || '',
- AAC01_end_date: this.formData1.endTime || '',
- field: this.formData1.seniorList || null, //字段条件
- page: this.paginationData.currentPage, //页码
- limit: this.paginationData.pageSize, //条数
- is_export: 1,
- };
- }
- console.error('pramse', pramse);
- this.funExeclPost(fileName, pramse, httpUrl, 'xlsx');
- },
- funExeclPost(fileName, pramse, httpUrl, format) {
- //导出
- let httpUrls = '/api' + httpUrl;
- downloadFile(httpUrls, pramse, format, fileName).then(res => {
- console.error('111', res);
- });
- },
- funGoto(val) {
- this.storageSet('getData', val);
- const { path } = this.$route;
- let toPath;
- if (path === '/hospital-search') {
- toPath = '/hospital-details';
- } else if (path === '/whitelist-search') {
- toPath = '/whitelist-details';
- } else {
- toPath = '/details';
- }
- // status = 1 代表不能复制文本
- this.$router.push({ path: toPath, query: { status: 1 } });
- },
- funBlur() {
- if (this.formData1.ageday > 356) {
- this.formData1.ageday = 356;
- }
- if (this.formData1.ageyear > 150) {
- this.formData1.ageyear = 150;
- }
- },
- funBluron() {
- if (this.formData1.hospitalizationon && this.formData1.hospitalizationin) {
- if (this.formData1.hospitalizationon > this.formData1.hospitalizationin) {
- this.$message('起止住院天数输入不正确');
- }
- }
- // this.formData1.hospitalizationon || '0' + '-' + this.formData1.hospitalizationin || '0',
- },
- funDel(i) {
- let index = i;
- if (index == 0) {
- return;
- }
- let list = this.formData1.seniorList;
- list.splice(index, 1);
- this.formData1.seniorList = list;
- },
- funAdd() {
- this.formData1.seniorList.push({
- key: '',
- value: '',
- type: '0',
- selectList: [],
- select_type: 0,
- });
- },
- pageHasChanged() {
- this.funQuery();
- },
- SizeChangeEvent(val) {
- this.paginationData.pageSize = val;
- this.funQuery();
- },
- selectInfo() {
- // let pramse = {};
- this.$axios.post('/selectInfo').then(res => {
- this.payList = res.data.pay;
- //支付方式 pay
- this.departmentList = res.data.department;
- //出院科室 department
- this.levelList = res.data.level;
- //问题属性 level
- this.coderList = res.data.coder;
- //编码元 coder
- this.statusList = res.data.status;
- this.fieldList = res.data.field;
- // this.department = res.data.department
- });
- },
- // 点击检索按钮
- funQuery() {
- console.error('this.choice111', this.choice);
- let min = this.formData1.hospitalizationon;
- let max = this.formData1.hospitalizationin;
- if (this.labelList.includes(this.labelText)) {
- this.columnShow = true;
- } else {
- this.columnShow = false;
- }
- //查询
- if (this.choice == 0) {
- let pramse = {
- level: this.formData0.problem || null, //问题属性
- AAA28: this.formData0.recordNum || null, //病案号
- AAC11C: this.formData0.Department || null, //出院科室
- AAA26C: this.formData0.payment || null, //付款方式
- status: this.formData0.state || null, //编辑状态
- AAC01_start_date: this.formData0.startTime || '',
- AAC01_end_date: this.formData0.endTime || '',
- coder_id: this.formData0.Coder || null, //编码员ID
- ORG_STATE: this.formData0.medicalRecord || null, //全部病案
- page: this.paginationData.currentPage, //页码
- limit: this.paginationData.pageSize, //条数
- is_tm: 1,
- };
- if (this.$route.query.code) {
- pramse.user_code = this.$route.query.code
- }
- sessionStorage.setItem('Zkpramse', JSON.stringify(pramse));
- sessionStorage.setItem('ZkChoice', this.choice);
- this.getinfo(pramse);
- } else {
- let pramse = {
- AAC04: `${min ? min : 0}-${max ? max : 0}`,
- AAC0401: `${min ? min : 0}`,
- AAC0402: `${max ? max : 0}`,
- AAA04: this.formData1.ageyear || null, //年龄
- AAA40: this.formData1.ageday || null, //不足一周岁年龄
- age_start_type: this.formData1.age_start_type || null,
- age_end_type: this.formData1.age_end_type || null,
- AAC01_start_date: this.formData1.startTime || '',
- AAC01_end_date: this.formData1.endTime || '',
- field: this.formData1.seniorList || null, //字段条件
- page: this.paginationData.currentPage, //页码
- limit: this.paginationData.pageSize, //条数
- is_tm: 1,
- };
- if (this.$route.query.code) {
- pramse.user_code = this.$route.query.code
- }
- sessionStorage.setItem('Zkpramse', JSON.stringify(pramse));
- sessionStorage.setItem('ZkChoice', this.choice);
- this.getinfo(pramse);
- }
- },
- getinfo(p) {
- this.$axios.post('/qualityList', p).then(res => {
- this.paginationData.total = res.data.count;
- this.tableData = res.data.list;
- this.ARG_F_D = res.data.ARG_F_D;
- this.ARG_STAY = res.data.ARG_STAY;
- this.AEM01C = res.data.AEM01C;
- this.SUM_ARG_STAY = res.data.SUM_ARG_STAY
- this.SUM_ARG_F_D = res.data.SUM_ARG_F_D
- });
- },
- reset() {
- // 重置数据
- if (this.choice == 0) {
- Object.assign(this.$data.formData0, this.$options.data().formData0);
- } else {
- Object.assign(this.$data.formData1, this.$options.data().formData1);
- }
- this.funQuery();
- },
- },
- };
- </script>
- <style scoped>
- ::v-deep.el-pagination.is-background .btn-next,
- ::v-deep.el-pagination.is-background .btn-prev,
- ::v-deep.el-pagination.is-background .el-pager li {
- margin: 0 5px;
- background-color: #fff;
- color: #606266;
- min-width: 30px;
- border-radius: 2px;
- border: 1px solid #dfe3f3;
- line-height: 27px;
- }
- ::v-deep.el-pagination.is-background .el-pager li:not(.disabled).active {
- background: #7e8bab;
- }
- ::v-deep.el-table .el-table__row td {
- color: #7e8bab;
- border-bottom: 1px solid #f4f4f4;
- }
- ::v-deep.el-table .el-table__header tr th:first-child {
- border-radius: 10px 0px 0px 10px;
- }
- ::v-deep.el-table .el-table__header tr th:last-child {
- border-radius: 0px 10px 10px 0px;
- }
- ::v-deep.el-table .el-table__header tr th {
- background: #f1f6ff;
- color: #13171e;
- border-bottom: 0px;
- }
- </style>
- <style lang="scss" scoped>
- .tableBox {
- background: #fff;
- padding: 19px;
- border-radius: 5px;
- font-size: 12px;
- }
- .block {
- background: #fff;
- border-radius: 5px;
- margin-bottom: 16px;
- padding: 20px 30px;
- margin-bottom: 20px;
- .fBtn {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .bnh {
- margin-bottom: 20px;
- }
- .barBtn {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .selects {
- width: 100%;
- }
- .rowsa {
- margin-bottom: 20px;
- }
- }
- .tableBox {
- background: #fff;
- padding: 19px;
- border-radius: 5px;
- }
- .dashboard {
- &-container {
- margin: 30px;
- }
- &-text {
- font-size: 30px;
- line-height: 46px;
- }
- }
- .pind {
- padding: 0 20px;
- }
- .pind10 {
- padding: 0 5px;
- }
- .width150 {
- width: 200px;
- }
- .width300 {
- width: 295px;
- }
- .width500 {
- width: 645px;
- }
- .width90 {
- width: 90px;
- }
- .blue {
- color: #185da6;
- }
- .h-title {
- display: flex;
- .blue {
- display: block;
- width: 6px;
- height: 17px;
- background: linear-gradient(180deg, #185da6 0%, #3195ff 100%);
- border-radius: 3px;
- }
- .text {
- font-size: 16px;
- font-weight: 600;
- color: #13171e;
- margin: 0 0 0 14px;
- }
- }
- .flextabtitle-box {
- display: flex;
- align-items: center;
- }
- .flextab-item {
- display: flex;
- align-items: center;
- margin-left: 20px;
- }
- .flextab-item > div {
- font-size: 15px;
- margin-right: 15px;
- }
- .flextab-item > div span.s-1 {
- color: #185da6;
- }
- .flextab-item > div span.s-2 {
- font-weight: bold;
- }
- .marginLeft {
- margin-left: -110px;
- }
- .width100 {
- width: 100px;
- }
- </style>
|