Compare commits

...

2 Commits

Author SHA1 Message Date
yangjun 2fa3154615 Merge branch 'master' of http://47.115.223.229:8888/yangjun/dbsd_kczx 2024-08-26 17:09:27 +08:00
yangjun 167dd37cd1 修改bug 2024-08-26 17:09:20 +08:00
1 changed files with 4 additions and 1 deletions

View File

@ -22,7 +22,7 @@
</a-button> </a-button>
<a-divider /> <a-divider />
</a-col> </a-col>
<a-col :span="24"> <a-col :span="24" v-if="addShow">
<a-row> <a-row>
<a-col :span="24"> <a-col :span="24">
<div style="width: 100%;padding:8px 0px 5px 18px;font-size:12px; color:#666; border-left:3px solid #18a689;" <div style="width: 100%;padding:8px 0px 5px 18px;font-size:12px; color:#666; border-left:3px solid #18a689;"
@ -516,6 +516,7 @@ const jxdgInfo = ref<any>({});
const kechengInfo = ref<any>({}); const kechengInfo = ref<any>({});
const jxdgbbDataSource = ref<any>([]); const jxdgbbDataSource = ref<any>([]);
const disabled = ref<boolean>(false); const disabled = ref<boolean>(false);
const addShow = ref<boolean>(false);
const { createMessage, createConfirm } = useMessage(); const { createMessage, createConfirm } = useMessage();
let kcmbDataSource = ref<{ title: any }[]>([]); let kcmbDataSource = ref<{ title: any }[]>([]);
@ -823,7 +824,9 @@ function handleShowType(type) {
defHttp.get({ url: '/zyJxdgBanben/zyJxdgBanben/list', params: { sfsy: '1', pageNo: -1 } }).then((res) => { defHttp.get({ url: '/zyJxdgBanben/zyJxdgBanben/list', params: { sfsy: '1', pageNo: -1 } }).then((res) => {
jxdgbbDataSource.value = res.records; jxdgbbDataSource.value = res.records;
}); });
addShow.value = true;
} else if (type == 2) { } else if (type == 2) {
addShow.value = false;
type = 1; type = 1;
defHttp.get({ url: '/zyJxdgBanben/zyJxdgBanben/list', params: { sfsy: '1', pageNo: -1 } }).then((res) => { defHttp.get({ url: '/zyJxdgBanben/zyJxdgBanben/list', params: { sfsy: '1', pageNo: -1 } }).then((res) => {