|
|
- <!-- 结束 -->
- <template>
- <StepFormPackage :fieldItemLabel = "fieldItemLabel" ref="stepFormPackageRef" :prefixKey="stepIndex+'_'+'jcb_js_jcb'" @resetRecord = "resetRecord" :form-config="formConfig" :formData="localFormData" />
- </template>
-
- <script>
- import StepFormPackage from '@/components/Template/StepFormPackage.vue';
- import stepMixins from '@/components/Template/mixins/stepMixins.js';
-
- export default {
- mixins: [stepMixins],
- props: {
- sn: {
- type: String,
- default: 'js_jcb',
- },
- },
- components: {
- StepFormPackage
- },
- mounted() {
- this.commonHandleJcbUpdate();
- },
- computed: {
- formConfig() {
- let config = [{
- config: {
- jcb:{
- type:"dcjcb",
- buttonName:"结束"
- }
- }
- }]
- return config
- }
- },
- }
- </script>
-
- <style lang="scss" scoped></style>
|