Browse Source

盘点任务

hella_online_20241128
yufei_wang 4 days ago
parent
commit
c0a34721bc
  1. 13
      src/components/ImportForm/src/ImportDetailForm.vue
  2. 2
      src/views/wms/countManage/count/countJobMain/index.vue

13
src/components/ImportForm/src/ImportDetailForm.vue

@ -206,6 +206,17 @@ const props = defineProps({
}
}
})
watch(
() => props.url,
() => {
importUrl.value = getBaseUrl() + import.meta.env.VITE_API_URL + props.url
},
{
deep: true
}
)
const importTemplateData = ref(props.importTemplateData)
const accept = ref(props.accept)
const mode = ref(props.mode) //.1
@ -215,7 +226,7 @@ const coverIsDisable = ref(props.coverIsDisable) //覆盖是否禁用,默认值
const updatePart = ref(props.updatePart) //
const outFile = ref(props.outFile) //
const importUrl = getBaseUrl() + import.meta.env.VITE_API_URL + props.url
const importUrl = ref(getBaseUrl() + import.meta.env.VITE_API_URL + props.url)
/** 打开弹窗 */
const open = () => {

2
src/views/wms/countManage/count/countJobMain/index.vue

@ -241,7 +241,7 @@ const butttondata = (row, $index) => {
{
label: '线边盘点',
name: 'lineTypeImport',
hide: row.isLineType!=true,
hide: !(row.status==2&&row.lineType==true),
type: 'success',
color: '',
link: true, //

Loading…
Cancel
Save