|
|
@@ -1,8 +1,9 @@
|
|
|
<template>
|
|
|
<!-- 审核计划-->
|
|
|
- <a-modal class="commonModal warehouse-disable"
|
|
|
+ <a-modal class="commonModal fieldsetDialog warehouse-disable"
|
|
|
title="审核计划"
|
|
|
v-model:visible="visible"
|
|
|
+ centered
|
|
|
@cancel="cancel"
|
|
|
width="890px">
|
|
|
<template #footer>
|
|
|
@@ -18,11 +19,11 @@
|
|
|
:loading="loading"
|
|
|
@click="refuse">审核拒绝</a-button>
|
|
|
</template>
|
|
|
+ <a-form class="inlineForm"
|
|
|
+ :form="form"
|
|
|
+ @submit="handleSearch">
|
|
|
<fieldset class="formFieldSet">
|
|
|
<legend>基本信息</legend>
|
|
|
- <a-form class="inlineForm"
|
|
|
- :form="form"
|
|
|
- @submit="handleSearch">
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :span="12">
|
|
|
<a-form-item label="计划类型">
|
|
|
@@ -59,7 +60,6 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
- </a-form>
|
|
|
</fieldset>
|
|
|
<fieldset class="formFieldSet">
|
|
|
<legend>其它信息</legend>
|
|
|
@@ -83,6 +83,7 @@
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</fieldset>
|
|
|
+ </a-form>
|
|
|
</a-modal>
|
|
|
</template>
|
|
|
|
|
|
@@ -175,6 +176,6 @@ export default defineComponent({
|
|
|
</script>
|
|
|
|
|
|
<style lang="less">
|
|
|
-.arehouse-disable {
|
|
|
+.warehouse-disable {
|
|
|
}
|
|
|
</style>
|