|
@ -74,8 +74,8 @@ export default { |
|
|
location: "", |
|
|
location: "", |
|
|
constructionStatus: "", |
|
|
constructionStatus: "", |
|
|
pest: null, |
|
|
pest: null, |
|
|
image: "", |
|
|
images: [], |
|
|
notes: "", |
|
|
remark: "", |
|
|
drugs: [{ drugName: "", concentration: "", dose: "" }], // 用药 |
|
|
drugs: [{ drugName: "", concentration: "", dose: "" }], // 用药 |
|
|
}, |
|
|
}, |
|
|
planRules: { |
|
|
planRules: { |
|
@ -824,9 +824,9 @@ export default { |
|
|
label="序号" |
|
|
label="序号" |
|
|
width="50" |
|
|
width="50" |
|
|
/> |
|
|
/> |
|
|
<el-table-column prop="name" align="center" label="药物名称"> |
|
|
<el-table-column prop="drugName" align="center" label="药物名称"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<el-input v-model="scope.row.name" placeholder="请输入药物名称" /> |
|
|
<el-input v-model="scope.row.drugName" placeholder="请输入药物名称" /> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="concentration" align="center" label="浓度"> |
|
|
<el-table-column prop="concentration" align="center" label="浓度"> |
|
@ -871,7 +871,7 @@ export default { |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
</el-table> |
|
|
</el-table> |
|
|
<el-form-item label-width="120px" label="上传图片" prop="image"> |
|
|
<el-form-item label-width="120px" label="上传图片" prop="images"> |
|
|
<el-upload action="#" list-type="picture-card" :auto-upload="false"> |
|
|
<el-upload action="#" list-type="picture-card" :auto-upload="false"> |
|
|
<i slot="default" class="el-icon-plus"></i> |
|
|
<i slot="default" class="el-icon-plus"></i> |
|
|
<div slot="file" slot-scope="{ file }"> |
|
|
<div slot="file" slot-scope="{ file }"> |
|
@ -906,12 +906,12 @@ export default { |
|
|
<img width="100%" :src="dialogImageUrl" alt="" /> |
|
|
<img width="100%" :src="dialogImageUrl" alt="" /> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<el-form-item label-width="120px" label="备注" prop="notes"> |
|
|
<el-form-item label-width="120px" label="备注" prop="remark"> |
|
|
<el-input |
|
|
<el-input |
|
|
type="textarea" |
|
|
type="textarea" |
|
|
:rows="3" |
|
|
:rows="3" |
|
|
placeholder="请输入" |
|
|
placeholder="请输入" |
|
|
v-model="recordForm.notes" |
|
|
v-model="recordForm.remark" |
|
|
> |
|
|
> |
|
|
</el-input> |
|
|
</el-input> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|