fix(接口测试): 场景自定义请求上传文件修复
This commit is contained in:
parent
4598028bb8
commit
0b9fc2ef3d
|
@ -7,7 +7,7 @@
|
||||||
no-content-padding
|
no-content-padding
|
||||||
:show-continue="true"
|
:show-continue="true"
|
||||||
:footer="requestVModel.isNew === true"
|
:footer="requestVModel.isNew === true"
|
||||||
:ok-disabled="requestVModel.executeLoading || (isHttpProtocol && !requestVModel.url)"
|
:ok-disabled="requestVModel.executeLoading || (isHttpProtocol && !requestVModel.url) || loading"
|
||||||
:handle-before-cancel="handleBeforeCancel"
|
:handle-before-cancel="handleBeforeCancel"
|
||||||
show-full-screen
|
show-full-screen
|
||||||
unmount-on-close
|
unmount-on-close
|
||||||
|
@ -1350,6 +1350,13 @@
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => appStore.loading,
|
||||||
|
(val) => {
|
||||||
|
loading.value = val;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => visible.value,
|
() => visible.value,
|
||||||
async (val) => {
|
async (val) => {
|
||||||
|
|
|
@ -1084,6 +1084,13 @@
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => appStore.loading,
|
||||||
|
(val) => {
|
||||||
|
loading.value = val;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => visible.value,
|
() => visible.value,
|
||||||
async (val) => {
|
async (val) => {
|
||||||
|
|
Loading…
Reference in New Issue