|
|
|
@ -369,6 +369,7 @@ export default { |
|
|
|
}, |
|
|
|
getResource() { |
|
|
|
const content = this.getFilledFormData() |
|
|
|
let formData = this.formData; |
|
|
|
let tmpResource = [] |
|
|
|
let tmpYq = [] |
|
|
|
//生成细胞 |
|
|
|
@ -413,10 +414,10 @@ export default { |
|
|
|
}) |
|
|
|
//使用仪器 |
|
|
|
tmpYq.push({ |
|
|
|
mc: content.pyxbh_mc, |
|
|
|
xh: content.pyxbh_xh, |
|
|
|
mc: content.pyxbh_mc || formData.pyxbh_mc, |
|
|
|
xh: content.pyxbh_xh || formData.pyxbh_xh, |
|
|
|
bh: content.pyxbh, |
|
|
|
jzrq: content.pyxbh_jzrq, |
|
|
|
jzrq: content.pyxbh_jzrq || formData.pyxbh_jzrq, |
|
|
|
}) |
|
|
|
//使用的试剂、仪器 |
|
|
|
const stepResource = this.$refs.stepRef.getStepResource() |
|
|
|
|