feat(新增需求评审功能): 新增需求评审功能。

feat(动态切换对象域下的对象):对象域下的对象可以动态切换。
fix(产品需求、项目需求): 按照会议意见修改诸多细节。
fix(产品对象域的概览界面): 把假数据换成真实的需求统计数据。
This commit is contained in:
dk
2026-05-22 14:05:25 +08:00
parent ab882e085b
commit 13b74cfe97
36 changed files with 3764 additions and 771 deletions

View File

@@ -177,7 +177,6 @@ const {
{ prop: 'index', type: 'index', label: $t('common.index'), width: 64 },
{ prop: 'label', label: $t('page.system.dict.dictLabel'), minWidth: 160 },
{ prop: 'value', label: $t('page.system.dict.dictValue'), minWidth: 180 },
{ prop: 'sign', label: '标志', minWidth: 140, showOverflowTooltip: true },
{ prop: 'sort', label: $t('page.system.dict.sort'), width: 90, align: 'center' },
{
prop: 'status',

View File

@@ -51,7 +51,6 @@ const currentTypeCode = computed(() => props.currentType?.type ?? model.value.di
function createDefaultModel(): Model {
return {
label: '',
sign: '',
value: '',
dictType: '',
sort: 0,
@@ -80,7 +79,6 @@ function handleInitModel() {
// 编辑时直接使用表格行数据回填,保持弹框打开速度。
Object.assign(model.value, {
label: props.rowData.label,
sign: props.rowData.sign ?? '',
value: props.rowData.value,
dictType: props.rowData.dictType,
sort: props.rowData.sort,
@@ -170,11 +168,6 @@ watch(visible, value => {
<ElInput v-model="model.value" :placeholder="$t('page.system.dict.form.dictValue')" />
</ElFormItem>
</ElCol>
<ElCol :span="12">
<ElFormItem label="标志" prop="sign">
<ElInput v-model="model.sign" placeholder="请输入标志" />
</ElFormItem>
</ElCol>
<ElCol :span="12">
<ElFormItem :label="$t('page.system.dict.sort')" prop="sort">
<ElInputNumber