Commit d0b5a4b2 authored by “yiyousong”'s avatar “yiyousong”

feat: 添加站点投诉电话

parent 7446a4a6
...@@ -88,7 +88,16 @@ ...@@ -88,7 +88,16 @@
<a-input <a-input
v-model="formInfo.leadingOfficialTelephone" v-model="formInfo.leadingOfficialTelephone"
type="text" type="text"
placeholder="请输入负责人电话电话" placeholder="请输入负责人电话"
/>
</a-form-model-item>
</a-col>
<a-col :span="8">
<a-form-model-item label="投诉电话" prop="complaintHotline">
<a-input
v-model="formInfo.complaintHotline"
type="text"
placeholder="请输入投诉电话"
/> />
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
...@@ -190,7 +199,11 @@ ...@@ -190,7 +199,11 @@
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
<a-col :span="24"> <a-col :span="24">
<a-form-model-item class="site-style" label="站点风貌" prop="govAffairStyle"> <a-form-model-item
class="site-style"
label="站点风貌"
prop="govAffairStyle"
>
<YUpload <YUpload
accept=".png,.jpg,.jpeg,.svg" accept=".png,.jpg,.jpeg,.svg"
:limit="0" :limit="0"
...@@ -318,8 +331,8 @@ export default { ...@@ -318,8 +331,8 @@ export default {
YUpload, YUpload,
}, },
data() { data() {
// 验证手机号码 // 验证手机号码
const changePhone = (rule, value, callback) => { const changePhone = (rule, value, callback) => {
if (!value) { if (!value) {
callback(new Error("请输入手机号")); callback(new Error("请输入手机号"));
callback(); callback();
...@@ -380,7 +393,8 @@ export default { ...@@ -380,7 +393,8 @@ export default {
onlineTake: 0, // 在线取号 onlineTake: 0, // 在线取号
appointment: 0, // 微预约 appointment: 0, // 微预约
gowMap: 0, // 政务地图 gowMap: 0, // 政务地图
govAffairStyle:'', // 站点风貌 govAffairStyle: "", // 站点风貌
complaintHotline: "", // 投诉电话
}, //表单提交数据 }, //表单提交数据
indeterminate: true, indeterminate: true,
checkAll: false, checkAll: false,
...@@ -781,5 +795,4 @@ export default { ...@@ -781,5 +795,4 @@ export default {
margin-bottom: 6px; margin-bottom: 6px;
} }
} }
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment