增加唯一标识符说明占位符
This commit is contained in:
parent
9e2166bf7e
commit
333a10d368
|
|
@ -2328,12 +2328,13 @@ const handleDel = (index: any) => {
|
||||||
<!-- </el-form> -->
|
<!-- </el-form> -->
|
||||||
<el-table :data="equipTableList" width="100%" height="450px" border>
|
<el-table :data="equipTableList" width="100%" height="450px" border>
|
||||||
<el-table-column label="序号" type="index" width="55" align="center" />
|
<el-table-column label="序号" type="index" width="55" align="center" />
|
||||||
<el-table-column
|
<el-table-column prop="identifyCode" align="center" :show-overflow-tooltip="true">
|
||||||
label="唯一标识符"
|
<template #header>
|
||||||
prop="identifyCode"
|
<div style="display: flex; flex-direction: column; align-items: center">
|
||||||
align="center"
|
<span>唯一标识符</span>
|
||||||
:show-overflow-tooltip="true"
|
<span style="font-size: 12px; color: #999"> 说明... </span>
|
||||||
>
|
</div>
|
||||||
|
</template>
|
||||||
<template #default="{ row, $index }">
|
<template #default="{ row, $index }">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="row.identifyCode"
|
v-model="row.identifyCode"
|
||||||
|
|
@ -2491,9 +2492,9 @@ const handleDel = (index: any) => {
|
||||||
:disabled="settleinTitle == '装备详情'"
|
:disabled="settleinTitle == '装备详情'"
|
||||||
>
|
>
|
||||||
<el-button
|
<el-button
|
||||||
v-if="settleinTitle != '装备详情'"
|
|
||||||
type="primary"
|
|
||||||
size="small"
|
size="small"
|
||||||
|
type="primary"
|
||||||
|
v-if="settleinTitle != '装备详情'"
|
||||||
>
|
>
|
||||||
上传
|
上传
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue