最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

Vue之checkbox多選框的實(shí)際應(yīng)用

2022-12-28 16:56 作者:限量版范兒  | 我要投稿

需求:打開(kāi)彈窗后,給醫(yī)生提供多選框用來(lái)選擇人群屬性,如果是選中的則狀態(tài)為已勾選,否則是未勾選。確認(rèn)后向后臺(tái)提交,在其他界面顯示該用戶(hù)的屬性;下次再打開(kāi)時(shí),則選中狀態(tài)為已選的內(nèi)容,醫(yī)生可根據(jù)實(shí)際情況進(jìn)行再次操作。

打開(kāi)效果:

代碼實(shí)現(xiàn):

彈窗樣式如下:

<div> ? ?<!--打開(kāi)彈窗操作在表格中設(shè)置為按鈕,可以讀取到表格行的id,handleAddPeople(row)--> <el-dialog title="人群屬性" ? ? ? ? ? ? ? :visible.sync="dialogAddPeople" ? ? ? ? ? ? ? width="40%"> ? ? ?<el-form ref="addPeopleForm" ? ? ? ? ? ? ? :model="addPeopleForm" ? ? ? ? ? ? ? label-position="top"> ? ? ? ?<el-form-item label="請(qǐng)選擇當(dāng)前用戶(hù)的人群屬性:"> ? ? ? ? ?<el-checkbox-group v-model="check" @change="handleCheckChange"> ? ? ? ? ? ?<el-checkbox class="el-checkbox-width" v-for="(people, index) in peoples" :value="people.dictValue" :label="people.dictLabel" :key="index" @change="handleValuesChange(people)">{{ people.dictLabel }}</el-checkbox> ? ? ? ? ?</el-checkbox-group> ? ? ? ? ?</el-form-item> ? ? ?</el-form> ? ? ?<div slot="footer" ? ? ? ? ? class="dialog-footer"> ? ? ? ?<el-button type="cancel" ? ? ? ? ? ? ? ? ? @click="dialogAddPeople = false"> ? ? ? ? ?取消 ? ? ? ?</el-button> ? ? ? ?<el-button type="primary" ? ? ? ? ? ? ? ? ? @click="handleSuretoAddPeople"> ? ? ? ? ?確認(rèn) ? ? ? ?</el-button> ? ? ?</div> ? ?</el-dialog> </div>

數(shù)據(jù)如下:

data() { return { ?// 添加人群屬性 ? ? ?dialogAddPeople: false, ? ? ?peoples: [], // 存儲(chǔ)人群屬性 ? ? ?check: [], // 存儲(chǔ)label ? ? ?values: [], // 存儲(chǔ)value ?// 需提交的列表 ? ? ?addPeopleForm:{ ? ? ? ?crowdList:[ ? ? ? ? ?{ ? ? ? ? ? ?dictValue: null, ? ? ? ? ? ?dictLabel: null, ? ? ? ? ? ?patientId: null, ? ? ? ? ?} ? ? ? ?], ? ? ? ?patientId: null, ? ? ?}, ? ? ?patientId: null, //患者id } }

方法如下:

methods: { ? ?// 查看人群屬性操作 ? ?handleAddPeople(row) { ? ? ?// 打開(kāi)前置空 ? ? ?this.peoples = [] // 存放人群屬性數(shù)據(jù) ? ? ?this.check = [] // 存放label數(shù)據(jù) ? ? ?this.values = [] // 存放value數(shù)據(jù) ? ? ?this.dialogAddPeople = true; ? ? ?this.patientId = row.id // 根據(jù)當(dāng)前行獲取id ? ? ?searchPeopleAttribute({patientId: this.patientId}).then(response => { ? ? ? ?this.peoples = response.data; ? ? ? ?// console.log(this.peoples) ? ? ? ?// 把remark為selected的項(xiàng)存入,即存入當(dāng)前已被選中的屬性,下次打開(kāi)后自動(dòng)勾選 ? ? ? ?// 判斷存入這一步需寫(xiě)在內(nèi)部,否則執(zhí)行順序出問(wèn)題 ? ? ? ?for (var i = 0; i < this.peoples.length; i++) { ? ? ? ? ?// console.log(this.peoples[i].remark) ? ? ? ? ?if (this.peoples[i].remark == 'selected') { ? ? ? ? ? ?this.check.push(this.peoples[i].dictLabel) ? ? ? ? ? ?this.values.push(this.peoples[i].dictValue) ? ? ? ? ?} ? ? ? ?} ? ? ? ?// console.log("initial_label",JSON.parse(JSON.stringify(this.check))) ? ? ? ?// console.log("initial_value",JSON.parse(JSON.stringify(this.values))) ? ? ?}) ? ?}, ? ?// 打印動(dòng)態(tài)label數(shù)據(jù) ? ?handleCheckChange() { ? ? ?// console.log("dynamic_label",JSON.parse(JSON.stringify(this.check))) ? ?}, ? ?// 打印動(dòng)態(tài)value數(shù)據(jù) ? ?handleValuesChange(people) { ? ? ?if(this.values.indexOf(people.dictValue) == -1) { ? ? ? ?this.values.push(people.dictValue); ? ? ?} ? ? ?else { ? ? ? ?this.values.splice(this.values.indexOf(people.dictValue),1) ? ? ?} ? ? ?// console.log("dynamic_value",JSON.parse(JSON.stringify(this.values))) ? ?}, ? ?// 提交設(shè)置人群 ? ?handleSuretoAddPeople() { ? ? ?// 獲取查看患者的id ? ? ?this.addPeopleForm.patientId = this.patientId ? ? ?// 獲取dictValue和dictLabel值 ? ? ?// 根據(jù)后端的形式進(jìn)行提交 ? ? ?for(var i = 0; i < this.check.length; i++) { ? ? ? ?const p = {} ? ? ? ?p.dictLabel = this.check[i].toString() ? ? ? ?p.dictValue = this.values[i].toString() ? ? ? ?p.patientId = this.patientId ? ? ? ?this.addPeopleForm.crowdList[i] = p ? ? ?} ? ? ?// alert(JSON.stringify(this.addPeopleForm)) ? ? ?modifyPeopleAttribute(this.addPeopleForm).then(() => { ? ? ? ?this.dialogAddPeople = false; ? ? ? ?this.$notify({ ? ? ? ? ?title: "成功", ? ? ? ? ?message: "添加人群屬性成功", ? ? ? ? ?type: "success", ? ? ? ? ?duration: 2000, ? ? ? ?}); ? ? ?}) ? ? ?this.dialogAddPeople = false; ? ?}, }

axios接口如下:

import request from '@/utils/request' // 查詢(xún)?nèi)巳簩傩?export function searchPeopleAttribute(query) { ?return request({ ? ?url: '/patients/crowd/crowList', ? ?method: 'get', ? ?params: query ?}) } // 修改人群屬性 export function modifyPeopleAttribute(data) { ?return request({ ? ?url: '/patients/crowd', ? ?method: 'post', ? ?data ?}) }

提交模擬數(shù)據(jù)如下:

{ "patientId":1, "crowdList":[ ? {"dictLable":"高血壓","patientId":1,"dictValue":"2"}, ? {"dictLable":"老年人","patientId":1,"dictValue":"1"}, ? {"dictLable":"糖尿病","patientId":1,"dictValue":"3"} ] }

鏈接:https://www.dianjilingqu.com/647448.html

Vue之checkbox多選框的實(shí)際應(yīng)用的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
闽侯县| 胶南市| 沁阳市| 金沙县| 淮滨县| 宁国市| 邓州市| 英吉沙县| 乐陵市| 甘孜| 永兴县| 河北区| 内江市| 静乐县| 滨州市| 南部县| 石景山区| 诏安县| 平远县| 容城县| 吉水县| 泗阳县| 左权县| 句容市| 正定县| 阜城县| 黎城县| 鄂托克旗| 德安县| 辽宁省| 肥东县| 时尚| 彰武县| 黄山市| 于田县| 张北县| 宽城| 同德县| 越西县| 宁明县| 绿春县|