You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
<template>
|
|
|
|
|
|
<view class="g-components-chat-gree g_fs_16">
|
|
|
|
|
|
<div class="conet" style="width: calc(100vw - 40px); margin: 0px auto 12px; background-color: #fff; border-radius: 12px; padding: 8px">
|
|
|
|
|
|
<div class="g_c_4 g_fs_16 g_c_0">
|
|
|
|
|
|
你好,我是智能匹配<text :class="ainame == '助手' ? 'g_fw_bold' : ''">AI</text><text class="g_fw_bold">{{ ainame }}</text
|
|
|
|
|
|
>,可以帮您快速匹配工作(支持语音输入)。为了匹配更准确,需您提供需求信息,例如:
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="g_pt_24 g_pb_24">
|
|
|
|
|
|
<div class="g_flex_row_start g_mb_4">
|
|
|
|
|
|
<div class="g_fs_16 g_fw_600 g_mr_4 g_flex_none g_c_0">1. 性别</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="g_flex_row_start g_mb_4">
|
|
|
|
|
|
<div class="g_fs_16 g_fw_600 g_mr_4 g_flex_none g_c_0">2. 年龄</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="g_flex_row_start g_mb_4">
|
|
|
|
|
|
<div class="g_fs_16 g_fw_600 g_mr_4 g_flex_none g_c_0">3. 意向城市</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="g_flex_row_start g_mb_0">
|
|
|
|
|
|
<div class="g_fs_16 g_fw_600 g_mr_4 g_flex_none g_c_0">4. 工作要求(如吃住、班次等)</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<view class="g_pb_24">
|
|
|
|
|
|
<div class="">
|
|
|
|
|
|
<text class="g_fs_16 g_flex_none g_c_0">示例:</text>
|
|
|
|
|
|
<text class="g_fs_16 g_fw_600 g_mr_4 g_flex_none g_c_0">我今年32岁,女性,想去常州找个长白班的工作。</text>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<div class="g_c_4 g_fs_16 g_c_0">快告诉我您的需求,开始匹配吧!</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
export default {
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
ainame: uni.getStorageSync("ai-name") ? uni.getStorageSync("ai-name") : "助手",
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {},
|
|
|
|
|
|
props: {},
|
|
|
|
|
|
};
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style></style>
|