|
|
- <!-- 选择容器 -->
- <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",
- },
- ytrqcz: {
- fillType: "preFill",
- type: "select",
- options: this.getDictOptions('business_rqcz'),
- },
- sjrqcz: {
- fillType: "actFill",
- type: "select",
- options: this.getDictOptions('business_rqcz'),
- },
- text2: {
- label: "作为容器",
- type: "text",
- },
- }
- }]
- }
- },
- }
- </script>
-
- <style lang="scss" scoped></style>
|