面授案例讨论取消进行中状态

This commit is contained in:
zhangsir
2024-08-14 16:06:58 +08:00
parent c8db86a10d
commit e69f42a1ad
3 changed files with 31 additions and 7 deletions

View File

@@ -161,11 +161,11 @@ const finishOptions = ref([
value: 0,
label: "未完成",
},
{
id: 2,
value: 2,
label: "进行中",
},
// {
// id: 2,
// value: 2,
// label: "进行中",
// },
{
id: 3,
value: 1,

View File

@@ -62,7 +62,7 @@
v-model:value="projectName"
style="width: 200px"
placeholder="请选择"
:options="projectNameList"
:options="datasource.type==3||datasource.type==8?projectNameListNot:projectNameList"
@change="selectProjectName"
allowClear
></a-select>
@@ -190,6 +190,18 @@ export default {
currentPage: 1,
tableDataTotal: 0,
projectName: undefined,
projectNameListNot: [
{
id: 1,
value: "0",
label: "未开始",
},
{
id: 3,
value: "1",
label: "已完成",
},
],
projectNameList: [
{
id: 1,

View File

@@ -62,7 +62,7 @@
v-model:value="projectName"
style="width: 200px"
placeholder="请选择"
:options="projectNameList"
:options="datasource.type==3||datasource.type==8?projectNameListNot:projectNameList"
@change="selectProjectName"
></a-select>
@@ -193,6 +193,18 @@ export default {
currentPage: 1,
tableDataTotal: 0,
projectName: undefined,
projectNameListNot: [
{
id: 1,
value: "0",
label: "未开始",
},
{
id: 3,
value: "1",
label: "已完成",
},
],
projectNameList: [
{