|
@@ -42,7 +42,7 @@
|
|
{{ $t(prefix + 'label_company_name') }}
|
|
{{ $t(prefix + 'label_company_name') }}
|
|
</div>
|
|
</div>
|
|
<el-form
|
|
<el-form
|
|
- v-for="(item, index) in forms as any[]"
|
|
|
|
|
|
+ v-for="(item, index) in forms"
|
|
:ref="($e) => getFormRef($e, `vendor_id_${index}`)"
|
|
:ref="($e) => getFormRef($e, `vendor_id_${index}`)"
|
|
:key="index"
|
|
:key="index"
|
|
:show-message="false"
|
|
:show-message="false"
|
|
@@ -1012,15 +1012,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
<script lang="ts" setup>
|
|
-import {
|
|
|
|
- defineComponent,
|
|
|
|
- ref,
|
|
|
|
- defineProps,
|
|
|
|
- defineEmits,
|
|
|
|
- watch,
|
|
|
|
- computed,
|
|
|
|
- nextTick,
|
|
|
|
-} from 'vue'
|
|
|
|
|
|
+import { defineComponent, ref, watch, computed, nextTick, inject } from 'vue'
|
|
import {
|
|
import {
|
|
ElButton,
|
|
ElButton,
|
|
ElForm,
|
|
ElForm,
|
|
@@ -1045,29 +1037,18 @@ defineComponent({
|
|
name: 'EditInfo',
|
|
name: 'EditInfo',
|
|
})
|
|
})
|
|
const $emit = defineEmits(['update:visible', 'create'])
|
|
const $emit = defineEmits(['update:visible', 'create'])
|
|
-const props = defineProps({
|
|
|
|
- visible: {
|
|
|
|
- type: Number,
|
|
|
|
- default: 0,
|
|
|
|
- },
|
|
|
|
- alreadyHasIndentCount: {
|
|
|
|
- type: Number,
|
|
|
|
- default: 0,
|
|
|
|
- },
|
|
|
|
- parentId: {
|
|
|
|
- type: [String, Number],
|
|
|
|
- default: () => {
|
|
|
|
- return 0
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
- dataForEdit: {
|
|
|
|
- type: Object,
|
|
|
|
- default: () => {
|
|
|
|
- return {}
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
-})
|
|
|
|
-const $mediaRegExp = /^(https?:)?\/\/.+(.com.au\/|.com\/)/
|
|
|
|
|
|
+const {
|
|
|
|
+ visible = 0,
|
|
|
|
+ alreadyHasIndentCount = 0,
|
|
|
|
+ parentId = 0,
|
|
|
|
+ dataForEdit = {} as any,
|
|
|
|
+} = defineProps<{
|
|
|
|
+ visible: number
|
|
|
|
+ alreadyHasIndentCount?: number
|
|
|
|
+ parentId: number | string
|
|
|
|
+ dataForEdit: object
|
|
|
|
+}>()
|
|
|
|
+const $mediaRegExp = inject('mediaRegExp') as RegExp
|
|
const prefix = 'order.indent_edit_info.'
|
|
const prefix = 'order.indent_edit_info.'
|
|
const show = ref(false)
|
|
const show = ref(false)
|
|
const costOptions = [
|
|
const costOptions = [
|
|
@@ -1148,7 +1129,7 @@ const formDemo = {
|
|
}
|
|
}
|
|
const forms = ref([] as any[])
|
|
const forms = ref([] as any[])
|
|
const canAddForm = computed(() => {
|
|
const canAddForm = computed(() => {
|
|
- return 100 - props.alreadyHasIndentCount - forms.value.length > 0
|
|
|
|
|
|
+ return 100 - alreadyHasIndentCount - forms.value.length > 0
|
|
})
|
|
})
|
|
const productImageList = ref([] as any[][])
|
|
const productImageList = ref([] as any[][])
|
|
const vendorList = ref([] as any[][])
|
|
const vendorList = ref([] as any[][])
|
|
@@ -1212,9 +1193,9 @@ const numberTableAddRow = function (index: number) {
|
|
// 仅编辑报价信息时需要初始化
|
|
// 仅编辑报价信息时需要初始化
|
|
const initData = function () {
|
|
const initData = function () {
|
|
// 查询供应商候选列表, 不然下拉框无数据匹配, 下拉框界面上会显示成供应商的id
|
|
// 查询供应商候选列表, 不然下拉框无数据匹配, 下拉框界面上会显示成供应商的id
|
|
- queryVenderList(props.dataForEdit.vendor_name, 0)
|
|
|
|
|
|
+ queryVenderList(dataForEdit.vendor_name, 0)
|
|
|
|
|
|
- const temp = cloneDeep(props.dataForEdit)
|
|
|
|
|
|
+ const temp = cloneDeep(dataForEdit)
|
|
|
|
|
|
productImageList.value.push([])
|
|
productImageList.value.push([])
|
|
if (Array.isArray(temp.product_image) && temp.product_image.length) {
|
|
if (Array.isArray(temp.product_image) && temp.product_image.length) {
|
|
@@ -1285,25 +1266,25 @@ const deleteForm = function (index: number) {
|
|
const addFormColumn = function () {
|
|
const addFormColumn = function () {
|
|
if (canAddForm.value) {
|
|
if (canAddForm.value) {
|
|
forms.value.push(
|
|
forms.value.push(
|
|
- Object.assign(cloneDeep(formDemo), { parent_id: props.parentId }),
|
|
|
|
|
|
+ Object.assign(cloneDeep(formDemo), { parent_id: parentId }),
|
|
)
|
|
)
|
|
productImageList.value.push([])
|
|
productImageList.value.push([])
|
|
vendorList.value.push([])
|
|
vendorList.value.push([])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
watch(
|
|
watch(
|
|
- () => props.visible,
|
|
|
|
|
|
+ () => visible,
|
|
() => {
|
|
() => {
|
|
forms.value = []
|
|
forms.value = []
|
|
productImageList.value = []
|
|
productImageList.value = []
|
|
vendorList.value = []
|
|
vendorList.value = []
|
|
|
|
|
|
- if (props.visible > 1) {
|
|
|
|
|
|
+ if (visible > 1) {
|
|
initData()
|
|
initData()
|
|
- } else if (props.visible > 0) {
|
|
|
|
|
|
+ } else if (visible > 0) {
|
|
addFormColumn()
|
|
addFormColumn()
|
|
}
|
|
}
|
|
- show.value = props.visible > 0
|
|
|
|
|
|
+ show.value = visible > 0
|
|
},
|
|
},
|
|
)
|
|
)
|
|
const queryVenderList = function (keywords: string, index: number) {
|
|
const queryVenderList = function (keywords: string, index: number) {
|
|
@@ -1346,8 +1327,8 @@ const createQuoteFunc = function () {
|
|
const params = {
|
|
const params = {
|
|
file: '', // 疑似永远为空
|
|
file: '', // 疑似永远为空
|
|
} as any
|
|
} as any
|
|
- if (props.parentId) {
|
|
|
|
- params.parent_id = props.parentId
|
|
|
|
|
|
+ if (parentId) {
|
|
|
|
+ params.parent_id = parentId
|
|
}
|
|
}
|
|
|
|
|
|
let temp = cloneDeep(forms.value)
|
|
let temp = cloneDeep(forms.value)
|