Compare commits
2 Commits
4bae210a56
...
2fa3154615
Author | SHA1 | Date |
---|---|---|
|
2fa3154615 | |
|
167dd37cd1 |
|
@ -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) => {
|
||||||
|
|
Loading…
Reference in New Issue