fix: BUG修改
This commit is contained in:
parent
62d105281e
commit
2c08d6eca0
@ -3,7 +3,8 @@ NODE_ENV = 'development'
|
||||
|
||||
# 本地环境接口地址(/api/index.ts文件中使用)
|
||||
# 后端本地
|
||||
VITE_API_URL = 'http://192.168.34.221:9111'
|
||||
VITE_API_URL = 'http://192.168.34.221:19111'
|
||||
# VITE_API_URL = 'http://192.168.34.221:9111'
|
||||
# VITE_API_URL = 'http://192.168.34.221:28888'
|
||||
# VITE_API_URL = 'http://121.196.214.246/api'
|
||||
# VITE_API_URL = 'http://jxj.zhgdyun.com:100'
|
||||
|
||||
@ -75,11 +75,27 @@
|
||||
</el-image>
|
||||
<!-- <img :src="item.fieldAcquisitionUrl" alt="" srcset=""> -->
|
||||
</div>
|
||||
<div>{{ item.enterpriseName }}</div>
|
||||
<div>{{ item.personType == 1 ? item.teamName : item.departmentName }}</div>
|
||||
<div>{{ item.idCard }}</div>
|
||||
<div>
|
||||
<el-tooltip class="box-item" effect="dark" :content="item.enterpriseName" placement="top-start">
|
||||
<text>{{ item.enterpriseName }}</text>
|
||||
</el-tooltip>
|
||||
</div>
|
||||
<div>
|
||||
<el-tooltip class="box-item" effect="dark" :content="item.personType == 1 ? item.teamName : item.departmentName" placement="top-start">
|
||||
<text>{{ item.personType == 1 ? item.teamName : item.departmentName }}</text>
|
||||
</el-tooltip>
|
||||
</div>
|
||||
<div>
|
||||
<el-tooltip class="box-item" effect="dark" :content="item.idCard" placement="top-start">
|
||||
<text>{{ item.idCard }}</text>
|
||||
</el-tooltip>
|
||||
</div>
|
||||
<div>{{ item.phoneNumber }}</div>
|
||||
<div>{{ item.educationTime }}</div>
|
||||
<div>
|
||||
<el-tooltip class="box-item" effect="dark" :content="item.educationTime" placement="top-start">
|
||||
<text>{{ item.educationTime }}</text>
|
||||
</el-tooltip>
|
||||
</div>
|
||||
<div>{{ item.isExamPass == -1 ? "未培训" : item.isExamPass == 1 ? "合格" : "不合格" }}</div>
|
||||
</div>
|
||||
<div class="notoDta" v-if="partyMemberList.length == 0">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user