style: 岗位填入值顺序

This commit is contained in:
TsMask
2023-11-20 18:14:39 +08:00
parent 1e5874d7e7
commit 14eabfe1fe
2 changed files with 16 additions and 27 deletions

View File

@@ -684,14 +684,6 @@ onMounted(() => {
</a-col>
</a-row>
<a-row :gutter="16">
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
:label="t('views.system.post.positionCode')"
name="postCode"
>
{{ modalState.from.postCode }}
</a-form-item>
</a-col>
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
:label="t('views.system.post.positionName')"
@@ -700,6 +692,14 @@ onMounted(() => {
{{ modalState.from.postName }}
</a-form-item>
</a-col>
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
:label="t('views.system.post.positionCode')"
name="postCode"
>
{{ modalState.from.postCode }}
</a-form-item>
</a-col>
</a-row>
<a-form-item :label="t('views.system.post.positionMark')" name="remark">
{{ modalState.from.remark }}
@@ -727,12 +727,12 @@ onMounted(() => {
<a-row :gutter="16">
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
:label="t('views.system.post.positionCode')"
name="postCode"
v-bind="modalStateFrom.validateInfos.postCode"
:label="t('views.system.post.positionName')"
name="postName"
v-bind="modalStateFrom.validateInfos.postName"
>
<a-input
v-model:value="modalState.from.postCode"
v-model:value="modalState.from.postName"
allow-clear
></a-input>
</a-form-item>
@@ -755,12 +755,12 @@ onMounted(() => {
<a-row :gutter="16">
<a-col :lg="12" :md="12" :xs="24">
<a-form-item
:label="t('views.system.post.positionName')"
name="postName"
v-bind="modalStateFrom.validateInfos.postName"
:label="t('views.system.post.positionCode')"
name="postCode"
v-bind="modalStateFrom.validateInfos.postCode"
>
<a-input
v-model:value="modalState.from.postName"
v-model:value="modalState.from.postCode"
allow-clear
></a-input>
</a-form-item>

View File

@@ -1,11 +0,0 @@
<script lang="ts" setup>
import { ref } from 'vue';
const msg = ref<string>('愿这世间美好与你环环相扣');
</script>
<template>
<h1>{{ msg }}</h1>
</template>
<style lang="less" scoped></style>