Commit 692ce9b4 authored by 赵伟庚's avatar 赵伟庚

fix some bugs

parent 27a9ff96
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
</template> </template>
<script> <script>
import "https://lf1-cdn-tos.bytegoofy.com/obj/iconpark/svg_19654_208.0836ca76f9dc91830ca8aa43b6e894ac.js"; import "https://lf1-cdn-tos.bytegoofy.com/obj/iconpark/svg_19654_219.e913701ac6c36991a671b81b5a7654f2.js";
export default { export default {
props: { props: {
......
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
<template v-slot:footer> <template v-slot:footer>
<div class="apaas_button"> <div class="apaas_button">
<el-button type="default" @click="addDialog = false">取 消</el-button> <el-button type="default" @click="addDialog = false">取 消</el-button>
<el-button type="primary" @click="addConfirm">确 定</el-button> <el-button type="primary" @click="addConfirm">保 存</el-button>
</div> </div>
</template> </template>
</el-dialog> </el-dialog>
...@@ -276,8 +276,11 @@ const searchType = () => { ...@@ -276,8 +276,11 @@ const searchType = () => {
} // 字典分类筛选 } // 字典分类筛选
const getTypeList = () => { const getTypeList = () => {
let params = {
name:state.typeKeyword
}
axios axios
.get(`/apaas/system/v5/dictionary/classify/list?name=${state.typeKeyword}`) .get(`/apaas/system/v5/dictionary/classify/list`,{params})
.then( (res) => { .then( (res) => {
if (res.data.code == 200) { if (res.data.code == 200) {
state.typeList = res.data.data || [] state.typeList = res.data.data || []
......
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
<div v-show="step === 2"> <div v-show="step === 2">
<el-button @click="cancel">取消</el-button> <el-button @click="cancel">取消</el-button>
<el-button type="primary" @click="previousStep">上一步</el-button> <el-button type="primary" @click="previousStep">上一步</el-button>
<el-button type="primary" @click="submit">提交</el-button> <el-button type="primary" @click="submit">保存</el-button>
</div> </div>
</div> </div>
......
...@@ -158,7 +158,7 @@ const getDetail = () => { ...@@ -158,7 +158,7 @@ const getDetail = () => {
accountInfo[4].value = detail.created_by; accountInfo[4].value = detail.created_by;
accountInfo[5].value = detail.created_by_account; accountInfo[5].value = detail.created_by_account;
accountInfo[6].value = detail.updated_time; accountInfo[6].value = detail.updated_time;
accountInfo[7].value = detail.created_t accountInfo[7].value = detail.created_time
personInfo[0].value = detail.contact_name; personInfo[0].value = detail.contact_name;
personInfo[1].value = detail.contact_email; personInfo[1].value = detail.contact_email;
personInfo[2].value = detail.document_type === 1 ? '身份证' : ''; personInfo[2].value = detail.document_type === 1 ? '身份证' : '';
......
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