From 09d02a6009c4de04fede010afa912ecdfdc6e039 Mon Sep 17 00:00:00 2001 From: lkk <364857242@qq.com> Date: 星期二, 03 六月 2025 14:00:51 +0800 Subject: [PATCH] 1 --- src/views/doctor/examination/index.vue | 37 +++++++++++++++++++++++++++++-------- 1 files changed, 29 insertions(+), 8 deletions(-) diff --git a/src/views/doctor/examination/index.vue b/src/views/doctor/examination/index.vue index 45c2ee0..f4d1a3b 100644 --- a/src/views/doctor/examination/index.vue +++ b/src/views/doctor/examination/index.vue @@ -52,6 +52,15 @@ /> </el-select> </el-form-item> + <el-form-item label="椤圭洰" prop="tcm"> + <el-input + v-model="queryParams.tcm" + placeholder="璇疯緭鍏ヤ綋妫�鍙�" + clearable + @keyup.enter.native="handleQuery" + style="width: 170px" + /> + </el-form-item> <el-form-item label="鐧昏鏃堕棿" prop="createTimeList"> <el-date-picker v-model="createTimeList" @@ -143,6 +152,12 @@ min-width="100" /> <el-table-column + label="濂楅鍚�" + align="center" + prop="tcm" + min-width="100" + /> + <el-table-column label="鐧昏鏃堕棿" align="center" prop="tjTime" @@ -181,11 +196,11 @@ size="mini" type="text" @click="tongbu(scope.row)" - disabled + >鍚屾</el-button > <!-- :disabled="dis" --> - <el-button + <!-- <el-button disabled size="mini" type="text" @@ -199,7 +214,7 @@ disabled @click="bohui(scope.row)" >椹冲洖</el-button - > + > --> </template> <!-- v-show=" (xianshi == 'Y' || xianshi == 'y') && @@ -313,6 +328,7 @@ size="mini" type="text" @click="yijian(scope.row)" + v-if="yijiantype == 'N'" >宸叉</el-button > <el-button @@ -322,6 +338,7 @@ @click="queryResultone(scope.row)" >缁撴灉</el-button > + <!-- --> <!-- @click="chaxun(scope.row) " --> </template> </el-table-column> @@ -347,6 +364,7 @@ <el-table-column label="妫�娴嬬粨鏋�" prop="pro_result"> </el-table-column> <el-table-column label="鍙傝�冭寖鍥�" prop="ckfw"> </el-table-column> + <el-table-column label="寮傚父鏍囧織" prop="ycbz"> </el-table-column> </el-table> </div> @@ -426,6 +444,7 @@ loading: true, selectedTjNumber: "", drawer: false, + yijiantype: null, type: null, CompanyList: [], CheckBox: {}, @@ -439,6 +458,7 @@ name: null, beginTime: null, endTime: null, + tcm:"", tjCompName: "", }, // 缁戝畾鍗曢�夋寜閽� @@ -502,7 +522,7 @@ }, methods: { changRed({ row }) { - if (row.ycbz != "" && row.ycbz != null && row.ycbz === "1") { + if (row.ycbz != "" && row.ycbz != null && row.ycbz === 1) { // 鍙橀鑹茬殑鏉′欢 return { color: "red", // 杩欎釜return鐨勫氨鏄牱寮� 鍙互鏄痗olor 涔熷彲浠ユ槸backgroundColor @@ -698,6 +718,7 @@ beginTime: null, endTime: null, tjCompName: "", + tcm:"" }), (this.CheckBox.drugManufacturerId = ""); this.handleQuery(); @@ -747,6 +768,10 @@ typeOne(tjNumber).then((res) => { this.type = res.data; + }); + + getConfigKey("sfyccsyjan").then((res) => { + this.yijiantype = res.msg; }); cSWebGetPro(tjNumber).then((res) => { @@ -844,8 +869,6 @@ const proId = row.proId; resultList(tjNum, proId).then((res) => { this.jieguoList = res.data; - console.log(this.jieguoList, 998877); - this.jyjc = this.jieguoList[0].jyjc; const ycbz = this.jieguoList[0].ycbz; /* if (ycbz === "" || ycbz === null) { @@ -874,14 +897,12 @@ }, 300000); }, tongbu(row) { - // this.$refs.tb.toggleRowSelection(row); this.$modal.loading("姝e湪鍚屾锛岃绋嶅��..."); this.setTime(); let tjNumber = row.tjNumber; dataSynchronization(tjNumber) .then((res, error) => { if (res.code == 200) { - // this.$forceUpdate(); this.handleCurrentChange(row); clearInterval(this.clearTimeSet); this.clearTimeSet = null; -- Gitblit v1.8.0