wupengfei
7 天以前 21f0c67e85bfd0e24a944fa52c65331c9599e1ad
feat: 接口对接
3个文件已修改
16 ■■■■ 已修改文件
apps/bMiniApp/src/subpackages/jobApplicationManage/jobApplicationManage/InnerPage.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/bMiniApp/src/subpackages/task/taskManage/InnerPage.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
packages/components/src/Card/JobApplicationCard.vue 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/bMiniApp/src/subpackages/jobApplicationManage/jobApplicationManage/InnerPage.vue
@@ -31,6 +31,7 @@
        :addressName="item.addressName"
        :serviceFee="item.serviceFee"
        :userCount="item.userCount"
        :status="item.status"
        :unit="BillingMethodEnumUnit[item.billingMethod]"
        :releaseStatus="item.releaseStatus"
        @edit="goEdit(item)"
apps/bMiniApp/src/subpackages/task/taskManage/InnerPage.vue
@@ -27,6 +27,7 @@
        :addressName="item.addressName"
        :createdTime="item.createdTime"
        :serviceFee="item.serviceFee"
        :status="item.status"
        :unit="BillingMethodEnumUnit[item.billingMethod]"
        mode="taskManage"
      >
packages/components/src/Card/JobApplicationCard.vue
@@ -96,15 +96,21 @@
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: '发布',