<!-- 暂存 -->
|
|
<template>
|
|
<StepFormPackage ref = "stepFormPackageRef" :prefixKey="stepIndex+'_'+'zzqx_zc'" @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],
|
|
props: {
|
|
sn: {
|
|
type: String,
|
|
default: 'zc',
|
|
},
|
|
},
|
|
components: {
|
|
StepFormPackage
|
|
},
|
|
computed: {
|
|
formConfig() {
|
|
let config = [{
|
|
config:{
|
|
text1:{
|
|
label:"预计在",
|
|
type:"text",
|
|
},
|
|
yjzc:{
|
|
type:"select",
|
|
options:this.getDictOptions("business_zzzc"),
|
|
fillType:"preFill",
|
|
otherCode: "yjzcOther",
|
|
},
|
|
text3:{
|
|
label:"条件下暂存,实际在",
|
|
type:"text",
|
|
},
|
|
sjzc:{
|
|
type:"select",
|
|
options:this.getDictOptions("business_zzzc"),
|
|
fillType:"actFill",
|
|
otherCode: "sjzcOther",
|
|
compareTo: "yjzc",
|
|
},
|
|
text3:{
|
|
label:"条件下暂存,暂存至放入",
|
|
type:"text",
|
|
},
|
|
yq:{
|
|
type:"input",
|
|
fillType:"preFill",
|
|
},
|
|
text4:{
|
|
label:"。",
|
|
type:"text",
|
|
},
|
|
}
|
|
}]
|
|
return config
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|