feat: 更改任务状态字段

pull/237/head
zhouxiaoan 1 year ago
parent 682063c263
commit 40957ee00d

@ -107,7 +107,7 @@ export const asideMap: Recordable<AsideEntity> = {
component: IztaskrromVue,
},
iztaskstatus: {
label: '任务状态',
label: '任务审批状态',
defaultValue: null,
isDefaultFilter: false,
key: 'iztaskstatus',

@ -37,7 +37,7 @@ export const workPackageMap: Recordable<PackageEntity> = {
key: 'upuser',
},
status: {
label: '任务状态',
label: '任务审批状态',
isDefault: false,
key: 'upuser',
},
@ -168,6 +168,6 @@ export const fieldMap = {
field13: '病历号',
field14: '是否重复',
field15: '任务类型',
field16: '任务状态',
field16: '任务审批状态',
field17: '项目类别',
}

@ -57,7 +57,7 @@ const labStyle = {
}
onBeforeMount(async () => {
const list = await configStore.fetchIztaskstatusList()
const list = await configStore.fetchizstatusListt()
options.value = list
})
const isLoadValue = ref(false)
@ -71,7 +71,7 @@ function onChange(value: Array<string>) {
<n-form :model="formValue" style="padding: 0px 10px;" :rules="rules">
<n-form-item :label="label" path="plans" :label-style="labStyle">
<n-select filterable
v-model:value="formValue.plans" :max-tag-count="2" placeholder="请选择任务状态" multiple :options="options"
v-model:value="formValue.plans" :max-tag-count="2" placeholder="请选择任务审批状态" multiple :options="options"
@update:value="onChange"
/>
</n-form-item>

Loading…
Cancel
Save