|
@ -83,7 +83,11 @@ |
|
|
:dialogFormAllSchemasRules="MoldMilestoneRules" |
|
|
:dialogFormAllSchemasRules="MoldMilestoneRules" |
|
|
:dialogFormAllSchemas="MoldMilestone.allSchemas" |
|
|
:dialogFormAllSchemas="MoldMilestone.allSchemas" |
|
|
:milestoneFuncCode="milestone" |
|
|
:milestoneFuncCode="milestone" |
|
|
/> |
|
|
> |
|
|
|
|
|
<template #fileList="{row}"> |
|
|
|
|
|
<el-link type="primary" v-for="(item,index) in row.fileList" :key="index" @click="openDown(item)">{{ item.fileName }}</el-link> |
|
|
|
|
|
</template> |
|
|
|
|
|
</DetailDeviceLedger> |
|
|
|
|
|
|
|
|
<!-- 导入 --> |
|
|
<!-- 导入 --> |
|
|
<SYMonthImportForm ref="importFormRef" :url="importUrl" :importTemplateData="importTemplateData" @success="importSuccess" :key="key" /> |
|
|
<SYMonthImportForm ref="importFormRef" :url="importUrl" :importTemplateData="importTemplateData" @success="importSuccess" :key="key" /> |
|
@ -551,7 +555,9 @@ const qrCodeBatch = async (val,item) => { |
|
|
const qrCodeList = selections.map(item => `'${item?.number}'`).join(', ') |
|
|
const qrCodeList = selections.map(item => `'${item?.number}'`).join(', ') |
|
|
window.open(src.value + "&number=" + qrCodeList) |
|
|
window.open(src.value + "&number=" + qrCodeList) |
|
|
} |
|
|
} |
|
|
|
|
|
const openDown=(item) => { |
|
|
|
|
|
window.open(item.path) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script> |
|
|
</script> |
|
|