|
@@ -41,35 +41,35 @@
|
|
|
{{ row?.code }}
|
|
{{ row?.code }}
|
|
|
</template>
|
|
</template>
|
|
|
</vxe-column>
|
|
</vxe-column>
|
|
|
- <vxe-column title="标准名称" field="chTitle"></vxe-column>
|
|
|
|
|
|
|
+ <vxe-column title="标准名称" field="chTitle" :formatter="colNoData"></vxe-column>
|
|
|
<vxe-column title="立项日期" align="center" width="110">
|
|
<vxe-column title="立项日期" align="center" width="110">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
- {{ parseTime(row?.projectDate, '{y}-{m}-{d}') }}
|
|
|
|
|
|
|
+ {{ parseTime(row?.projectDate, '{y}-{m}-{d}') || '-' }}
|
|
|
</template>
|
|
</template>
|
|
|
</vxe-column>
|
|
</vxe-column>
|
|
|
<vxe-column title="发布日期" align="center" width="110">
|
|
<vxe-column title="发布日期" align="center" width="110">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
- {{ parseTime(row?.issueDate, '{y}-{m}-{d}') }}
|
|
|
|
|
|
|
+ {{ parseTime(row?.issueDate, '{y}-{m}-{d}') || '-' }}
|
|
|
</template>
|
|
</template>
|
|
|
</vxe-column>
|
|
</vxe-column>
|
|
|
<vxe-column title="实施日期" align="center" width="110">
|
|
<vxe-column title="实施日期" align="center" width="110">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
- {{ parseTime(row?.putDate, '{y}-{m}-{d}') }}
|
|
|
|
|
|
|
+ {{ parseTime(row?.putDate, '{y}-{m}-{d}') || '-' }}
|
|
|
</template>
|
|
</template>
|
|
|
</vxe-column>
|
|
</vxe-column>
|
|
|
- <vxe-column title="标准名称" field="chTitle"></vxe-column>
|
|
|
|
|
|
|
+ <vxe-column title="标准名称" field="chTitle" :formatter="colNoData"></vxe-column>
|
|
|
<vxe-column title="标准类型">
|
|
<vxe-column title="标准类型">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
- {{ selectDictLabel(standard_group_type, row?.type) }}
|
|
|
|
|
|
|
+ {{ selectDictLabel(standard_group_type, row?.type) || '-' }}
|
|
|
</template>
|
|
</template>
|
|
|
</vxe-column>
|
|
</vxe-column>
|
|
|
- <vxe-column title="起草单位" field="takeUnit"></vxe-column>
|
|
|
|
|
|
|
+ <vxe-column title="起草单位" field="takeUnit" :formatter="colNoData"></vxe-column>
|
|
|
<vxe-column title="标准文本">
|
|
<vxe-column title="标准文本">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
<div v-if="row?.standardText">
|
|
<div v-if="row?.standardText">
|
|
|
<el-link :href="row?.standardText" type="primary" target="_blank">{{ row?.standardText }}</el-link>
|
|
<el-link :href="row?.standardText" type="primary" target="_blank">{{ row?.standardText }}</el-link>
|
|
|
</div>
|
|
</div>
|
|
|
- <div v-else>--</div>
|
|
|
|
|
|
|
+ <div v-else>-</div>
|
|
|
</template>
|
|
</template>
|
|
|
</vxe-column>
|
|
</vxe-column>
|
|
|
<vxe-column title="上架状态" fixed="right" align="center" width="90" field="putawayFlag">
|
|
<vxe-column title="上架状态" fixed="right" align="center" width="90" field="putawayFlag">
|