From 8399d182aef8207d5bcd38a50d1aeb1750593bc0 Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期五, 01 十二月 2023 13:36:35 +0800 Subject: [PATCH] 提交信息 --- src/views/patient/patient/index.vue | 52 ++++++++++++++++++++++++++++++++++++++++------------ 1 files changed, 40 insertions(+), 12 deletions(-) diff --git a/src/views/patient/patient/index.vue b/src/views/patient/patient/index.vue index 2ce3194..6a53f9e 100644 --- a/src/views/patient/patient/index.vue +++ b/src/views/patient/patient/index.vue @@ -307,7 +307,7 @@ <el-table-column label="鎿嶄綔" align="center" - width="160" + width="190" class-name="small-padding fixed-width" > <template slot-scope="scope"> @@ -330,8 +330,17 @@ type="text" @click="handleUpdate(scope.row)" v-hasPermi="['system:user:edit']" - ><span class="button-textxg" + ><span class="button-textxga" ><i class="el-icon-edit"></i>淇敼</span + ></el-button + > + <el-button + size="medium" + type="text" + @click="Distributionservice(scope.row)" + v-hasPermi="['system:user:edit']" + ><span class="button-textxg" + ><i class="el-icon-menu"></i>鏈嶅姟</span ></el-button > </template> @@ -557,6 +566,21 @@ <el-button @click="submitclose">鍙� 娑�</el-button> </div> </el-dialog> + <!-- 璺宠浆鏈嶅姟瀵硅瘽妗� --> + <el-dialog title="閫夋嫨鏈嶅姟绫诲瀷" :visible.sync="serviceVisible"> + <el-radio-group v-model="serviceradio"> + <el-radio :label="1">瀹f暀闅忚</el-radio> + <el-radio :label="2">闂ㄨ瘖鏈嶅姟</el-radio> + <el-radio :label="3">鍑洪櫌鏈嶅姟</el-radio> + <el-radio :label="4">澶嶈瘖鏈嶅姟</el-radio> + <el-radio :label="5">浣撴閫氱煡</el-radio> + <el-radio :label="6">闂嵎鏈嶅姟</el-radio> + </el-radio-group> + <div slot="footer" class="dialog-footer"> + <el-button @click="serviceVisible = false">鍙� 娑�</el-button> + <el-button type="primary" @click="CreateService">鍒涘缓鏈嶅姟</el-button> + </div> + </el-dialog> </div> </template> @@ -614,6 +638,8 @@ // 榛樿瀵嗙爜 initPassword: undefined, amendtag: false, //鏄惁淇敼 + serviceVisible: false, + serviceradio: 1, // 鏃ユ湡鑼冨洿 dateRange: [], paperstypes: [ @@ -780,16 +806,8 @@ this.loading = false; }); }, - - // 绛涢�夎妭鐐� - filterNode(value, data) { - if (!value) return true; - return data.label.indexOf(value) !== -1; - }, - // 鑺傜偣鍗曞嚮浜嬩欢 - handleNodeClick(data) { - this.queryParams.deptId = data.id; - this.handleQuery(); + Distributionservice(row) { + this.serviceVisible = true; }, // 鍙栨秷鎸夐挳 @@ -887,6 +905,13 @@ this.$modal.msgSuccess("鍒犻櫎鎴愬姛"); }) .catch(() => {}); + }, + //鏈嶅姟璺宠浆 + CreateService() { + this.$router.push({ + path: "/followvisit/particty", + query: { type: this.serviceradio }, + }); }, /** 瀵煎嚭鎸夐挳鎿嶄綔 */ handleExport() { @@ -1075,4 +1100,7 @@ .button-textsc { color: #28cfe6; } +.button-textxg { + color: #de7897; +} </style> -- Gitblit v1.9.3