feat:你可以这样问我提示词组件封装

This commit is contained in:
duanshuwen
2025-07-11 14:46:30 +08:00
parent fb6c258893
commit deef75509e
30 changed files with 221 additions and 203 deletions

View File

@@ -0,0 +1,26 @@
"use strict";
const common_vendor = require("../../common/vendor.js");
const common_assets = require("../../common/assets.js");
const _sfc_main = {
__name: "index",
setup(__props) {
const handleRefresh = (type) => {
common_vendor.index.__f__("log", "at components/ServiceTipsWord/index.vue:29", `Button clicked: ${type}`);
};
const handleClick = (type) => {
common_vendor.index.__f__("log", "at components/ServiceTipsWord/index.vue:33", `Button clicked: ${type}`);
};
return (_ctx, _cache) => {
return {
a: common_assets._imports_0$6,
b: common_vendor.o(handleRefresh),
c: common_vendor.o(($event) => handleClick("bed")),
d: common_vendor.o(($event) => handleClick("hotWater")),
e: common_vendor.o(($event) => handleClick("mahjong"))
};
};
}
};
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-f577f2f2"]]);
wx.createComponent(Component);
//# sourceMappingURL=../../../.sourcemap/mp-weixin/components/ServiceTipsWord/index.js.map

View File

@@ -0,0 +1,4 @@
{
"component": true,
"usingComponents": {}
}

View File

@@ -0,0 +1 @@
<view class="service-prompt data-v-f577f2f2"><view class="service-header data-v-f577f2f2"><text class="header-text data-v-f577f2f2">你可以这样问我</text><image class="header-icon data-v-f577f2f2" src="{{a}}" bindtap="{{b}}"></image></view><view class="service-buttons data-v-f577f2f2"><text class="service-button data-v-f577f2f2" bindtap="{{c}}"> 帮我加一张床 </text><text class="service-button data-v-f577f2f2" bindtap="{{d}}"> 房间热水不够热 </text><text class="service-button data-v-f577f2f2" bindtap="{{e}}"> 帮忙加一台麻将机 </text></view></view>

View File

@@ -0,0 +1,64 @@
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.service-prompt.data-v-f577f2f2 {
padding: 12px 18px;
}
.service-header.data-v-f577f2f2 {
display: flex;
align-items: center;
margin-bottom: 5px;
}
.header-text.data-v-f577f2f2 {
font-size: 12px;
color: #6b84a2;
}
.header-icon.data-v-f577f2f2 {
width: 9px;
height: 9px;
margin-left: 8px;
}
.service-buttons.data-v-f577f2f2 {
display: flex;
flex-wrap: nowrap;
}
.service-button.data-v-f577f2f2 {
height: 36px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 8px;
padding-left: 12px;
padding-right: 12px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #ffffff 100%);
box-shadow: 0px 2px 6px 0px rgba(16, 78, 137, 0.1);
border-radius: 20px 20px 20px 20px;
border: 1px solid #fff;
border-image: linear-gradient(137deg, white, rgba(255, 255, 255, 0.5), white);
font-size: 12px;
font-weight: 500;
color: #00a6ff;
border-radius: 50px;
}