|
|
- <!-- 加入样品 -->
- <template>
- <StepFormPackage ref="stepFormPackageRef" prefixKey="ry_jryp" @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",
- },
- sjrqcz: {
- fillType: "actFill",
- type: "yq",
- },
- text2: {
- label: "仪器,预计加入样品",
- type: "text",
- },
- ytsr1:{
- fillType: "preFill",
- type: "inputNumber",
- },
- tjxz:{
- fillType: "preFill",
- type: "select",
- selectTo: "sjsrdw2",
- options:this.getDictOptions('business_tjdw'),
- },
- text4:{
- label: ",实际加入样品",
- type: "text",
- },
- sjsr2:{
- fillType: "actFill",
- type: "inputNumber",
- compareTo:"ytsr1",
- copyFrom:"ytsr1"
- },
- sjsrdw2:{
- fillType: "preFill",
- type: "select",
- options: this.getDictOptions('business_tjdw'),
- },
- text5:{
- label: "。",
- type: "text",
- }
- }
- }]
- }
- },
- }
- </script>
-
- <style lang="scss" scoped></style>
|