|
@@ -8,7 +8,6 @@ import { addApi, editApi, getDetailApi, getRemitPageApi } from '@/api/business/p
|
|
|
import { getPageApi as getCorporationPageApi } from '@/api/business/corporation/corporation'
|
|
|
import DeptTreeSelect from '@/views/components/DeptTreeSelect/index.vue'
|
|
|
import { getPageApi as getCapitalAccountPageApi } from '@/api/business/capital/account'
|
|
|
-import FileUpload from '@/components/FlieUpload/index.vue'
|
|
|
|
|
|
const queryRef = ref<InstanceType<typeof AForm>>()
|
|
|
const formRef = ref<InstanceType<typeof AForm>>()
|
|
@@ -243,12 +242,6 @@ const formConfig: FormConfigType[] = [
|
|
|
span: 24,
|
|
|
placeholder: '',
|
|
|
disabled: true
|
|
|
- },
|
|
|
- {
|
|
|
- type: 'slot',
|
|
|
- prop: 'atts',
|
|
|
- label: '上传附件',
|
|
|
- span: 24
|
|
|
}
|
|
|
]
|
|
|
|
|
@@ -342,11 +335,15 @@ function formClosed() {
|
|
|
@closed="formClosed"
|
|
|
width="1400px"
|
|
|
>
|
|
|
- <a-form ref="formRef" v-model="formData" :config="formConfig" :span="12" :disabled="disabled">
|
|
|
- <template #atts>
|
|
|
- <file-upload v-model="formData.atts" :disabled="disabled" />
|
|
|
- </template>
|
|
|
- </a-form>
|
|
|
+ <div v-if="disabled">
|
|
|
+ <a-form ref="formRef" v-model="formData" :config="formConfig" :span="12" disabled></a-form>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <el-card v-if="!disabled" header="请款信息">
|
|
|
+ <a-form ref="formRef" v-model="formData" :config="formConfig" :span="12"></a-form>
|
|
|
+ </el-card>
|
|
|
+
|
|
|
+ <el-card v-if="!disabled" header="打款信息" style="margin-top: 10px"> </el-card>
|
|
|
</a-dialog>
|
|
|
</div>
|
|
|
</template>
|