当前位置:网站首页>Control the pop-up window and no pop-up window of the input box
Control the pop-up window and no pop-up window of the input box
2022-07-29 02:08:00 【Vegetable bird yard live】
Form set form
html The code is as follows
<el-form
ref="FormRef"
:model="xyjczlForm"
:rules="rules"
:disabled="Isdisabled"
>
<el-row>
<el-col>
<el-form-item prop="tjsj" label=" Diagnosis and treatment time ">
<el-date-picker
v-model="xyjczlForm.tjsj"
type="date"
placeholder=" Please select a date "
/></el-form-item>
</el-col>
</el-row>
<el-table
class="main_table"
:data="zbList"
border
:resizable="false"
style="width: 100%"
>
<el-table-column prop="yt" label=" purpose ">
<template #default="scope">
<el-form-item prop="yt">
<el-radio-group
v-model="scope.row.yt"
@change="changeYt(scope.row)"
>
<el-radio label=" Control blood pressure " />
<el-radio label=" Treat anemia " />
<el-radio label=" Correct calcium and phosphorus metabolism disorders " />
<el-radio label=" Regulating water 、 Electrolyte and acid-base metabolic balance " />
<el-radio label=" other " />
</el-radio-group>
</el-form-item>
</template>
</el-table-column>
<el-table-column prop="yymc" label=" Medication name " width="200">
<template #default="scope">
<el-form-item prop="yymc">
<el-input
@click="ypmcClick(scope.row, scope.$index)"
:readonly="scope.row.yt != ' other '"
v-model="scope.row.yymc"
placeholder=" Please enter the medication name "
></el-input>
</el-form-item>
</template>
</el-table-column>
<el-table-column prop="yf" label=" Dosage and usage " >
<template #default="scope">
<el-form-item prop="yf">
<el-input v-model="scope.row.yf" type="textarea"></el-input>
</el-form-item>
</template>
</el-table-column>
</el-table>
</el-form>
边栏推荐
- [the road of Exile - Chapter 6]
- [WesternCTF2018]shrine
- Web crawler API Quick Start Guide
- 数学建模——永冻土层上关于路基热传导问题
- Golang startup error [resolved]
- StoneDB 邀请您参与开源社区月会!
- 【流放之路-第二章】
- 九天后我们一起,聚焦音视频、探秘技术新发展
- [7.21-26] code source - [square count] [dictionary order minimum] [Z-type matrix]
- 解决使用ESlint时,和vetur冲突导致保存变双引号,结尾逗号等
猜你喜欢
随机推荐
Mathematical modeling -- the laying of water pipes
Js DOM2 和 DOM3
Mathematical modeling - location of police stations
Add graceful annotations to latex formula; "Data science" interview questions collection of RI Gai; College Students' computer self-study guide; Personal firewall; Cutting edge materials / papers | sh
[the road of Exile - Chapter III]
Regular filtering data learning notes (①)
Promise解决异步
Verilog procedure assignment statements: blocking & non blocking
[the road of Exile - Chapter 8]
Overview of Qualcomm 5g intelligent platform
Qt源码分析--QObject(4)
Mysql存储json格式数据
Blind separation of speech signals based on ICA and DL
Secret skill winter tide branding skill matching
iVX低代码平台系列详解 -- 概述篇(二)
控制输入框弹出弹窗 和不弹出窗口
How companies make business decisions -- with the help of data-driven marketing
【流放之路-第八章】
Thirty years of MPEG audio coding
leetcode/0和1个数相同的连续子数组