master
wangxia 2 months ago
parent fd12bd68e0
commit e8d2545dad

@ -43,7 +43,7 @@
<div class="g_text_c g_h_24 g_pt_6 g_pb_12">发送职位</div> <div class="g_text_c g_h_24 g_pt_6 g_pb_12">发送职位</div>
<u-search height="80" v-model="keyword" @input="checkLength" @clear="searchJob" @search="searchJob" class="" placeholder="搜索职位名称" bg-color="#fff" :show-action="false" placeholder-class="g_c_c" search-icon-color="#999999" :maxlength="20"></u-search> <u-search height="80" v-model="keyword" @input="checkLength" @clear="searchJob" @search="searchJob" class="" placeholder="搜索职位名称" bg-color="#fff" :show-action="false" placeholder-class="g_c_c" search-icon-color="#999999" :maxlength="20"></u-search>
<div class="g_pt_8"> <div class="g_pt_8">
<u-tabs bg-color="transparent" from="index" gutter="20" :showBar="false" :list="tabInfo.list" :is-scroll="true" v-model="tabInfo.active" active-color="#00b666" @change="handleUpdateTab" font-size="34" duration="0.05" height="48"></u-tabs> <u-tabs bg-color="transparent" from="index" gutter="20" :showBar="false" :list="tabInfo.list" :is-scroll="true" v-model="tabInfo.active" :active-color="globalData.themeColor" @change="handleUpdateTab" font-size="34" duration="0.05" height="48"></u-tabs>
</div> </div>
</div> </div>
<g-list-job from="chat" @uploadList="getList" @sendJob="sendJob" bg="#ededed" class="" :query="query" :list="query.list" :loading="loading" :speed="speed" :isShowLoginBtn="false" emptyText="嘿,这里还没有数据呢" /> <g-list-job from="chat" @uploadList="getList" @sendJob="sendJob" bg="#ededed" class="" :query="query" :list="query.list" :loading="loading" :speed="speed" :isShowLoginBtn="false" emptyText="嘿,这里还没有数据呢" />
@ -71,7 +71,7 @@ import { autorun } from "mobx";
import { ref, onMounted, computed, onUnmounted, getCurrentInstance } from "vue"; import { ref, onMounted, computed, onUnmounted, getCurrentInstance } from "vue";
// import { ref, onMounted, onUnmounted, getCurrentInstance } from "../../utils/transformVue"; // import { ref, onMounted, onUnmounted, getCurrentInstance } from "../../utils/transformVue";
import { deepClone, getUniPlatform } from "../../utils"; import { deepClone, getUniPlatform } from "../../utils";
import { onLoad, onUnload } from "@dcloudio/uni-app"; import { onLoad, onUnload,getApp } from "@dcloudio/uni-app";
import { customSwitchTab, customNavigateTo } from "../../utils/customNavigate"; import { customSwitchTab, customNavigateTo } from "../../utils/customNavigate";
import NetworkAlert from "../../components/NetworkAlert.vue"; import NetworkAlert from "../../components/NetworkAlert.vue";
import NavBar from "./message/nav-bar.vue"; import NavBar from "./message/nav-bar.vue";
@ -88,6 +88,8 @@ import api from "../../utils/api.js";
console.log("apiapiapi", api); console.log("apiapiapi", api);
const appType = ref(uni.getStorageSync("requestComeFrom")); const appType = ref(uni.getStorageSync("requestComeFrom"));
const popType = ref(""); // const popType = ref(""); //
const globalData = ref(getCurrentInstance().appContext.app); //
console.log('globalData',globalData);
export interface YxReplyMsg { export interface YxReplyMsg {
messageClientId: string; messageClientId: string;
scene: V2NIMConst.V2NIMConversationType; scene: V2NIMConst.V2NIMConversationType;

@ -542,7 +542,7 @@ export default {
// that.$forceUpdate(); // that.$forceUpdate();
setTimeout(() => { setTimeout(() => {
uni.navigateTo({ uni.navigateTo({
url: "/root/home/applicationSuccess", url: "/root/home/applicationSuccess?jobId=" + that.updateInfo.jobId,
}); });
}, 1500); }, 1500);
}); });

Loading…
Cancel
Save