1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063 |
- <template>
- <div>
- <crumbs :title="minTitle" :param="$route.params" linkTo="BasicTermsMaintenance"></crumbs>
- <div class="contents">
- <div class="content">
- <h3>添加术语:</h3>
- <p class="titl">医学标准术语:</p>
- <table class="deptbox" v-if="id == ''">
- <tr>
- <td class="ind">序号</td>
- <td>
- 标准词
- <span class="necess">*</span>
- </td>
- <td>拼音</td>
- <td>
- 类型
- <span class="necess">*</span>
- </td>
- <td class="desc">说明</td>
- </tr>
- <tr>
- <td class="ind">1</td>
- <td :title="data.name&&data.name.length>9?data.name:''">
- <!-- 修改时标准词不能修改,修改了会当做新增处理 4-17 -->
- <p v-if="id">{{data.name}}</p>
- <!-- 4-18 需求变更 -->
- <input
- v-else
- type="text"
- v-model="data.name"
- placeholder="请输入术语"
- maxlength="50"
- @blur="handleBlur(1)"
- />
- <SimilarListDrag
- :searchType="searchType"
- :similarList="similarList"
- isShow="true"
- @closeTable="closeTable"
- ></SimilarListDrag>
- </td>
- <td>
- <input
- type="text"
- v-model="data.spell"
- placeholder="请输入拼音"
- maxlength="50"
- @input="handlePinyin($event,1)"
- />
- </td>
- <td>
- <!-- <el-select v-if="!id" v-model="data.type" filterable placeholder="请选择" size="small" @change="selectType">
- <el-option
- v-for="item in typeList"
- :key="item.id"
- :label="item.name"
- :value="item.name">
- </el-option>
- </el-select>-->
- <template v-if="!id">
- <el-select
- v-model="data.type"
- filterable
- clearable
- placeholder="请选择"
- size="small"
- @change="selectType"
- >
- <el-option-group v-for="group in options" :key="group.label">
- <el-option
- v-for="item in group.options"
- :key="item.id"
- :label="item.name"
- :value="item.name"
- ></el-option>
- </el-option-group>
- </el-select>
- </template>
- <span v-else>{{data.type}}</span>
- </td>
- <td class="desc">
- <input v-model="data.remark" placeholder="请输入术语说明" maxlength="120" />
- </td>
- </tr>
- </table>
- <div class="deptboxChange" v-else>
- <table class="deptbox deptboxTable">
- <tr>
- <td class="ind">序号</td>
- <td>术语</td>
- <td>拼音</td>
- <td>类型</td>
- <td class="desc">说明</td>
- <td class="descs">术语性质</td>
- <td v-if="id">操作</td>
- </tr>
- <tr v-for="(item,index) in allwords" :key="index">
- <td class="ind">{{index+1}}</td>
- <td :title="item.name&&item.name.length>9?item.name:''">
- <!-- 使用原生input,输入限制 -->
- <!-- <el-input v-model="item.name" placeholder="请输入术语" maxlength="30" size="small" @input.native="handleInput(2,index)"></el-input> -->
- <input
- type="text"
- v-model="item.name"
- :title="item.name"
- placeholder="请输入术语"
- maxlength="50"
- @blur="handleBlur(2,index,99)"
- />
- <SimilarListDrag
- :searchType="searchType"
- :similarList="similarList"
- :isShow="index ===searchIndex"
- @closeTable="closeTable"
- ></SimilarListDrag>
- </td>
- <!-- <td v-if="!item.isEdit">
- {{item.spell}}
- </td>
- <td v-else>-->
- <td>
- <input
- type="text"
- v-model="item.spell"
- placeholder="请输入拼音"
- maxlength="50"
- @input="handlePinyin($event,2,index)"
- class="spell"
- />
- </td>
- <td>
- <template v-if="index==0&©">
- <el-select
- v-model="data.type"
- filterable
- placeholder="请选择"
- size="small"
- @change="selectType"
- >
- <el-option-group v-for="group in options" :key="group.label">
- <el-option
- v-for="item in group.options"
- :key="item.id"
- :label="item.name"
- :value="item.name"
- ></el-option>
- </el-option-group>
- </el-select>
- </template>
- <span v-else>{{data.type}}</span>
- </td>
- <td class="desc">
- <input v-model="item.remark" placeholder="请输入术语说明" maxlength="120" />
- </td>
- <td class="desc">{{item.isConcept == 1?"标准词":"同义词"}}</td>
- <td v-if="id">
- <span class="displayColor" v-if="item.isConcept == 1">删除</span>
- <span @click="deleLine(index,55,item)" class="delete" v-else>删除</span>
- </td>
- </tr>
- <tr @click="addSpan(55)">
- <td colspan="7" class="addSpan">+</td>
- </tr>
- </table>
- <div class="actionDo">
- <!-- <div class="btnWrap"> -->
- <!-- <el-button type="primary" size="mini" v-if="show" @click="comfirn(14)">确认修改</el-button> -->
- <!-- <el-button plain size="mini" v-if="show" @click="toggleShow(1)">放弃修改</el-button>
- <el-button plain size="mini" @click="toggleShow(2)" v-if="!show">修改标准词</el-button>-->
- <!-- </div> -->
- <div class="radioWrap" v-if="show">
- <el-radio-group v-model="radioVal" size="mini">
- <el-radio
- v-for="(item,index) in allwords"
- :label="index"
- :key="index"
- :disabled="index == 0"
- >选为标准词</el-radio>
- </el-radio-group>
- </div>
- </div>
- </div>
- <p class="titl" v-if="id == ''">同义词:</p>
- <table class="deptbox" v-if="id == ''">
- <tr>
- <td class="ind">序号</td>
- <td>术语</td>
- <td>拼音</td>
- <td>类型</td>
- <td class="desc">说明</td>
- <td v-if="id">操作</td>
- </tr>
- <tr v-for="(item,index) in synonymous" :key="index">
- <td class="ind">{{index+1}}</td>
- <td :title="item.name&&item.name.length>9?item.name:''">
- <!-- 使用原生input,输入限制 -->
- <!-- <el-input v-model="item.name" placeholder="请输入术语" maxlength="30" size="small" @input.native="handleInput(2,index)"></el-input> -->
- <input
- type="text"
- v-model="item.name"
- placeholder="请输入术语"
- maxlength="50"
- @blur="handleBlur(2,index)"
- />
- <SimilarListDrag
- :searchType="searchType"
- :similarList="similarList"
- :isShow="index ===searchIndex"
- @closeTable="closeTable"
- ></SimilarListDrag>
- </td>
- <td>
- <input
- type="text"
- v-model="item.spell"
- placeholder="请输入拼音"
- maxlength="50"
- @input="handlePinyin($event,3,index)"
- />
- </td>
- <td>{{data.type}}</td>
- <td class="desc">
- <input v-model="item.remark" placeholder="请输入术语说明" maxlength="120" />
- </td>
- <td v-if="id">
- <span @click="deleLine(index,1,item)" class="delete">删除</span>
- </td>
- </tr>
- <tr @click="addSpan">
- <td :colspan="colspan" class="addSpan">+</td>
- </tr>
- </table>
- <div class="moreInfo" v-if="showMore==1">
- <p>更多信息:</p>
- <el-form label-width="150px">
- <el-form-item label="性别:">
- <el-select v-model="sexType">
- <el-option v-for="(it,i) in sex" :key="i" :label="it.name" :value="it.name"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="年龄:" class="ages">
- <el-input v-model.number="minAge" type="number" @input="inputAge"></el-input>
- <span class="ageLine">~</span>
- <el-input v-model.number="maxAge" type="number" @input="inputAge"></el-input>
- </el-form-item>
- <el-form-item label="科室:" v-if="dioType" class="marT">
- <el-select v-model="dept">
- <!-- <el-option v-for="(it,i) in deptList" :label="it.name" :value="it.name"></el-option> -->
- <el-option-group v-for="group in deptListArr" :key="group.label">
- <el-option
- v-for="item in group.deptList"
- :key="item.id"
- :label="item.name"
- :value="item.name"
- ></el-option>
- </el-option-group>
- </el-select>
- </el-form-item>
- <el-form-item label="归属类型:" v-if="dioType" class="marT">
- <el-select v-model="dioType">
- <el-option v-for="(it,i) in dioTypeList" :key="i" :label="it.name" :value="it.val"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item
- v-if="data.type=='症状'"
- label="填写单患者界面展示通俗内容:"
- prop="description"
- class="marT description"
- >
- <span class="necess">*</span>
- <el-input v-model.trim="description" maxlength="7" placeholder="请输入填写单患者界面展示通俗内容"></el-input>
- </el-form-item>
- <el-form-item v-if="data.type=='症状'" label="医学教育说明:" prop="explains" class="marT">
- <el-input
- type="textarea"
- v-model.trim="explains"
- maxlength="100"
- style="width: 500px;"
- :rows="4"
- ></el-input>
- </el-form-item>
- </el-form>
- </div>
- <div class="btn">
- <el-button type="primary" :disabled="saveDisable" @click="comfirn">确 定</el-button>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script type="text/javascript">
- import api from '@api/knowledgeTree.js';
- import pinyin from '../../js/Convert_Pinyin.js';
- import utils from '@api/utils.js';
- import SimilarListDrag from './SimilarListDrag';
- export default {
- name: 'AddMedicalName',
- data() {
- return {
- minTitle: '基础术语维护-添加',
- data: {
- name: '',
- type: '',
- code: '',
- remark: '',
- isConcept: 1,
- spell: ''
- },
- radioVal: '',
- typeList: [],
- id: '',
- synonymous: [], //同义词
- singleword: [],
- allwords: [], //标准词和同义词
- colspan: 5,
- colspans: 6,
- currentPage: 1,
- pageSize: 10,
- show: false,
- tmpSynonymous: [],
- sexType: '通用',
- maxAge: 200,
- minAge: 0,
- showMore: '',
- sex: [
- {
- name: '通用',
- value: 3
- },
- {
- name: '男',
- value: 1
- },
- {
- name: '女',
- value: 2
- }
- ],
- unfit: false, //点确认时是否弹提示,
- saveDisable: false, //保存按钮禁止点击
- options: [],
- copy: null,
- dioTypeList: [], //更多信息-类型
- dioType: '', //默认展示一类
- deptList: [], //更多信息-科室
- deptListArr: [], //科室信息分组
- dept: '', //默认展示全科
- similarList: [], //相似词列表
- searchIndex: -1, //展示哪个的同义词
- searchType: '',
- description: '',
- explains: ''
- };
- },
- created() {
- this.getTypeList();
- const id = this.$route.params.id;
- const copy = this.$route.params.copy || '';
- this.copy = copy;
- if (id) {
- this.minTitle = copy ? '基础术语维护-复制' : '基础术语维护-修改';
- this.id = id;
- this.colspan = 5;
- this.getDetail(id);
- }
- },
- watch: {
- radioVal(newVal, preVal) {
- if (newVal && newVal != preVal) {
- this.changeState(newVal);
- }
- }
- },
- methods: {
- dragAdd(ev) {
- utils.dragBox('dragModalWrap', 'dragModalTitle', 'add');
- },
- dragDel() {
- utils.dragBox('dragModalWrap', 'dragModalTitle', 'del');
- },
- closeTable() {
- this.searchType = '';
- this.similarList = [];
- },
- // 诊断类型下--更多信息-类型
- getDioType(flag) {
- api.getknowledgeList().then(res => {
- const data = res.data;
- if (data.code == 0) {
- this.dioTypeList = data.data[2];
- // 修改时无需赋值
- if (!flag) {
- this.dioType = this.dioTypeList[0].val;
- }
- }
- });
- },
- // 诊断类型下--更多信息-科室
- getDdeptList(conptId) {
- api.getDeptList({ type: 1 }).then(res => {
- const data = res.data;
- if (data.code == 0) {
- this.deptList = data.data;
- if (!conptId) {
- this.dept = '全科'; //默认展示全科
- } else {
- // 科室id转成name显示
- this.deptList.map((v, i) => {
- if (v.conceptId == conptId) {
- this.dept = v.name;
- }
- });
- }
- const total = this.deptList.length;
- const average = parseInt(total / 3);
- const mod = total % 3; //余数
- const firstGroup = this.deptList.slice(0, average);
- let secGroup = [];
- let thirdGroup = [];
- let tempArr = [];
- if (mod == 2) {
- secGroup = this.deptList.slice(average, average * 2 + 1);
- thirdGroup = this.deptList.slice(average * 2 + 1, total);
- } else {
- secGroup = this.deptList.slice(average, average * 2);
- thirdGroup = this.deptList.slice(average * 2, total);
- }
- tempArr.push(
- { label: 1, deptList: firstGroup },
- { label: 2, deptList: secGroup },
- { label: 3, deptList: thirdGroup }
- );
- this.deptListArr = tempArr;
- }
- });
- },
- changeState(val) {
- let tmpAllwords = JSON.parse(JSON.stringify(this.synonymous));
- for (let i = 0; i < tmpAllwords.length; i++) {
- if (i + 1 == val) {
- tmpAllwords[i].isConcept = 1;
- tmpAllwords[i].type = this.data.type;
- } else {
- tmpAllwords[i].isConcept = 0;
- }
- }
- this.tmpSynonymous = tmpAllwords;
- this.synonymous = tmpAllwords;
- },
- toggleShow(num) {
- let tmpShow = this.show;
- this.show = !tmpShow;
- if (num == 1) {
- this.changeState(-1);
- this.radioVal = '';
- }
- },
- reViewData(data) {
- let tmpObj = [{
- isConcept: data.isConcept,
- name: data.libName,
- remark: data.remark,
- spell: data.spell,
- type: data.typeName,
- conceptId: data.conceptId,
- libId: data.libId,
- isHasCommon: data.isHasCommon,
- synonymName: data.synonymName,
- status: data.status,
- typeId: data.libType
- }]
- for(let i = 0;i < data.klConceptSub.length;i++){
- let tmp = data.klConceptSub[i]
- tmp.name = tmp.synonymName
- tmp.type = tmp.typeName
- tmp.typeId = tmp.libType
- }
- data.libName = tmpObj
- data.otherNames = data.klConceptSub
- return data
- },
- getDetail(ids) {
- if (ids) {
- api.getBaseConceptAll({ conceptId: ids }).then(res => {
- const result = res.data;
- let redata = this.reViewData(result.data)
- if (result.code == 0) {
- this.data = redata.libName[0];
- this.singleword = redata.libName;
- this.synonymous = redata.otherNames;
- this.allwords = redata.libName.concat(redata.otherNames);
- this.showMore = redata.isHasCommon;
- this.maxAge = redata.maxAge;
- this.minAge = redata.minAge;
- this.description = redata.description;
- this.explains = redata.explains;
- const type = redata.type;
- if (type == '诊断') {
- this.dioType = redata.classify || 'Ⅰ'; //类型,默认展示Ⅰ类
- const deptConptId = redata.deptId;
- this.getDioType(true);
- this.getDdeptList(deptConptId);
- }
- // this.sexType = result.data.sexType;
- let sexType = redata.sexType;
- this.sex.map((v, i) => {
- if (v.value == sexType) {
- this.sexType = v.name;
- }
- });
- } else {
- this.$message({
- message: result.msg,
- type: 'warning'
- });
- }
- });
- }
- },
- getTypeList() {
- api.baseTypeGetPage({ name: '',size: 1000 })
- .then(res => {
- const data = res.data;
- if (data.code == 0) {
- let types = data.data.records
- this.typeList = types;
- // this.typeList = data.data;
- // 类型改成平铺
- if (types.length > 0) {
- const total = types.length;
- const average = parseInt(total / 3);
- const mod = total % 3; //余数
- const firstGroup = types.slice(0, average);
- let secGroup = [];
- let thirdGroup = [];
- if (mod == 2) {
- secGroup = types.slice(average, average * 2 + 1);
- thirdGroup = types.slice(average * 2 + 1, total);
- } else {
- secGroup = types.slice(average, average * 2);
- thirdGroup = types.slice(average * 2, total);
- }
- this.options.push(
- { label: 1, options: firstGroup },
- { label: 2, options: secGroup },
- { label: 3, options: thirdGroup }
- );
- }
- } else {
- this.$message({
- message: data.msg,
- type: 'warning'
- });
- }
- })
- .catch(error => {
- console.log(error);
- });
- },
- // handleInput(index,name){
- /* handleInput(type,index){
- // 可输入内容:字母、数字、汉字、特殊字符:% —— 其余不可输入;
- // if(!name){//标准词输入
- if(type==1){//标准词输入
- this.data.name = this.data.name.replace(/[^%0-9a-zA-Z\u4e00-\u9fa5]/g,'');
- }else{
- this.synonymous[index].name = this.synonymous[index].name.replace(/[^%0-9a-zA-Z\u4e00-\u9fa5]/g,'');
- }
- },*/
- handleBlur(type, index, flg) {
- // 不能为纯数字、纯字符、纯数字加字符 4-18
- // const pattern = /[^~@#$%^&*_\-+=,,.。::"“??”;;、!!0-9]/g;
- // 需求更改:不能为纯数字,其余均可输入 5-20
- const pattern = /[^0-9]/g;
- if (type == 1) {
- //标准词输入
- if (this.data.name && !pattern.test(this.data.name)) {
- this.$message({
- // message:'无法输入纯数字或者纯字符,请输入正确数据!',
- message: '无法输入纯数字,请输入正确数据!',
- type: 'warning'
- });
- // this.data.name = '';
- this.unfit = true;
- } else {
- let data = this.data;
- data.spell = pinyin.getCamelChars(data.name);
- this.unfit = false;
- this.searchType = 'standard';
- this.getSimilarList(this.data.name);
- }
- } else if (type == 2) {
- // 修改时术语名称、拼音和类型均不能修改
- if (flg == 99) {
- // if(this.synonymous[index-1].name && !pattern.test(this.synonymous[index-1].name)){
- if (
- this.allwords[index].name &&
- !pattern.test(this.allwords[index].name)
- ) {
- this.$message({
- message: '无法输入纯数字,请输入正确数据!',
- type: 'warning'
- });
- // this.synonymous[index-1].name = '';
- this.unfit = true;
- } else {
- // let current = this.synonymous[index-1];
- let current = this.allwords[index];
- current.spell = pinyin.getCamelChars(current.name);
- this.unfit = false;
- this.searchType = 'standard';
- this.searchIndex = index;
- this.getSimilarList(this.allwords[index].name);
- }
- } else {
- if (
- this.synonymous[index].name &&
- !pattern.test(this.synonymous[index].name)
- ) {
- this.$message({
- message: '无法输入纯数字,请输入正确数据!',
- type: 'warning'
- });
- // this.synonymous[index].name = '';
- this.unfit = true;
- } else {
- let current = this.synonymous[index];
- current.spell = pinyin.getCamelChars(current.name);
- this.unfit = false;
- this.searchType = 'similar';
- this.searchIndex = index;
- this.getSimilarList(current.name);
- }
- }
- }
- },
- handlePinyin(e, flag, index) {
- //只能输入英文
- e.target.value = e.target.value.replace(/[^a-zA-Z]/g, '');
- // 解决输入数字不触发更新
- if (flag == 1) {
- //标准词
- this.data.spell = e.target.value;
- } else if (flag == 2) {
- //同义词-修改
- this.allwords[index].spell = e.target.value;
- } else if (flag == 3) {
- //同义词-新增
- this.synonymous[index].spell = e.target.value;
- }
- // e.target.value = e.target.value.replace(/[^a-zA-Z]/g,'');
- },
- getSimilarList(name) {
- //不知道还有没有用
- return
- if (!name) {
- this.closeTable();
- return;
- }
- const param = {
- inputStr: name
- };
- api.getSimilarList(param).then(res => {
- this.similarList = res.data.data;
- });
- },
- addSpan(type) {
- let singleSpan = {
- name: '',
- remark: '',
- isConcept: 0,
- isEdit: true,
- spell: null
- };
- if (type == 55) {
- this.allwords.push(singleSpan);
- this.synonymous.push(singleSpan);
- } else {
- this.synonymous.push(singleSpan);
- }
- },
- warning(msg, type) {
- this.$message({
- showClose: true,
- message: msg,
- type: type || 'warning'
- });
- },
- showConfirmDialog(msg, resolve) {
- this.$alert(msg, '提示', {
- confirmButtonText: '确定',
- type: 'warning'
- })
- .then(() => {
- resolve();
- })
- .catch(() => {});
- },
- deleLine(index, type,item) {
- // 只在界面删除数据,待点确认 后参才真正删除
- if (type == 55) {
- const {libId} = item
- if(libId){
- api.clearConceptInfo({libId}).then((res)=>{
- const result = res.data
- if(result.code == 0){
- this.synonymous.splice(index - 1, 1);
- this.allwords.splice(index, 1);
- }
- })
- }else{
- this.synonymous.splice(index - 1, 1);
- this.allwords.splice(index, 1);
- }
- } else {
- console.log(2222)
- this.synonymous.splice(index, 1);
- }
- },
- // 保存基础术语
- comfirn(flg) {
- if (!this.data.name) {
- this.warning('请输入标准词');
- return;
- }
- if (!this.data.type && !this.unfit) {
- this.warning('请选择术语类型');
- return;
- }
- // 处于修改标准词状态且没有选中,不能保存
- if (this.show && !this.radioVal) {
- this.warning('请先选择标准词');
- return;
- }
- // 年龄为必填项--2019-6-5需求
- if (this.showMore == 1) {
- if ((!this.minAge && this.minAge != 0) || !this.maxAge) {
- this.warning('年龄不能为空,区间为0-200');
- return;
- }
- if (
- this.minAge < 0 ||
- this.minAge > 200 ||
- this.maxAge < 0 ||
- this.maxAge > 200
- ) {
- this.warning('年龄必须是0-200');
- return;
- }
- }
- // 过滤同义词空数据
- let realData = [];
- if (this.id) {
- //修改用暂存的列表
- realData = this.synonymous.filter(item => {
- return item.name;
- });
- let tmpArr = [];
- for (let k = 0; k < realData.length; k++) {
- if (realData[k].isConcept == 1) {
- let tmpdata = JSON.parse(JSON.stringify(this.data));
- tmpArr.push(realData[k]);
- realData.splice(k, 1);
- tmpdata.isConcept = 0;
- realData.push(tmpdata);
- this.data = tmpArr[0];
- }
- }
- } else {
- realData = this.synonymous.filter(item => {
- return item.name;
- });
- }
- let detailList = [];
- for (let i = 0; i < realData.length; i++) {
- let obj = {}
- realData[i].synonymName = realData[i].name;
- realData[i].typeId = this.data.code;
- // obj.isConcept=realData[i].isConcept
- // obj.remark=realData[i].remark
- // obj.spell=realData[i].spell
- detailList.push(realData[i]);
- // detailList.push(obj);
- }
- // 校验是否有名称全为数字
- const pattern = /[^0-9]/g;
- for (let d = 0; d < detailList.length; d++) {
- let dname = detailList[d].name;
- // if(detailList[d].name && !pattern.test(detailList[d].name)){
- if (dname && !dname.match(pattern)) {
- if (!this.unfit) {
- //避免和失焦事件同事弹出
- this.$message({
- message: '无法输入纯数字,请输入正确数据!',
- type: 'warning'
- });
- }
- this.unfit = false;
- return false;
- break;
- }
- }
- if (this.data.type == '症状' && !this.description) {
- this.warning('请输入填写单患者界面展示通俗内容');
- return;
- }
- let params,sexCode=null;
- if (this.showMore == 1) {// 下拉文字转code
- this.sex.map((v, i) => {
- if (v.name == this.sexType) {
- sexCode = v.value;
- }
- });
- params = {
- conceptId: this.copy ? '' : this.id,
- isConcept: this.data.isConcept,
- libName: this.data.name,
- remark: this.data.remark,
- spell: this.data.spell,
- status: this.data.status||1,
- libType: this.data.typeId,
- typeId:this.data.typeId,
- synonymName: this.data.synonymName,
- isHasCommon: this.data.isHasCommon,
- libId: this.data.libId,
- klConceptSub:detailList,
- sexType:sexCode,
- maxAge:this.maxAge,
- minAge:this.minAge
- }
- }else{
- params = {
- conceptId: this.copy ? '' : this.id,
- isConcept: this.data.isConcept||1,
- libName: this.data.name,
- remark: this.data.remark,
- spell: this.data.spell,
- libType: this.data.typeId||this.data.code,
- typeId:this.data.typeId||this.data.code,
- libId: this.data.libId,
- status: this.data.status||1,
- isHasCommon: this.data.isHasCommon||0,
- synonymName: '',
- klConceptSub: detailList||[],
- };
- }
- // return false
- this.saveDisable = true; //提交保存按钮不可点击,返回结果时才可点击,防止频繁发送请求
- api.saveBaseConceptInfo(params).then(res => {
- const result = res.data;
- if (result.code == 0) {
- this.warning(res.data.msg || '操作成功', 'success');
- //返回带搜索条件的首页
- this.$router.push({
- name: 'BasicTermsMaintenance',
- params: Object.assign({}, this.$route.params, { currentPage: 1 })
- });
- /*if(flg == 14){
- this.getDetail(this.id)
- this.radioVal = ''
- this.show = false
- }else{
- this.$router.push({name:'MedicalName'});
- }*/
- } else {
- this.warning(res.data.msg);
- }
- this.saveDisable = false;
- });
- },
- inputAge() {
- // console.log("输入年龄")
- },
- selectType(e) {
- this.typeList.map((v, i) => {
- if (v.name == e) {
- this.showMore = v.isHasCommon;
- this.data.code = v.code
- }
- });
- if (e == '诊断') {
- this.getDioType();
- this.getDdeptList();
- } else {
- this.dioType = '';
- this.dept = '';
- }
- }
- },
- components: {
- SimilarListDrag
- }
- };
- </script>
- <style lang="less" scoped>
- @import '../../less/admin.less';
- table,
- tr,
- td {
- list-style: none;
- }
- /deep/ .radioWrap .el-radio {
- display: block;
- height: 41px;
- line-height: 41px;
- text-align: right;
- margin-left: 0;
- }
- /deep/ .moreInfo .el-form-item .el-form-item__label {
- width: 85px;
- text-align: left;
- }
- // 饿了么分组下拉
- .el-scrollbar {
- .el-select-dropdown__list {
- .el-select-group__wrap {
- min-width: 160px !important;
- display: inline-block !important;
- vertical-align: top !important;
- }
- }
- }
- .el-select-group__wrap::after {
- background: #fff !important;
- }
- .displayColor {
- color: #ccc;
- cursor: not-allowed;
- }
- .delete {
- cursor: pointer;
- }
- .content {
- background: #fff;
- padding: 20px 20px 30px;
- color: #545455;
- }
- .titl {
- margin: 25px 0 10px;
- }
- .deptbox {
- // width: 100%;
- background: #fff;
- padding: 20px 10px 30px;
- font-size: 14px;
- text-align: left;
- border-collapse: collapse;
- > tr {
- height: 30px;
- text-align: center;
- td {
- width: 135px;
- border: 1px solid #666;
- padding: 5px;
- position: relative;
- }
- input {
- border: none;
- border: 1px solid #ccc;
- width: 100%;
- height: 30px;
- padding: 0 7px;
- box-sizing: border-box;
- border-radius: 4px;
- }
- .ind {
- width: 55px;
- }
- .desc {
- width: 280px;
- }
- .descs {
- width: 50px;
- }
- }
- .addSpan {
- text-align: center;
- cursor: pointer;
- }
- }
- .deptboxTable {
- width: 100%;
- }
- .deptboxChange {
- padding-right: 210px;
- position: relative;
- }
- .actionDo {
- width: 200px;
- position: absolute;
- top: 1px;
- right: 0;
- .btnWrap {
- height: 30px;
- }
- }
- .btn {
- text-align: right;
- margin-top: 20px;
- }
- .necess {
- display: inline-block;
- vertical-align: middle;
- color: red;
- margin-left: 2px;
- }
- .moreInfo {
- border-top: 1px solid #c0c4cc;
- margin-top: 45px;
- p {
- margin: 15px 0;
- }
- }
- .spell {
- text-align: center;
- }
- /deep/.ages {
- margin-top: 20px;
- .el-input {
- display: inline-block;
- width: auto;
- .el-input__inner {
- width: 60px;
- padding: 0 5px;
- text-align: center;
- }
- .el-input__inner::-webkit-outer-spin-button,
- .el-input__inner::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
- .el-input__inner[type='number'] {
- -moz-appearance: textfield;
- }
- }
- .ageLine {
- display: inline-block;
- margin: 0 35px;
- }
- }
- /deep/ .marT {
- margin-top: 20px;
- }
- /deep/.description {
- position: relative;
- .necess {
- position: absolute;
- left: -158px;
- z-index: 2;
- }
- .el-input__inner {
- width: 200px;
- height: 40px;
- line-height: 40px;
- // text-align: center;
- }
- }
- </style>
|