This commit is contained in:
shijingjing
2022-04-02 13:59:27 +08:00
parent a9aa0c32e8
commit b3ec72ac6c
4 changed files with 146 additions and 148 deletions

View File

@@ -4,13 +4,14 @@
<template #title>
<ai-title :title="params.id ? '编辑行政许可信息' : '新增行政许可信息'" :isShowBack="true" :isShowBottomBorder="true" @onBackClick="cancel(false)" />
</template>
<template #right>
<!-- <span style="color:#2266FF;cursor: pointer;font-size: 12px;" class="iconfont iconEdit" v-if="isEdit==false" @click="forms=data,isEdit=true">修改</span> -->
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="isEdit==false">取消</span>
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="confirm(id)">保存</span>
</template>
<template #content>
<div class="add-form">
<template slot="content">
<ai-card title="基本信息">
<template #right v-if="params.id">
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="isEdit=false">取消</span>
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="confirm()">保存</span>
</template>
<template #content>
<div class="add-form">
<ai-bar :title="params.id ? '编辑行政许可信息' : '新增行政许可信息'"></ai-bar>
<el-form ref="forms" :model="forms" :rules="formRules" size="small" label-width="150px">
<el-form-item label="许可文书名称" prop="licenseName">
@@ -62,12 +63,14 @@
<el-input v-model="forms.licenseContent" placeholder="请输入许可内容" type="textarea" show-word-limit maxlength="500" :rows="5"></el-input>
</el-form-item>
</el-form>
</div>
</div>
</template>
</ai-card>
</template>
<template slot="footer" class="footer">
<el-button class="delete-btn footer-btn" @click="cancel(false)">取消</el-button>
<el-button class="footer-btn" type="primary" @click="confirm()">保存</el-button>
</template>
<el-button class="footer-btn" type="primary" @click="confirm()">保存</el-button>
</template>
</ai-detail>
<ai-detail class="add" v-if="id && !isEdit">
<template slot="title">
@@ -77,12 +80,9 @@
<ai-card title="基本信息">
<template #right>
<span style="color:#2266FF;cursor: pointer;font-size: 12px;" class="iconfont iconEdit" v-if="isEdit==false" @click="forms=data,isEdit=true">修改</span>
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="isEdit==false">取消</span>
<span style="color:#2266FF;margin-left: 16px;cursor: pointer;font-size: 12px;" v-if="isEdit==true" @click="confirm(id)">保存</span>
</template>
<template #content v-if="isEdit == false">
<ai-wrapper>
<!-- dict.getLabel('fpRiskType', info.riskType) -->
<ai-info-item label="许可文书名称" :value="data.licenseName"></ai-info-item>
<ai-info-item label="许可文书号" :value="data.licenseName"></ai-info-item>
<ai-info-item label="许可决定日期" :value="data.decisionDate"></ai-info-item>
@@ -162,7 +162,7 @@ export default {
}
})
},
confirm (id) {
confirm() {
this.$refs.forms.validate((valid) => {
if (valid) {
this.instance.post(`/appcreditadminstrativelicense/addOrUpdate`, {
@@ -219,7 +219,7 @@ export default {
}
.add-form {
background: #fff;
background: #fff!important;
}
}