Commit 24c79b0b by 唐玉峰

.

parent ef41747f
......@@ -560,6 +560,25 @@
</el-form-item>
</template>
</el-table-column>
<el-table-column prop="inspectionPurpose" label="检查目的" width="150">
<template #default="scope">
<el-form-item
:prop="`tableList.${scope.row.customIndex}.inspectionPurpose`"
v-if="scope.row.ischeck == 1 && scope.row.type == 2 && scope.row.isedit && scope.row.orderType"
:rules="[{ required: scope.row.orderType == '检查' ? true : false, message: '请输入内容' }]"
>
<template #label> <span></span></template>
<el-input
size="mini"
v-model.trim="scope.row.inspectionPurpose"
autocomplete="off"
placeholder="请输入内容"
type="textarea"
:autosize="{ minRows: 2 }"
></el-input>
</el-form-item>
</template>
</el-table-column>
</template>
<el-table-column show-overflow-tooltip property="emergency" label="急诊" width="85">
<template #default="scope">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment