Compare commits

..

No commits in common. "432172d2a13a6c89a1d253367140f27e093a7cdc" and "f3a8d392d4a4fb1815d356fda4aba08dc1eb7b7c" have entirely different histories.

1 changed files with 5 additions and 25 deletions

View File

@ -29,11 +29,7 @@
:hideDelete="hideDelete"
placeholder="暂无数据"
>
<el-table-column prop="name" min-width="150">
<template #header>
<span style="color: red">*</span>
<span>姓名</span>
</template>
<el-table-column prop="name" label="姓名" min-width="150">
<template #default="scope">
<el-input
v-model="scope.row.name"
@ -41,11 +37,7 @@
></el-input>
</template>
</el-table-column>
<el-table-column prop="gender" min-width="150">
<template #header>
<span style="color: red">*</span>
<span>性别</span>
</template>
<el-table-column prop="gender" label="性别" min-width="150">
<template #default="scope">
<el-select v-model="scope.row.gender" placeholder="请选择">
<el-option label="男" :value="1"></el-option>
@ -53,11 +45,7 @@
</el-select>
</template>
</el-table-column>
<el-table-column prop="IDcard" min-width="150">
<template #header>
<span style="color: red">*</span>
<span>身份证号</span>
</template>
<el-table-column prop="IDcard" label="身份证号" min-width="150">
<template #default="scope">
<el-input
v-model="scope.row.IDcard"
@ -65,11 +53,7 @@
></el-input>
</template>
</el-table-column>
<el-table-column prop="phone" min-width="150">
<template #header>
<span style="color: red">*</span>
<span>手机号</span>
</template>
<el-table-column prop="phone" label="手机号" min-width="150">
<template #default="scope">
<el-input
v-model="scope.row.phone"
@ -85,11 +69,7 @@
></el-input>
</template>
</el-table-column>
<el-table-column prop="post" min-width="150" v-if="['交接部门负责人','结束'].includes(formData.ticket_?.state_?.name)">
<template #header>
<span style="color: red">*</span>
<span>岗位</span>
</template>
<el-table-column prop="post" label="岗位" min-width="150" v-if="['交接部门负责人','结束'].includes(formData.ticket_?.state_?.name)">
<template #default="scope">
<xtSelect
:apiObj="apiObjPost"