| | |
| | | :addressName="item.addressName" |
| | | :serviceFee="item.serviceFee" |
| | | :userCount="item.userCount" |
| | | :status="item.status" |
| | | :unit="BillingMethodEnumUnit[item.billingMethod]" |
| | | :releaseStatus="item.releaseStatus" |
| | | @edit="goEdit(item)" |
| | |
| | | :addressName="item.addressName" |
| | | :createdTime="item.createdTime" |
| | | :serviceFee="item.serviceFee" |
| | | :status="item.status" |
| | | :unit="BillingMethodEnumUnit[item.billingMethod]" |
| | | mode="taskManage" |
| | | > |
| | |
| | | const menuList = computed(() => { |
| | | let _menuList = []; |
| | | _menuList.push( |
| | | { |
| | | name: '编辑', |
| | | value: ManageActions.Edit, |
| | | }, |
| | | // { |
| | | // name: '编辑', |
| | | // value: ManageActions.Edit, |
| | | // }, |
| | | { |
| | | name: '查看详情', |
| | | value: ManageActions.Detail, |
| | | } |
| | | ); |
| | | if (props.status === EnumTaskStatus.Wait) { |
| | | _menuList.push({ |
| | | name: '编辑', |
| | | value: ManageActions.Edit, |
| | | }); |
| | | } |
| | | if (props.releaseStatus === EnumTaskReleaseStatus.Stopped) { |
| | | _menuList.push({ |
| | | name: '发布', |