diff --git a/src/components/bidbond/index.vue b/src/components/bidbond/index.vue
index f4ea462..a19c6cd 100644
--- a/src/components/bidbond/index.vue
+++ b/src/components/bidbond/index.vue
@@ -26,7 +26,7 @@
-
+
@@ -37,11 +37,15 @@
import { usePaging } from "@/hooks/usePaging"
import { useDictData } from "@/hooks/useDictOptions"
import { bidapplyLists } from '@/api/bidbbond'
-import { defineEmits } from "vue"
+import { defineEmits, defineProps } from "vue"
+const props = defineProps({
+ project_id: Number
+})
// 查询条件
const queryParams = reactive({
- custom_name: ''
+ custom_name: '',
+ project_id: props.project_id
});
// 获取字典数据
diff --git a/src/views/InvoicingRequests/edit.vue b/src/views/InvoicingRequests/edit.vue
index 831ccc7..0b4e044 100644
--- a/src/views/InvoicingRequests/edit.vue
+++ b/src/views/InvoicingRequests/edit.vue
@@ -289,14 +289,7 @@ const checkPhone = (rule: any, value: any, callback: (arg0: Error) => any) => {
}
-const userEmail = (rule: any, value: string, callback: (arg0: Error | undefined) => void) => {
- if (value && !mailReg.test(value)) {
- callback(new Error('请输入正确的邮箱格式'))
- } else {
- callback()
- }
-};
let invoicing_amount_daxie = computed(() => {
@@ -313,7 +306,11 @@ const delFileFn = (index: number) => {
let props = defineProps({
project: Object
})
-
+if (props.project) {
+ project_name.value = props.project.name
+ project_code.value = props.project.project_code
+ custom_name.value = props.project.custom_name
+}
const emit = defineEmits(['success', 'close'])
const formRef = shallowRef
()
diff --git a/src/views/bid_document_examination/edit.vue b/src/views/bid_document_examination/edit.vue
index 3affb10..db2ef2e 100644
--- a/src/views/bid_document_examination/edit.vue
+++ b/src/views/bid_document_examination/edit.vue
@@ -235,7 +235,7 @@