CSS关于AI智能页面布局排列

效果图如下:

在这里插入图片描述
具体代码如下:

<template>
  <div class="box">
    <div class="title">
      <img src="" alt class="logo" />
      <span class="title-hn">AI人工智能</span>
    </div>
    <div id="content" class="content">
      <div v-for="(item,index) in info" :key="index">
        <div class="info_r info_default" v-if="item.type == 'leftinfo'">
          <span class="circle circle_r"></span>
          <div class="con_r con_text">
            <div>{{item.content}}</div>
            <div v-for="(item2,index) in item.question" :key="index">
              <div class="con_que" @click="clickRobot(item2.content,item2.id)">
                <div class="czkj-question-msg">
                  {{item2.index}}
                  {{item2.content}}
                </div>
              </div>
            </div>
          </div>
          <div class="time_r">{{item.time}}</div>
        </div>
        <div class="info_l" v-if="item.type == 'rightinfo'">
           <span class="circle circle_l">
              <img src class="pic_l" />
            </span>
          <div class="con_r con_text rightconbox">
            {{item.content}}
           
          </div>
          <div class="time_l">{{item.time}}</div>
        </div>
      </div>
    </div>
    <div class="setproblem">
      <textarea
        placeholder="请输入您的问题..."
        style="height: 68px;width: 100%;resize:none;padding-right:80px;outline: none;border-color:#ccc;border-radius:5px;"
        id="text"
        v-model="customerText"
        @keyup.enter="sentMsg()"
      ></textarea>
      <el-button @click="sentMsg()" class="buttonsend">
        <span style="vertical-align: 4px;">发送</span>
      </el-button>
    </div>
  </div>
</template>
<script>
export default {
data() {
  return {
    customerText: "",
    info: [
      {
        type: 'leftinfo',
        time: this.getTodayTime(),
        name: "robot",
        content:"您好,欢迎使用!",
        question: [
      { id: 1, content: "客户资料完善后是由谁来审批", index: 1 },
      { id: 2, content: "客户资料审批一直不通过", index: 2 },
      { id: 3, content: "客户资料审批需要多长时间", index: 3 },
      {id: 4,content: "注册网站时需要一次填写完所有的客户资料吗",index: 4 },
      { id: 5, content: "注册时使用的手机号变更怎么办", index: 5 }
  ]
      }
    ],
    timer: null,
    robotQuestion: [
      { id: 1, content: "客户资料完善后是由谁来审批", index: 1 },
      { id: 2, content: "客户资料审批一直不通过", index: 2 },
      { id: 3, content: "客户资料审批需要多长时间", index: 3 },
      { d: 4, content: "注册网站时需要一次填写完所有的客户资料吗", index: 4 },
      { id: 5, content: "注册时使用的手机号变更怎么办", index: 5 },
    ],
    robotAnswer: [
      { id: 1,content:"答案客户资料完善后是由谁来审批,答案客户资料完善后是由谁来审批,答案客户资料完善后是由谁来审批",index: 1},
      { id: 2, content: "测试", index: 2 },
      { id: 3, content: "测试", index: 3 },
      { id: 4,content: "3333333",index: 4 },
      { id: 5, content: "44444444", index: 5 },
    ]
  }
},
created() {
  this.showTimer();
},
methods: {
  // 用户发送消息
  sentMsg() {
    clearTimeout(this.timer)
    this.showTimer()
    let text = this.customerText.trim()
    if (text != '') {
      var obj = {
        type: 'rightinfo',
        time: this.getTodayTime(),
        content: text,
      }
      this.info.push(obj)
      this.appendRobotMsg(this.customerText)
      this.customerText = ''
      this.$nextTick(() => {
        var contentHeight = document.getElementById('content')
        contentHeight.scrollTop = contentHeight.scrollHeight
      })
    }
  },
  // 机器人回答消息
  appendRobotMsg(text) {
    clearTimeout(this.timer)
    this.showTimer()
    text = text.trim()
    let answerText = ''
    let flag;
    for (let i = 0; i < this.robotAnswer.length; i++) {
      if (this.robotAnswer[i].content.indexOf(text) != -1) {
        flag = true
        answerText = this.robotAnswer[i].content
        break
      }
    }
    if (flag) {
      let obj = {
        type: "leftinfo",
        time: this.getTodayTime(),
        name: "robot",
        content: answerText,
        question: [],
      }
      this.info.push(obj)
    } else {
      answerText = "您可能想问:"
      let obj = {
        type: 'leftinfo',
        time: this.getTodayTime(),
        name: "robot",
        content: answerText,
        question: this.robotQuestion,
      }
      this.info.push(obj)
    }
    this.$nextTick(() => {
      var contentHeight = document.getElementById('content')
      contentHeight.scrollTop = contentHeight.scrollHeight
    })
  },
  sentMsgById(val, id) {
    clearTimeout(this.timer)
    this.showTimer()
    let robotById = this.robotAnswer.filter((item) => {
      return item.id == id;
    })
    let obj_l = {
      type: 'leftinfo',
      time: this.getTodayTime(),
      name: 'robot',
      content: robotById[0].content,
      question: [],
    };
    let obj_r = {
      type: 'rightinfo',
      time: this.getTodayTime(),
      name: 'robot',
      content: val,
      question: [],
    };
    this.info.push(obj_r)
    this.info.push(obj_l)
    this.$nextTick(() => {
      var contentHeight = document.getElementById('content')
      contentHeight.scrollTop = contentHeight.scrollHeight
    })
  },
  // 点击机器人的单个问题
  clickRobot(val, id) {
    this.sentMsgById(val, id)
  },
  // 结束语
  endMsg() {
    let happyEnding = {
      type: 'leftinfo',
      time: this.getTodayTime(),
      content: "退出",
      question: [],
    };
    this.info.push(happyEnding)
    this.$nextTick(() => {
      var contentHeight = document.getElementById('content')
      contentHeight.scrollTop = contentHeight.scrollHeight
    })
  },
  showTimer() {
    this.timer = setTimeout(this.endMsg, 1000*60)
  },
  getTodayTime() {
    // 获取当前时间
    var day = new Date()
    let seconds = day.getSeconds()
    if (seconds < 10) {
      seconds = "0" + seconds
    } else {
      seconds = seconds
    }
    let minutes = day.getMinutes()
    if (minutes < 10) {
      minutes = "0" + minutes
    } else {
      minutes = minutes
    }
    let time =
      day.getFullYear() +
      "-" +
      (day.getMonth() + 1) +
      "-" +
      day.getDate() +
      " " +
      day.getHours() +
      ":" +
      minutes +
      ":" +
      seconds
    return time
  }
}
}
</script>
<style scoped>
.box {
  width: 100%;
  height: 500px;
  background-color: #fafafa;
  position: relative;
  padding: 20px;
}
.title {
  margin-bottom: 20px;
}
.title-hn {
  background: rgba(22, 68, 124, 0.8);
  color: #ffffff;
  padding: 10px;
  border: 2px solid rgba(31, 159, 191, 0.9);
  border-radius: 10px;
}
  #content {
    height: 340px;
    overflow-y: scroll;
    font-size: 14px;
    width: 100%;
  }
  .circle {
    /* color: #ffffff;
    margin: 0 30px;
    padding: 16px 20px;
    border: 2px solid #2da8f0;
    border: 2px solid rgba(31, 159, 191, 0.9);
    border-radius: 10px;
    background: rgba(22, 68, 124, 0.8);
    background: linear-gradient(0deg, #125eab 0%, #3a94f4 100%);
    line-height: 30px;
    width: 34px;
    height: 34px; */
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ff9640;
  }
  .con_text {
    color: #333;
    margin-bottom: 5px;
  }
  .con_que {
    color: #1c88ff;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
  }
  .info_r {
    position: relative;
  }
  .circle_r {
    position: absolute;
    left: 0%;
  }
  .pic_r {
    width: 17px;
    height: 17px;
    margin: 8px;
  }
  .con_r {
    display: inline-block;
    min-height: 55px;
    margin: 0 30px;
    padding: 16px 20px;
    border: 2px solid #2da8f0;
    border: 2px solid rgba(31, 159, 191, 0.9);
    border-radius: 10px;
    background: rgba(22, 68, 124, 0.8);
    background: linear-gradient(0deg, #125eab 0%, #3a94f4 100%);
    line-height: 30px;
    margin-left: 40px;
    color: #fff;
  }
  .time_r {
    margin-left: 45px;
    color: #999999;
    font-size: 12px;
  }
  .info_l {
    position: relative;
    text-align: right;
    color: #ffffff;
    color: #3163C5;
    margin-top: 10px;
  }

  .circle_l {
      position: absolute;
      right: 0%;
  }
  .rightconbox {
    margin-right: 40px;
  }
  .pic_l {
    width: 13px;
    height: 17px;
    margin: 8px 10px;
  }
  .time_l {
    margin-right: 45px;
    color: #999999;
    font-size: 12px;
    margin-top: 5px;
  }
  #question {
    cursor: pointer;
  }
.setproblem {
  width: 90%;
  height: 68px;
  background-color: #ffffff;
  position: relative;
  margin-top: 20px;
  padding-bottom: 20px;
}
.setproblem textarea {
  margin-bottom: 10px;
  color: #999999;
  padding: 10px;
  box-sizing: border-box;
}
.buttonsend {
  background: #3163C5;
  opacity: 1;
  border-radius: 4px;
  font-size: 10px;
  color: #ffffff;
  position: absolute;
  right: -10%;
  top: 30%;
  cursor: pointer;
  border: none;
}

.czkj-item-title {
line-height: 25px;
border-bottom: 1px solid #ccc;
padding-bottom: 5px;
margin-bottom: 5px;
}

.czkj-item-question {
cursor: pointer;
display: block;
padding: 8px;
position: relative;
border-bottom: 1px dashed #ccc;
line-height: 20px;
min-height: 20px;
overflow: hidden;
}

.czkj-question-msg {
float: left;
font-size: 14px;
color: #31c589;
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/286001.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

『番外篇十』SwiftUI 实战:打造一款“五脏俱全”的网络图片显示 App(下)

概览 在上篇文章中,我们初步实现了一款小巧的网络图片显示器。 我们先是创建了 json 数据对应的图片模型,然后将 App 界面“分而治之”划分为独立的三个组件以便“逐个击破”,最后我们将所有这些融合在一起。 不过,目前的实现仍有一些问题。比如我们添加了一层不必要的 …

docker搭建Dinky —— 筑梦之路

简介 Dinky 是一个 开箱即用 、易扩展 &#xff0c;以 Apache Flink 为基础&#xff0c;连接 OLAP 和 数据湖 等众多框架的 一站式 实时计算平台&#xff0c;致力于 流批一体 和 湖仓一体 的探索与实践。 主要功能 其主要功能如下&#xff1a; 沉浸式 FlinkSQL 数据开发&#x…

浏览器常用基本操作之python3+selenium4自动化测试

1、打开指定的网页地址 我们使用selenium进行自动化测试时&#xff0c;打开浏览器之后&#xff0c;第一步就是让浏览器访问我们指定的地址&#xff0c;可使用get方法实现 1 2 3 from selenium import webdriver driver webdriver.Edge() driver.get(https://www.baidu.com/)…

学习笔记之——NeRF SLAM(基于神经辐射场的SLAM)

NeRF SLAM&#xff08;Neural Radiance Fields Simultaneous Localization and Mapping&#xff09;是一种结合神经辐射场&#xff08;NeRF&#xff09;和SLAM&#xff08;Simultaneous Localization and Mapping&#xff09;的先进技术&#xff0c;用于实时地构建三维环境地图…

leaflet学习笔记-leaflet-ajax获取数据(五)

前言 地图开发中都会用一些GeoJSON数据进行渲染&#xff0c;这是用就会需要加载GeoJSON数据&#xff0c;这时就可以使用leaflet-ajax进行数据的获取 数据准备 本文通过阿里云的地图选择器&#xff08;DataV.GeoAtlas官网&#xff09;可以找到云南省的GeoJSON数据&#xff0c…

TDD-LTE 附着流程和去附着流程

目录 1. 附着流程 1.1. 正常附着流程 2. 异常附着流程 2.1 RRC建立失败 2.2 核心网拒绝 2.3 eNodeB未收到初始化上下文建立请求 2.4 RRC重配置请求丢失 2. 去附着流程 2.1 非关机去附着流程 2.1.1 连接态非关机去附着 2.1.2 空闲态非关机去附着 2.2 关机去附着流程 …

线性代数-行列式-错题笔记-1

视频讲解链接&#xff1a;http://【线性代数行列式&#xff0c;每日一题&#xff0c;考研疯狂刷题必备&#xff0c;一分钟训练营】https://www.bilibili.com/video/BV1NG4y1H71S?vd_source18c50b47f8412cfd9655895729fcd4f2

.NET DevOps 接入指南 | 1. GitLab 安装

引言 容器、DevOps和微服务被称为驱动云原生快速发展的三架马车。而DevOps是其中非常重要的一环&#xff0c;DevOps 是由Developers&#xff08;Dev&#xff09;和Operations&#xff08;Ops&#xff09;两个单词简称组成&#xff0c;中文直译就是“开发运维一体化”。 DevOps…

2023年12月Scratch等级考试(四级)真题试卷

2023年12月Scratch等级考试&#xff08;四级&#xff09;真题试卷 题目总数&#xff1a;24 总分数&#xff1a;100 选择题 第 1 题 单选题 Scratch运行下列程序&#xff0c;输入“abcdef”&#xff0c;程序结束后&#xff0c;变量“字符串”是&#xff1f;&#xff0…

外贸人应该顺应趋势做外贸

2024年&#xff0c;有人疑惑外贸将如何发展&#xff1f;我想紧跟趋势是不会出错的&#xff0c;多年前网络没有如今那么发达&#xff0c;客户到中国参展或者来访就能确认订单。如今到处都是各种推广平台&#xff0c;客户足不出户就能在线上订购产品&#xff0c;如果你还是想靠之…

基于Java SSM框架实现智能仓储管理系统项目【项目源码+论文说明】

基于java的SSM框架实现仓库管理系统演示 摘要 随着科学技术的飞速发展&#xff0c;社会的方方面面、各行各业都在努力与现代的先进技术接轨&#xff0c;通过科技手段来提高自身的优势&#xff0c;智能仓储系统当然也不能排除在外。智能仓储系统是以实际运用为开发背景&#xf…

易用、高效、可靠!高精度组合定位系统P-Box测试解决方案

简介 TCU&#xff08;Telematics Control Unit&#xff09;是车载网联通讯终端&#xff0c;用于实现车辆远程通讯和远程服务。随着自动驾驶技术的不断发展&#xff0c;准确获取车辆定位信息变得越来越重要。P-Box将GNSS定位与惯性导航定位相结合&#xff0c;能够为车辆提供精准…

C++上位软件通过Snap7开源库访问西门子S7-1200/S7-1500数据块的方法

前言 本人一直从事C上位软件开发工作较多&#xff0c;在之前的项目中通过C访问西门子PLC S7-200/S7-1200/S7-1500并进行数据交互的应用中一直使用的是ModbusTCP/ModbusRTU协议进行。Modbus上位开源库采用的LibModbus。经过实际应用发现Modbus开源库单次发送和接受的数据不能超过…

R306指纹识别模块功能实现示例

1 基本通信流程 1.1 UART 命令包的处理过程 1.2 UART 数据包的发送过程 UART 传输数据包前&#xff0c;首先要接收到传输数据包的指令包&#xff0c;做好传输准备后发送成功应答包&#xff0c;最后才开始传输数据包。数据包主要包括&#xff1a;包头、设备地址、包标识、包长…

【深度学习下载大型数据集】快速下载谷歌云盘数据集

个人博客:Sekyoro的博客小屋 个人网站:Proanimer的个人网站 跑深度学习的时候,一些数据集比较大,比如60多个G,而且只是训练集. 然后这些数据是由某些实验室组采集的,并不像一些大公司搞的,一般都直接方法一些网盘中. 如果是谷歌网盘,本身通过代理也不麻烦,但是发现即使通过代…

Java中常见的进制转换

进制是一种表示数字的方法&#xff0c;用于计算机科学、数学和电子工程等领域。常见的进制包括十进制、二进制、八进制和十六进制。 十进制是我们最常用的数字表示方法&#xff0c;使用10个数字(0-9)来表示所有数字。 二进制是计算机最基本的进制&#xff0c;使用2个数字(0和1)…

vue3 实现el-date-picker日期筛选过程

一、图例 二、需求&#xff1a; 有2个查询条件&#xff0c;startTime 和 endTime 选中时间1&#xff0c;禁止选中时间2&#xff0c;当前值传递给 startTime 选中时间2&#xff0c;禁止选中时间1&#xff0c;当前值传递给 startTime 和 endTime 三、完整代码 <div class…

java中使用redis

1、redis数据类型 1.1、5种数据类型 redis存储的是key-value结构的数据&#xff0c;其中key是字符串类型&#xff0c;value有5种常用的数据类型&#xff1a;字符串 string、哈希 hash、列表 list、集合 set、有序集合 sorted set / zset。 字符串(string)&#xff1a;普通字符…

揭秘计算机内部通信:探秘数据、地址与控制信号的奥秘

引言 在我们前面的讲解中&#xff0c;我们详细了解了计算机系统的核心组件&#xff0c;包括CPU、内存和磁盘。然而&#xff0c;总线在这个体系中同样至关重要。总线是计算机内部各部件间通信的桥梁&#xff0c;涉及数据、地址和控制信号的传输。在接下来的内容中&#xff0c;我…

【C++】浅拷贝 / 深拷贝 / 写时拷贝

文章目录 1. 经典的string类问题2. 浅拷贝3. 深拷贝3.1 传统写法的String类3.2 现代写法的String类 4. 写时拷贝 1. 经典的string类问题 上一篇博客已经对string类进行了简单的介绍&#xff0c;大家只要能够正常使用即可。 链接&#xff1a;【C】string 在面试中&#xff0c;面…