|
@@ -21,7 +21,7 @@
|
|
|
<span>答卷企业</span>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="info">
|
|
|
- <one></one>
|
|
|
+ <one :form="form" :rules="rules"></one>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="common">
|
|
@@ -29,7 +29,7 @@
|
|
|
<span>企业基本信息</span>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="info">
|
|
|
- <two></two>
|
|
|
+ <two :form="form" :rules="rules"></two>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="common">
|
|
@@ -37,7 +37,7 @@
|
|
|
<span>企业创新能力</span>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="info">
|
|
|
- <thr></thr>
|
|
|
+ <thr :form="form" :rules="rules"></thr>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="common">
|
|
@@ -45,7 +45,7 @@
|
|
|
<span>企业新品开发</span>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="info">
|
|
|
- <four></four>
|
|
|
+ <four :form="form" :rules="rules"></four>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="common">
|
|
@@ -53,7 +53,7 @@
|
|
|
<span>企业研发投入</span>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="info">
|
|
|
- <five></five>
|
|
|
+ <five :form="form" :rules="rules"></five>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="common">
|
|
@@ -61,7 +61,7 @@
|
|
|
<span>企业研发成效</span>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="info">
|
|
|
- <six></six>
|
|
|
+ <six :form="form" :rules="rules"></six>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="common">
|
|
@@ -69,7 +69,7 @@
|
|
|
<span>对于技术合作</span>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="info">
|
|
|
- <seven></seven>
|
|
|
+ <seven :form="form" :rules="rules"></seven>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="btn">
|
|
@@ -85,6 +85,12 @@
|
|
|
|
|
|
<script>
|
|
|
import one from './parts-models/one.vue';
|
|
|
+import two from './parts-models/two.vue';
|
|
|
+import thr from './parts-models/thr.vue';
|
|
|
+import four from './parts-models/four.vue';
|
|
|
+import five from './parts-models/five.vue';
|
|
|
+import six from './parts-models/six.vue';
|
|
|
+import seven from './parts-models/seven.vue';
|
|
|
import { mapState, createNamespacedHelpers } from 'vuex';
|
|
|
export default {
|
|
|
name: 'questionnaire-models',
|
|
@@ -93,6 +99,12 @@ export default {
|
|
|
},
|
|
|
components: {
|
|
|
one,
|
|
|
+ two,
|
|
|
+ thr,
|
|
|
+ four,
|
|
|
+ five,
|
|
|
+ six,
|
|
|
+ seven,
|
|
|
},
|
|
|
data: function() {
|
|
|
return {
|