新增失信人员

This commit is contained in:
shijingjing
2022-04-01 17:21:12 +08:00
parent 3dad000a72
commit 2d75d69b1e
9 changed files with 206 additions and 103 deletions

View File

@@ -2,7 +2,7 @@
<section class="Add">
<ai-detail class="add">
<template #title>
<ai-title :title="params.id ? '行政许可信息详情' : '新增行政许可信息'" :isShowBack="true" :isShowBottomBorder="true" @onBackClick="cancel(false)" />
<ai-title :title="params.id ? '编辑' : '新增行政许可信息'" :isShowBack="true" :isShowBottomBorder="true" @onBackClick="cancel(false)" />
</template>
<template #content>
<div class="add-form">
@@ -118,15 +118,6 @@ export default {
this.$refs.forms.validate((valid) => {
if (valid) {
this.instance.post(`/appcreditadminstrativelicense/addOrUpdate`, {
// licenseName: this.forms.licenseName,
// licenseCode: this.forms.licenseCode,
// decisionDate: this.forms.decisionDate,
// startDate: JSON.stringify(this.forms.startDate),
// endtDate: JSON.stringify(this.forms.endtDate),
// licenseOrganization: this.forms.licenseOrganization,
// enterpriseName: this.forms.enterpriseName,
// unifiedCode: this.forms.unifiedCode,
// licenseContent: this.forms.licenseContent,
...this.forms,
id: this.params.id || '',
// picture: this.form.picture.length ? this.form.picture[0].url : ''

View File

@@ -6,8 +6,9 @@
</template>
<template #content>
<div class="add-form">
<ai-bar title="基本信息"></ai-bar>
<el-form ref="forms" :model="forms" size="small" label-width="150px">
<div class="info">
<ai-bar title="基本信息"></ai-bar>
<el-form ref="forms" :model="forms" size="small" label-width="150px">
<el-form-item label="许可文书名称" prop="num">
{{ forms.licenseName }}
</el-form-item>
@@ -53,7 +54,8 @@
<el-form-item label="许可内容" prop="num">
{{ forms.licenseContent }}
</el-form-item>
</el-form>
</el-form>
</div>
</div>
</template>
</ai-detail>
@@ -106,7 +108,7 @@ export default {
.Detail {
height: 100%;
overflow: hidden;
background: #f2f4f6 !important;
background: #f2f4f6 ;
.add-form__item {
display: flex;
@@ -118,7 +120,7 @@ export default {
}
::v-deep .ai-detail__content--active {
padding: 20px;
padding: 0 400px;
background: #FFF;
.ai-detail__content--wrapper {
@@ -135,6 +137,11 @@ export default {
.add-form {
background: #fff;
.info {
box-sizing: border-box;
padding: 0 100px 0 0;
background: #FFF;
}
}
}