|
@@ -199,10 +199,8 @@
|
|
|
</ion-col>
|
|
|
<ion-col>
|
|
|
<ion-item style="float: right;padding:0px;margin: 0px;">
|
|
|
- <label-selection :key="'refLabelSelectionKey2'" :ref="refLabelSelection2" :big-type="3" :list-label="dataModel.listLabel" :title="'岗位标签'"
|
|
|
- v-bind="$attrs" @resultBack="onResultBackLabels"></label-selection>
|
|
|
-<!-- <component :is="refLabelSelection2" :big-type="3" :list-label="dataModel.listLabel" :title="'岗位标签'"-->
|
|
|
-<!-- @resultBack="onResultBackLabels"></component>-->
|
|
|
+ <label-selection :big-type="3" :list-label="dataModel.listLabel" :title="'岗位标签'"
|
|
|
+ @resultBack="onResultBackLabels"></label-selection>
|
|
|
</ion-item>
|
|
|
</ion-col>
|
|
|
</ion-row>
|
|
@@ -219,7 +217,7 @@
|
|
|
</ion-page>
|
|
|
</template>
|
|
|
<script lang="ts">
|
|
|
-import {computed, defineAsyncComponent, defineComponent, reactive, ref, toRefs, watch} from "vue";
|
|
|
+import {computed, defineComponent, reactive, ref, toRefs} from "vue";
|
|
|
import {arrowBackOutline} from 'ionicons/icons';
|
|
|
import {useRoute, useRouter} from "vue-router";
|
|
|
import {alertController, onIonViewDidEnter} from "@ionic/vue";
|
|
@@ -301,7 +299,6 @@ export default defineComponent({
|
|
|
const cultureRankList = ref([]);
|
|
|
const workNatureList = ref([]);
|
|
|
const refPostSelectionLike = ref();
|
|
|
- const refLabelSelection2 = ref();
|
|
|
|
|
|
const presentAlert = async (message: string) => {
|
|
|
const alert = await alertController.create({
|
|
@@ -340,7 +337,6 @@ export default defineComponent({
|
|
|
|
|
|
const onResultBackLabels = (data: any) => {
|
|
|
formState.dataModel.listLabel = data;
|
|
|
- refLabelSelection2.value = null;
|
|
|
}
|
|
|
|
|
|
const onResultInfo = (data: any) => {
|
|
@@ -528,7 +524,6 @@ export default defineComponent({
|
|
|
workNatureList,
|
|
|
cultureRankList,
|
|
|
v$,
|
|
|
- refLabelSelection2,
|
|
|
onResultBackLabels,
|
|
|
refPostSelectionLike,
|
|
|
onOpenPost,
|