|
@@ -12,10 +12,14 @@
|
|
|
<div class="pt-2px pr-3px">
|
|
|
<BasicForm @register="registerForm" :model="model">
|
|
|
<template #text="{ model, field }">
|
|
|
- {{ model[field] }}
|
|
|
+ <div>
|
|
|
+ {{ model[field] }}
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<template #text1="{ model, field }">
|
|
|
- {{ model[field]?.nameCn }}
|
|
|
+ <div>
|
|
|
+ {{ model[field]?.nameCn }}
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<template #img="{ model, field }">
|
|
|
<div class="imgText">
|
|
@@ -106,60 +110,90 @@
|
|
|
slot: 'img',
|
|
|
label: '问题描述',
|
|
|
defaultValue: 'cn',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'hardwareOption',
|
|
|
component: 'Input',
|
|
|
slot: 'text1',
|
|
|
label: '硬件产品',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'softwareOption',
|
|
|
slot: 'text1',
|
|
|
component: 'Input',
|
|
|
label: '软件产品',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'industryOption',
|
|
|
slot: 'text1',
|
|
|
component: 'Input',
|
|
|
label: '所在行业',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'solution',
|
|
|
component: 'Input',
|
|
|
slot: 'img',
|
|
|
label: '期望解决方案',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'nickName',
|
|
|
slot: 'text',
|
|
|
component: 'Input',
|
|
|
label: '姓名',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'phone',
|
|
|
slot: 'text',
|
|
|
component: 'Input',
|
|
|
label: '联系方式',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'address',
|
|
|
slot: 'text',
|
|
|
component: 'Input',
|
|
|
label: '地址',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'score',
|
|
|
slot: 'text',
|
|
|
component: 'Input',
|
|
|
label: '评分',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'scoreReason',
|
|
|
slot: 'text',
|
|
|
component: 'Input',
|
|
|
label: '评分理由',
|
|
|
+ colProps: {
|
|
|
+ span: 21,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
field: 'result',
|
|
@@ -172,7 +206,7 @@
|
|
|
placeholder: '请输入处理结果',
|
|
|
},
|
|
|
colProps: {
|
|
|
- span: 22,
|
|
|
+ span: 21,
|
|
|
},
|
|
|
},
|
|
|
];
|