农经权档案查询项目-没档案的给予提示

main
滕嵩 3 months ago
parent 9f8837f0d1
commit 48cb24f019

@ -136,17 +136,21 @@
GetModel({
cbfbm: record.cbfbm,
}).then((res1) => {
GetFiles({
path: res1.path,
}).then((res2) => {
open.value = true;
fileList.value = [];
res2.forEach((item, index) => {
if (item.isDirectory) {
fileList.value.push(item);
}
if (res1.path) {
GetFiles({
path: res1.path,
}).then((res2) => {
open.value = true;
fileList.value = [];
res2.forEach((item, index) => {
if (item.isDirectory) {
fileList.value.push(item);
}
});
});
});
} else {
createMessage.warn('当前权利人无档案!');
}
});
}
//

Loading…
Cancel
Save