华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

64 lines
2.0 KiB

<!-- 操作环境 -->
<template>
<StepFormPackage ref="stepFormPackageRef" @resetRecord = "resetRecord" :form-config="formConfig" :formData="formData" />
</template>
<script>
import StepFormPackage from '@/components/Template/StepFormPackage.vue';
import stepMixins from '@/components/Template/mixins/stepMixins.js';
export default {
mixins: [stepMixins],
components: {
StepFormPackage
},
computed: {
formConfig() {
return [{
config: {
text1: {
label: "选择在",
type: "text",
},
ddsys: {
type: "input",
fillType: "preFill",
},
yq: {
type: "instrument",
fillType: "actFill",
},
text2: {
label: "环境下,操作下预计在",
type: "text",
},
ytczhj: {
fillType: "preFill",
type: "select",
options: this.getDictOptions('business_czhj'),
otherCode: "ytczhjOther"
},
text3: {
label: "实际在",
type: "text",
},
sjczhj: {
fillType: "actFill",
type: "select",
options: this.getDictOptions('business_czhj'),
otherCode: "sjczhjOther",
compareTo:"ytczhj",
copyFrom:"ytczhj"
},
text4: {
label: "条件下操作下述步骤。",
type: "text",
},
}
}]
}
},
}
</script>
<style lang="scss" scoped></style>