no message
This commit is contained in:
parent
a04cc7a2e8
commit
c1341b280b
3 changed files with 4 additions and 4 deletions
|
|
@ -154,7 +154,7 @@ async function getSearch() {
|
||||||
posNo: e.posNo ?? "-",
|
posNo: e.posNo ?? "-",
|
||||||
position: e.position ?? "-",
|
position: e.position ?? "-",
|
||||||
positionLevel: e.positionLevelName ?? "-",
|
positionLevel: e.positionLevelName ?? "-",
|
||||||
salary: e.salary ?? "-",
|
salary: e.salary ?? "",
|
||||||
organization: e.organization ?? "-",
|
organization: e.organization ?? "-",
|
||||||
phone: e.phone ?? "-",
|
phone: e.phone ?? "-",
|
||||||
email: e.email ?? "-",
|
email: e.email ?? "-",
|
||||||
|
|
@ -355,7 +355,7 @@ watch(
|
||||||
{{ props.prefix }}
|
{{ props.prefix }}
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="col.name === 'salary'">
|
<div v-else-if="col.name === 'salary'">
|
||||||
{{ props.row.salary.toLocaleString() }}
|
{{ props.row.salary ? props.row.salary.toLocaleString():'-' }}
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
{{ col.value }}
|
{{ col.value }}
|
||||||
|
|
|
||||||
|
|
@ -815,7 +815,7 @@ const getClass = (val: boolean) => {
|
||||||
<template>
|
<template>
|
||||||
<q-card>
|
<q-card>
|
||||||
<q-form greedy @submit.prevent @validation-success="onSubmit">
|
<q-form greedy @submit.prevent @validation-success="onSubmit">
|
||||||
<q-card-section style="max-height: 50vh">
|
<q-card-section>
|
||||||
<!-- Main -->
|
<!-- Main -->
|
||||||
<div class="row col-12 q-col-gutter-x-lg q-col-gutter-y-md">
|
<div class="row col-12 q-col-gutter-x-lg q-col-gutter-y-md">
|
||||||
<div class="col-xs-12 col-md-6">
|
<div class="col-xs-12 col-md-6">
|
||||||
|
|
|
||||||
|
|
@ -574,7 +574,7 @@ onMounted(() => {
|
||||||
{{ props.row.organization }}
|
{{ props.row.organization }}
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="col.name === 'salary'">
|
<div v-else-if="col.name === 'salary'">
|
||||||
{{ props.row.salary.toLocaleString() }}
|
{{ props.row.salary ? props.row.salary.toLocaleString():'-' }}
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
{{ col.value }}
|
{{ col.value }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue