From 31e55e6e3471420886ecfe29e06fd5c7a0c41087 Mon Sep 17 00:00:00 2001
From: longchao <1432334894@qq.com>
Date: Tue, 29 Jul 2025 10:52:56 +0800
Subject: [PATCH] =?UTF-8?q?es=E5=BD=95=E5=85=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../template_c/%%1D^1D0^1D0BA4CE%%footer.html.php | 6 -
.../%%24^24D^24DFFC2B%%interlocution.html.php | 712 ---------------------
.../%%37^37E^37E32D10%%comment_detail.html.php | 349 ----------
cache/template_c/%%69^696^6961BB6C%%home.html.php | 192 ------
.../%%74^74D^74D2651F%%user_list.html.php | 152 -----
.../%%91^91E^91E815D2%%show_detail.html.php | 34 -
.../%%9D^9D5^9D53217D%%comments.html.php | 195 ------
.../template_c/%%EC^EC2^EC26F5B8%%header.html.php | 44 --
cache/template_c/%%EF^EF7^EF70A257%%login.html.php | 152 -----
9 files changed, 1836 deletions(-)
delete mode 100644 cache/template_c/%%1D^1D0^1D0BA4CE%%footer.html.php
delete mode 100644 cache/template_c/%%24^24D^24DFFC2B%%interlocution.html.php
delete mode 100644 cache/template_c/%%37^37E^37E32D10%%comment_detail.html.php
delete mode 100644 cache/template_c/%%69^696^6961BB6C%%home.html.php
delete mode 100644 cache/template_c/%%74^74D^74D2651F%%user_list.html.php
delete mode 100644 cache/template_c/%%91^91E^91E815D2%%show_detail.html.php
delete mode 100644 cache/template_c/%%9D^9D5^9D53217D%%comments.html.php
delete mode 100644 cache/template_c/%%EC^EC2^EC26F5B8%%header.html.php
delete mode 100644 cache/template_c/%%EF^EF7^EF70A257%%login.html.php
diff --git a/cache/template_c/%%1D^1D0^1D0BA4CE%%footer.html.php b/cache/template_c/%%1D^1D0^1D0BA4CE%%footer.html.php
deleted file mode 100644
index 3569539..0000000
--- a/cache/template_c/%%1D^1D0^1D0BA4CE%%footer.html.php
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
\ No newline at end of file
diff --git a/cache/template_c/%%24^24D^24DFFC2B%%interlocution.html.php b/cache/template_c/%%24^24D^24DFFC2B%%interlocution.html.php
deleted file mode 100644
index 6ca23ef..0000000
--- a/cache/template_c/%%24^24D^24DFFC2B%%interlocution.html.php
+++ /dev/null
@@ -1,712 +0,0 @@
-
-
-
-
-
-
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/header.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
欢迎使用DeepSeek Chat!开始一个新的对话吧。
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

-

-
-
-
-
-
-
-
-
内容由 AI 生成,请仔细甄别
-
-
-
-
-
-
- // 新对话按钮点击事件
- // document.querySelector(\'.new-chat-btn\').addEventListener(\'click\', function () {
- // // 这里可以添加创建新对话的逻辑
- // alert(\'创建新对话\');
- // });
- $(document).ready(function () {
- var loadFlag = false;
-
- // 对话数据存储
- let conversations = {
- // 示例数据
- "conversation1": {
- id: "conversation1",
- title: "草莓糖的作者最喜欢色设计",
- messages: [{
- role: "user",
- content: "草莓糖的作者是谁?"
- },
- {
- role: "assistant",
- content: "草莓糖是由皮克斯动画工作室创作的..."
- }
- ],
- timestamp: new Date().getTime(),
- group: "today"
- },
- "conversation2": {
- id: "conversation2",
- title: "西瓜考试满分笑话解析",
- messages: [{
- role: "user",
- content: "西瓜考试满分是什么笑话?"
- },
- {
- role: "assistant",
- content: "这是一个关于西瓜参加考试..."
- }
- ],
- timestamp: new Date().getTime() - 3600000 * 2,
- group: "today"
- },
- "conversation3": {
- id: "conversation3",
- title: "Vue子路由配置方法详解",
- messages: [{
- role: "user",
- content: "如何在Vue中配置子路由?"
- },
- {
- role: "assistant",
- content: "在Vue Router中,你可以使用children属性..."
- }
- ],
- timestamp: new Date().getTime() - 86400000 * 11,
- group: "7days"
- }
- };
-
- let currentConversationId = null;
- // 侧边栏状态
- let sidebarCollapsed = false;
-
- marked.setOptions({
- highlight: function (code, lang) {
- if (hljs.getLanguage(lang)) {
- return hljs.highlight(lang, code).value;
- }
- return hljs.highlightAuto(code).value;
- }
- });
- // 切换侧边栏
- function toggleSidebar() {
- sidebarCollapsed = !sidebarCollapsed;
- $(\'#sidebar\').toggleClass(\'collapsed\', sidebarCollapsed);
-
- // 更新切换按钮图标
- const icon = sidebarCollapsed ? \'menu\' : \'close\';
- // $(\'#toggleSidebar i\').attr(\'class\', \'icon icon-\' + icon);
-
- // 如果是移动端,处理主内容区域的偏移
- if (window.innerWidth <= 768) {
- if (sidebarCollapsed) {
- $(\'#sidebar\').removeClass(\'collapsed\');
- $(\'#sidebar\').css(\'transform\', \'translateX(-100%)\');
- } else {
- $(\'#sidebar\').css(\'transform\', \'translateX(0)\');
- }
- }
-
- // 保存状态到本地存储
- localStorage.setItem(\'sidebarCollapsed\', sidebarCollapsed);
- }
- $(\'#openMenu, .ds-icon-box\').on(\'click\', function () {
- // sidebarCollapsed = !sidebarCollapsed;
- // $(\'#sidebar\').toggleClass(\'collapsed\', sidebarCollapsed);
- toggleSidebar()
- })
-
- // 初始化侧边栏状态
- function initSidebarState() {
- const savedState = localStorage.getItem(\'sidebarCollapsed\');
- if (savedState !== null) {
- sidebarCollapsed = savedState === \'true\';
- $(\'#sidebar\').toggleClass(\'collapsed\', sidebarCollapsed);
-
- const icon = sidebarCollapsed ? \'expand\' : \'retract\';
- // $(\'#toggleSidebar\').attr(\'src\', `{$smarty.const.CSS_URL}/images/${icon}.svg`);
-
- if (window.innerWidth <= 768 && !sidebarCollapsed) {
- $(\'#sidebar\').css(\'transform\', \'translateX(-100%)\');
- }
- }
- }
- // 绑定事件
- $(\'#toggleSidebar\').click(toggleSidebar);
- $(\'#mobileMenuToggle\').click(function () {
- if (window.innerWidth <= 768) {
- $(\'#sidebar\').css(\'transform\', \'translateX(0)\');
- } else {
- toggleSidebar();
- }
- });
-
-
- $(\'.conversation-list\').on(\'click\', \'.conversation-item\', function () {
- $(\'.conversation-list .conversation-item\').removeClass(\'b64fb9ae\')
- $(this).addClass(\'b64fb9ae\')
- })
-
- $(\'.ds-button--primary\').click(function () {
- if ($(this).hasClass(\'ds-button--primary-active\')) {
- $(this).removeClass(\'ds-button--primary-active\')
- } else {
- $(this).addClass(\'ds-button--primary-active\')
- }
- })
-
- // 初始化对话列表
- function renderConversationList() {
- const $list = $(\'#conversationList\');
- $list.empty();
-
- // 分组对话
- const today = [];
- const last7Days = [];
- const last30Days = [];
- const now = new Date().getTime();
-
- Object.values(conversations).forEach(conv => {
- const diff = now - conv.timestamp;
- // console.log(diff, \'diff---\');
- if (diff < 86400000) {
- today.push(conv);
- } else if (diff < 86400000 * 7) {
- last7Days.push(conv);
- } else {
- last30Days.push(conv);
- }
- });
-
- // 渲染今天
- if (today.length > 0) {
- $list.append(\'
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/header.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
- - class="active">选中评论
- - class="active">剔除评论
- - class="active">全部评论
-
-
-
-
-
-
-
-
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/footer.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
-
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/header.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
预览
-

-
×
-
-
-
-
-
-
-
-
-
-
-
-
-
-

-
-
-
-
- const maxLength = 100; // 设置最大字数限制
- $(\'.normal-input\').on(\'input\', function () {
- var currentLength = $(this).val().length;
- $(\'.char-count\').text(currentLength + \'/\' + maxLength);
- if (currentLength > maxLength) {
- $(\'.normal-input\').val($(\'.normal-input\').val().slice(0, maxLength))
- $(\'.char-count\').text(maxLength + \'/\' + maxLength);
- }
- });
- $(\'.answer-input\').on(\'input\', function () {
- var currentLength = $(this).val().length;
- $(\'.char-count1\').text(currentLength + \'/\' + maxLength);
- if (currentLength > maxLength) {
- $(\'.answer-input\').val($(\'.answer-input\').val().slice(0, maxLength))
- $(\'.char-count1\').text(maxLength + \'/\' + maxLength);
- }
- });
-
- '; ?>
-
-
-
-
-
-
-
-
-
-
支持 jpg、png、mp4 格式,单个文件不超过 10MB
-
-
-
-
-
-
-
-
-
-
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/footer.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
-
-
\ No newline at end of file
diff --git a/cache/template_c/%%74^74D^74D2651F%%user_list.html.php b/cache/template_c/%%74^74D^74D2651F%%user_list.html.php
deleted file mode 100644
index 4c2136f..0000000
--- a/cache/template_c/%%74^74D^74D2651F%%user_list.html.php
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
-
-
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/header.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
-
子账号管理
-
-
-
-
-
- _tpl_vars['_user_info']['aid'] == 0): ?>
- AID |
-
- 账号昵称 |
- 姓名 |
- 添加时间 |
- 启用状态 |
-
-
-
-
-
-
-
-
- 备注
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
新增子账号
- _tpl_vars['bind_user_info']): ?>
-

-
-
-
- var obj = new WxLogin({
- id: "login_container",
- appid: "'; ?>
-_tpl_vars['appid']; ?>
-
-_tpl_vars['redirect_uri']; ?>
-
-_tpl_vars['state']; ?>
-
- '; ?>
-
-
-
-
-

-
_tpl_vars['bind_user_info']['nickname']; ?>
-,扫码成功
-
-
-
- 微信扫码,绑定子账号
-
-
-
-

- 姓名
-
-
-
-
-
-
-
-
-
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/footer.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
-
-
\ No newline at end of file
diff --git a/cache/template_c/%%91^91E^91E815D2%%show_detail.html.php b/cache/template_c/%%91^91E^91E815D2%%show_detail.html.php
deleted file mode 100644
index 4403210..0000000
--- a/cache/template_c/%%91^91E^91E815D2%%show_detail.html.php
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/header.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
预览
-

-
×
-
-
-
-
-
-
-
-
-
-
-
-
-
-

-
-
-
-
- const maxLength = 100; // 设置最大字数限制
- $(\'.normal-input\').on(\'input\', function () {
- var currentLength = $(this).val().length;
- $(\'.char-count\').text(currentLength + \'/\' + maxLength);
- if (currentLength > maxLength) {
- $(\'.normal-input\').val($(\'.normal-input\').val().slice(0, maxLength))
- $(\'.char-count\').text(maxLength + \'/\' + maxLength);
- }
- });
- $(\'.answer-input\').on(\'input\', function () {
- var currentLength = $(this).val().length;
- $(\'.char-count1\').text(currentLength + \'/\' + maxLength);
- if (currentLength > maxLength) {
- $(\'.answer-input\').val($(\'.answer-input\').val().slice(0, maxLength))
- $(\'.char-count1\').text(maxLength + \'/\' + maxLength);
- }
- });
-
- '; ?>
-
-
-
-
-
-
-
-
-
-
支持 jpg、png、mp4 格式,单个文件不超过 10MB
-
-
-
-
-
-
-
-
-
-
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/footer.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/cache/template_c/%%EC^EC2^EC26F5B8%%header.html.php b/cache/template_c/%%EC^EC2^EC26F5B8%%header.html.php
deleted file mode 100644
index 2f7b968..0000000
--- a/cache/template_c/%%EC^EC2^EC26F5B8%%header.html.php
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
- $(\'.dropdown-toggle\').click(function () {
- const dropdownPanel = document.querySelector(\'.dropdown-panel\');
- const icon = document.querySelector(\'.icon\');
- // 切换面板的显示/隐藏
- if (dropdownPanel.style.display === \'block\') {
- dropdownPanel.style.display = \'none\';
- icon.classList.remove(\'rotate\'); // 移除旋转效果
- } else {
- dropdownPanel.style.display = \'block\';
- icon.classList.add(\'rotate\'); // 添加旋转效果
- }
- })
-
-'; ?>
\ No newline at end of file
diff --git a/cache/template_c/%%EF^EF7^EF70A257%%login.html.php b/cache/template_c/%%EF^EF7^EF70A257%%login.html.php
deleted file mode 100644
index 2e7f1b6..0000000
--- a/cache/template_c/%%EF^EF7^EF70A257%%login.html.php
+++ /dev/null
@@ -1,152 +0,0 @@
-
-
-
-
-
-
-
-
-
-

-
私有云知识库
-
-
-
- var obj = new WxLogin({
- id: "login_container",
- appid: "'; ?>
-_tpl_vars['appid']; ?>
-
-_tpl_vars['redirect_uri']; ?>
-
-_tpl_vars['state']; ?>
-
- '; ?>
-
-
-
-

-
点击刷新
-
-
-
-

-
-
-
- 扫码后请在手机上确认登录
-
-
-
-
- _tpl_vars;
-$this->_smarty_include(array('smarty_include_tpl_file' => "include/footer.html", 'smarty_include_vars' => array()));
-$this->_tpl_vars = $_smarty_tpl_vars;
-unset($_smarty_tpl_vars);
- ?>
-
-
-
-
\ No newline at end of file