zhengyiming
3 天以前 04a86a4520e1f1f42e62383f4bebf7e384d9a4d2
fix: 灵工管理
5个文件已修改
30 ■■■■■ 已修改文件
apps/bMiniApp/src/subpackages/jobApplicationManage/components/SignList.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/bMiniApp/src/subpackages/mine/mineContactRecord/InnerPage.vue 13 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/bMiniApp/src/subpackages/mine/mineFavorites/InnerPage.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/bMiniApp/src/subpackages/task/batchTaskList/InnerPage.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
packages/components/src/Card/FlexJobCard.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/bMiniApp/src/subpackages/jobApplicationManage/components/SignList.vue
@@ -22,7 +22,7 @@
          </div>
        </template>
        <template #footerRight>
          <nut-button type="primary" @click="goToJobDetail(item)">查看详情</nut-button>
          <nut-button type="primary" @click.stop="goToJobDetail(item)">查看详情</nut-button>
        </template>
      </FlexJobCard>
    </template>
apps/bMiniApp/src/subpackages/mine/mineContactRecord/InnerPage.vue
@@ -13,7 +13,7 @@
        :isRealName="item.isRealName"
        :arrangeCount="item.arrangeCount"
        :educationalLevel="item.educationalLevel"
        @contact="handleContact"
        @click="goFlexJobDetail(item)"
      >
      </FlexJobCard>
    </template>
@@ -26,6 +26,7 @@
import { useInfiniteLoading } from '@12333/hooks';
import { OrderInputType } from '@12333/constants';
import * as flexWorkerServices from '@12333/services/api/FlexWorker';
import Taro from '@tarojs/taro';
defineOptions({
  name: 'InnerPage',
@@ -52,9 +53,9 @@
  }
);
function handleContact() {}
function goFlexJobDetail(item: API.GetUserResumesQueryResultItem) {
  Taro.navigateTo({
    url: `${RouterPath.flexJobDetail}?userId=${item.id}`,
  });
}
</script>
<style lang="scss">
@import '@/styles/common.scss';
</style>
apps/bMiniApp/src/subpackages/mine/mineFavorites/InnerPage.vue
@@ -12,7 +12,7 @@
        :isRealName="item.isRealName"
        :arrangeCount="item.arrangeCount"
        :educationalLevel="item.educationalLevel"
        @contact="handleContact"
        @click="goFlexJobDetail(item)"
        @cancel-collection="handleCancelCollection(item)"
      >
      </FlexJobCard>
@@ -27,6 +27,7 @@
import { OrderInputType } from '@12333/constants';
import * as flexWorkerServices from '@12333/services/api/FlexWorker';
import { Message } from '@12333/utils';
import Taro from '@tarojs/taro';
defineOptions({
  name: 'InnerPage',
@@ -53,7 +54,12 @@
  }
);
function handleContact() {}
function goFlexJobDetail(item: API.GetUserResumesQueryResultItem) {
  Taro.navigateTo({
    url: `${RouterPath.flexJobDetail}?userId=${item.id}`,
  });
}
async function handleCancelCollection(item: API.GetNewestWorkerListOutput) {
  try {
    let params: API.APIcancelUserResumeCollectParams = {
apps/bMiniApp/src/subpackages/task/batchTaskList/InnerPage.vue
@@ -19,7 +19,7 @@
        :showFooterLeft="false"
      >
        <template #footerRight>
          <nut-button v-if="showQueryState" type="primary" @click="handleArrange(item)"
          <nut-button v-if="showQueryState" type="primary" @click.stop="handleArrange(item)"
            >安排</nut-button
          >
          <div v-else class="batch-task-card-status">已安排</div>
packages/components/src/Card/FlexJobCard.vue
@@ -30,7 +30,7 @@
      <div class="flexJob-card-footer-right" v-if="showFooterRight">
        <slot name="footerRight">
          <nut-button type="primary" @click.stop="emit('contact')">立即联系</nut-button>
          <nut-button type="primary">立即联系</nut-button>
        </slot>
      </div>
    </div>
@@ -71,7 +71,6 @@
const emit = defineEmits<{
  (e: 'cancelCollection'): void;
  (e: 'contact'): void;
}>();
</script>