console.uvue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. import _easycom_u_icon from '@/components/u-icon/u-icon.vue';
  2. import _easycom_u_switch from '@/components/u-switch/u-switch.vue';
  3. import _easycom_u_floating from '@/components/u-floating/u-floating.vue';
  4. import _imports_0 from '@/static/imagesInfo/bg-color.png';
  5. import _imports_1 from '@/static/imagesInfo/bg-icon.png';
  6. import { ref, computed } from 'vue';
  7. import { colors } from '@/common/theme';
  8. // 状态
  9. type AvatarUrl = {
  10. __$originalPosition?: UTSSourceMapPosition<"AvatarUrl", "pages/index/console.uvue", 206, 7>;
  11. url: string;
  12. };
  13. // 技师信息(空对象,字段可为null)
  14. type CoachInfo = {
  15. __$originalPosition?: UTSSourceMapPosition<"CoachInfo", "pages/index/console.uvue", 210, 7>;
  16. created_at: string | null;
  17. avatar_url: AvatarUrl | null;
  18. };
  19. type EvalTag = {
  20. __$originalPosition?: UTSSourceMapPosition<"EvalTag", "pages/index/console.uvue", 260, 7>;
  21. text: string;
  22. count: number;
  23. };
  24. const __sfc__ = defineComponent({
  25. __name: 'console',
  26. setup(__props) {
  27. const __ins = getCurrentInstance()!;
  28. const _ctx = __ins.proxy as InstanceType<typeof __sfc__>;
  29. const _cache = __ins.renderCache;
  30. const isOnline = ref(true);
  31. const cityInfo = ref('');
  32. // 头像url类型
  33. const coachInfo = ref<CoachInfo | null>(null);
  34. // 切换上线状态
  35. const toggleOnline = () => {
  36. isOnline.value = !isOnline.value;
  37. // 这里可以调用 API 更新状态
  38. console.log('Status changed:', isOnline.value, " at pages/index/console.uvue:220");
  39. };
  40. // 功能列表
  41. const funcList = [
  42. { iconUrl: '/static/imagesInfo/cx-shop.png', label: '接单时间' },
  43. { iconUrl: '/static/imagesInfo/item-icon.png', label: '服务项目' },
  44. { iconUrl: '/static/imagesInfo/jied-time.png', label: '重选店铺' },
  45. { iconUrl: '/static/imagesInfo/gengxin-wz.png', label: '位置更新' }
  46. ] as UTSJSONObject[];
  47. // 跳转到技师详情
  48. const jumpMasterInfo = () => {
  49. console.log('jumpMasterInfo invoked', " at pages/index/console.uvue:233");
  50. // 在这里可以执行导航或其他逻辑
  51. };
  52. // 功能按钮点击处理
  53. const jumpSetProject = () => {
  54. console.log('jumpSetProject invoked', " at pages/index/console.uvue:239");
  55. // 在这里可以执行导航或其他逻辑
  56. };
  57. // 悬浮球双击处理
  58. const callPolice = () => {
  59. console.log('callPolice triggered', " at pages/index/console.uvue:245");
  60. // 可在此触发紧急呼叫等操作
  61. };
  62. // 统计数据
  63. const dataStats = [
  64. { value: '456', label: '接单量' },
  65. { value: '10%', label: '加钟率' },
  66. { value: '70%', label: '好评率' },
  67. { value: '3%', label: '复购率' },
  68. { value: '19%', label: '退单率' }
  69. ] as UTSJSONObject[];
  70. // 评价标签数据
  71. // 使用类型别名避免 UTS 对内联对象字面量的限制
  72. const evalTags: EvalTag[] = [
  73. { text: '不良引导', count: 0 } as EvalTag,
  74. { text: '手法不好', count: 101 } as EvalTag,
  75. { text: '性格温柔', count: 198 } as EvalTag,
  76. { text: '服务到位', count: 10 } as EvalTag
  77. ];
  78. return (): any | null => {
  79. const _component_u_icon = resolveEasyComponent("u-icon", _easycom_u_icon);
  80. const _component_u_switch = resolveEasyComponent("u-switch", _easycom_u_switch);
  81. const _component_u_floating = resolveEasyComponent("u-floating", _easycom_u_floating);
  82. return _cE("scroll-view", _uM({
  83. style: _nS(_uM({ "flex": "1" }))
  84. }), [
  85. _cE("view", _uM({ class: "page" }), [
  86. _cE("image", _uM({
  87. class: "upContent",
  88. src: _imports_0,
  89. mode: "aspectFill"
  90. })),
  91. _cE("view", _uM({ class: "city-info" }), [
  92. _cE("view", _uM({ class: "city-text-box" }), [
  93. _cE("text", null, " 当前城市:" + _tD(cityInfo.value), 1 /* TEXT */)
  94. ]),
  95. _cV(_component_u_icon, _uM({
  96. name: "notification",
  97. size: 24
  98. }))
  99. ]),
  100. _cE("view", _uM({ class: "user-card" }), [
  101. _cE("image", _uM({
  102. class: "user-bg",
  103. src: _imports_1,
  104. mode: "scaleToFill"
  105. })),
  106. _cE("view", _uM({
  107. class: "user-info",
  108. style: _nS(_uM({ "padding": "20rpx" }))
  109. }), [
  110. _cE("view", _uM({ class: "user-left" }), [
  111. _cE("view", _uM({ class: "user-info" }), [
  112. _cE("text", _uM({ class: "user-name" }), " 刘大锤 "),
  113. _cE("view", _uM({ class: "tags" }), [
  114. _cE("text", _uM({ class: "tag-new" }), " 新人实习 ")
  115. ]),
  116. _cV(_component_u_icon, _uM({
  117. name: "edit",
  118. size: 18
  119. })),
  120. _cE("text", _uM({ class: "tag" }), " 编辑 ")
  121. ]),
  122. _cE("view", _uM({ class: "user-info" }), [
  123. _cV(_component_u_icon, _uM({
  124. name: "customer-interests",
  125. size: 18
  126. })),
  127. _cE("text", _uM({ class: "user-role" }), " 小丁理疗师 "),
  128. _cV(_component_u_icon, _uM({
  129. name: "store",
  130. size: 18
  131. })),
  132. _cE("text", _uM({ class: "user-shop" }), " 佳人有约 ")
  133. ]),
  134. _cE("view", _uM({ class: "online-switch" }), [
  135. _cV(_component_u_switch, _uM({
  136. checked: isOnline.value,
  137. onChange: toggleOnline
  138. }), null, 8 /* PROPS */, ["checked"])
  139. ])
  140. ]),
  141. _cE("view", _uM({ class: "user-right" }), [
  142. _cE("text", _uM({ class: "text-time-box" }), " 入驻时间 "),
  143. _cE("text", _uM({
  144. class: "text-time-box",
  145. style: _nS(_uM({ "margin-top": "5rpx" }))
  146. }), "2026.03.01" + _tD(coachInfo.value?.created_at.split(' ')[0]), 5 /* TEXT, STYLE */),
  147. isTrue(coachInfo.value != null && coachInfo.value!.avatar_url != null)
  148. ? _cE("image", _uM({
  149. key: 0,
  150. onClick: withModifiers(jumpMasterInfo, ["stop"]),
  151. src: coachInfo.value!.avatar_url!.url,
  152. style: _nS(_uM({ "width": "138rpx", "height": "138rpx", "border-radius": "69rpx", "margin-top": "15rpx" })),
  153. mode: "aspectFit"
  154. }), null, 12 /* STYLE, PROPS */, ["src"])
  155. : _cE("image", _uM({
  156. key: 1,
  157. src: "/static/testInfo/boy-nickname.png",
  158. style: _nS(_uM({ "width": "138rpx", "height": "138rpx", "border-radius": "69rpx", "margin-top": "15rpx" })),
  159. mode: "aspectFit"
  160. }), null, 4 /* STYLE */)
  161. ])
  162. ], 4 /* STYLE */),
  163. _cE("view", _uM({ class: "location-bar user-info" }), [
  164. _cV(_component_u_icon, _uM({
  165. name: "navigation",
  166. size: 18
  167. })),
  168. _cE("text", _uM({ class: "location-text" }), " 当前定位:烟台市楚凤一街1号楚凤花园 "),
  169. _cE("text", _uM({ class: "location-btn" }), " 手动更新 ")
  170. ])
  171. ]),
  172. _cE("view", _uM({ class: "stats-row" }), [
  173. _cE("view", _uM({ class: "stat-item" }), [
  174. _cE("text", _uM({ class: "stat-label" }), " 本月收益(元) "),
  175. _cE("text", _uM({ class: "stat-value" }), " 2234.88 ")
  176. ]),
  177. _cE("view", _uM({ class: "stat-divider" })),
  178. _cE("view", _uM({ class: "stat-item" }), [
  179. _cE("text", _uM({ class: "stat-label" }), " 本月接单量(单) "),
  180. _cE("text", _uM({ class: "stat-value" }), " 2234.88 ")
  181. ]),
  182. _cE("view", _uM({ class: "stat-divider" })),
  183. _cE("view", _uM({ class: "stat-item" }), [
  184. _cE("text", _uM({ class: "stat-label" }), " 本月退单率 "),
  185. _cE("text", _uM({ class: "stat-value" }), " 30% ")
  186. ])
  187. ]),
  188. _cE("view", _uM({ class: "func-grid" }), [
  189. _cE(Fragment, null, RenderHelpers.renderList(funcList, (item, i, __index, _cached): any => {
  190. return _cE("view", _uM({
  191. class: "func-item",
  192. key: i
  193. }), [
  194. _cE("view", _uM({
  195. onClick: withModifiers(jumpSetProject, ["stop"])
  196. }), [
  197. _cE("image", _uM({
  198. style: _nS(_uM({ "width": "92rpx", "height": "92rpx" })),
  199. src: item["iconUrl"],
  200. mode: "aspectFit"
  201. }), null, 12 /* STYLE, PROPS */, ["src"]),
  202. _cE("text", _uM({ class: "func-label" }), _tD(item["label"]), 1 /* TEXT */)
  203. ])
  204. ]);
  205. }), 64 /* STABLE_FRAGMENT */)
  206. ]),
  207. _cE("view", _uM({ class: "data-section" }), [
  208. _cE("view", _uM({ class: "section-header" }), [
  209. _cE("text", _uM({ class: "section-title" }), " 数据统计 "),
  210. _cE("text", _uM({ class: "section-more" }), " 查看全部 > ")
  211. ]),
  212. _cE("view", _uM({ class: "data-grid" }), [
  213. _cE(Fragment, null, RenderHelpers.renderList(dataStats, (item, i, __index, _cached): any => {
  214. return _cE("view", _uM({
  215. class: "data-item",
  216. key: i
  217. }), [
  218. _cE("text", _uM({ class: "data-value" }), _tD(item["value"]), 1 /* TEXT */),
  219. _cE("text", _uM({ class: "data-label" }), _tD(item["label"]), 1 /* TEXT */)
  220. ]);
  221. }), 64 /* STABLE_FRAGMENT */)
  222. ])
  223. ]),
  224. _cE("view", _uM({ class: "eval-section" }), [
  225. _cE("view", _uM({ class: "section-header" }), [
  226. _cE("text", _uM({ class: "section-title" }), " 客户评价 "),
  227. _cE("text", _uM({ class: "section-more" }), " 查看全部 > ")
  228. ]),
  229. _cE("view", _uM({ class: "eval-tags" }), [
  230. _cE(Fragment, null, RenderHelpers.renderList(evalTags, (tag, i, __index, _cached): any => {
  231. return _cE("text", _uM({
  232. class: "eval-tag",
  233. key: i
  234. }), _tD(tag.text) + " " + _tD(tag.count > 0 ? tag.count : ''), 1 /* TEXT */);
  235. }), 64 /* STABLE_FRAGMENT */)
  236. ]),
  237. _cE("view", _uM({ class: "eval-item" }), [
  238. _cE("image", _uM({
  239. class: "eval-avatar",
  240. src: "/static/testInfo/boy-nickname.png",
  241. mode: "aspectFill"
  242. })),
  243. _cE("view", _uM({ class: "eval-content" }), [
  244. _cE("view", _uM({ class: "eval-top" }), [
  245. _cE("text", _uM({ class: "eval-name" }), " 匿名评价 "),
  246. _cE("text", _uM({ class: "eval-date" }), " 2025-04-24 ")
  247. ]),
  248. _cE("view", _uM({ class: "eval-stars" }), [
  249. _cE("text", null, " ⭐⭐⭐⭐☆ "),
  250. _cE("view", _uM({ class: "stat-divider" })),
  251. _cE("text", _uM({ class: "eval-service" }), " 泰式松骨 ")
  252. ]),
  253. _cE("text", _uM({ class: "eval-comment" }), " 服务到位 ")
  254. ])
  255. ])
  256. ]),
  257. _cV(_component_u_floating, _uM({ onDblclick: callPolice }))
  258. ])
  259. ], 4 /* STYLE */);
  260. };
  261. }
  262. });
  263. export default __sfc__;
  264. const GenPagesIndexConsoleStyles = [_uM([["page", _pS(_uM([["paddingTop", "24rpx"], ["paddingRight", "24rpx"], ["paddingBottom", "24rpx"], ["paddingLeft", "24rpx"]]))], ["upContent", _pS(_uM([["height", "900rpx"], ["width", "750rpx"], ["position", "fixed"], ["top", 0], ["left", 0], ["zIndex", -1]]))], ["city-info", _pS(_uM([["flexDirection", "row"], ["justifyContent", "space-between"]]))], ["user-card", _pS(_uM([["borderTopLeftRadius", "16rpx"], ["borderTopRightRadius", "16rpx"], ["borderBottomRightRadius", "16rpx"], ["borderBottomLeftRadius", "16rpx"], ["marginBottom", "32rpx"], ["boxShadow", "0 4rpx 16rpx rgba(0, 0, 0, 0.06)"]]))], ["user-bg", _pS(_uM([["position", "absolute"], ["right", 0], ["width", "702rpx"]]))], ["user-info", _pS(_uM([["flexDirection", "row"], ["alignItems", "center"], ["marginBottom", "16rpx"], ["justifyContent", "space-between"]]))], ["user-name", _pS(_uM([["fontSize", "40rpx"], ["fontWeight", "bold"], ["color", "#333333"]]))], ["tag", _pS(_uM([["fontSize", "24rpx"]]))], ["tag-new", _pS(_uM([["backgroundImage", "linear-gradient(180deg, rgba(207, 221, 62, 0.69) 0%, rgba(162, 184, 29, 1) 100%)"], ["backgroundColor", "rgba(0,0,0,0)"], ["color", "#FFFFFF"], ["borderTopLeftRadius", "24rpx"], ["borderTopRightRadius", "24rpx"], ["borderBottomRightRadius", "24rpx"], ["borderBottomLeftRadius", "24rpx"], ["marginTop", 0], ["marginRight", "16rpx"], ["marginBottom", 0], ["marginLeft", "16rpx"], ["fontSize", "28rpx"], ["paddingTop", "6rpx"], ["paddingRight", "12rpx"], ["paddingBottom", "6rpx"], ["paddingLeft", "12rpx"]]))], ["tag-edit", _pS(_uM([["color", "#999999"]]))], ["user-role", _pS(_uM([["fontSize", "26rpx"], ["color", "#999999"], ["marginRight", "32rpx"]]))], ["user-shop", _pS(_uM([["fontSize", "26rpx"], ["color", "#999999"], ["marginRight", "32rpx"]]))], ["online-switch", _pS(_uM([["marginTop", "24rpx"]]))], ["online-text", _pS(_uM([["fontSize", "26rpx"], ["color", "#333333"], ["marginRight", "16rpx"]]))], ["user-right", _pS(_uM([["alignItems", "center"], ["width", "180rpx"], ["height", "245rpx"], ["zIndex", 1], ["marginRight", "14rpx"]]))], ["text-time-box", _pS(_uM([["marginTop", "10rpx"], ["fontSize", "24rpx"], ["color", "#ffffff"], ["letterSpacing", "1rpx"], ["textAlign", "center"]]))], ["join-time", _pS(_uM([["textAlign", "center"], ["fontSize", "24rpx"], ["color", "#FFFFFF"], ["backgroundColor", "rgba(0,0,0,0.6)"], ["paddingTop", "8rpx"], ["paddingRight", "16rpx"], ["paddingBottom", "8rpx"], ["paddingLeft", "16rpx"], ["borderTopLeftRadius", "8rpx"], ["borderTopRightRadius", "8rpx"], ["borderBottomRightRadius", "8rpx"], ["borderBottomLeftRadius", "8rpx"], ["marginBottom", "16rpx"]]))], ["avatar", _pS(_uM([["width", "120rpx"], ["height", "120rpx"], ["borderTopLeftRadius", "60rpx"], ["borderTopRightRadius", "60rpx"], ["borderBottomRightRadius", "60rpx"], ["borderBottomLeftRadius", "60rpx"], ["borderTopWidth", "4rpx"], ["borderRightWidth", "4rpx"], ["borderBottomWidth", "4rpx"], ["borderLeftWidth", "4rpx"], ["borderTopStyle", "solid"], ["borderRightStyle", "solid"], ["borderBottomStyle", "solid"], ["borderLeftStyle", "solid"], ["borderTopColor", "#FFFFFF"], ["borderRightColor", "#FFFFFF"], ["borderBottomColor", "#FFFFFF"], ["borderLeftColor", "#FFFFFF"]]))], ["location-bar", _pS(_uM([["display", "flex"], ["alignItems", "center"], ["backgroundImage", "linear-gradient(to right, #FFF9E1 0%, #FFF1BF 100%)"], ["paddingTop", "10rpx"], ["paddingRight", "20rpx"], ["paddingBottom", "10rpx"], ["paddingLeft", "20rpx"], ["borderTopLeftRadius", "18rpx"], ["borderTopRightRadius", "18rpx"], ["borderBottomRightRadius", "18rpx"], ["borderBottomLeftRadius", "18rpx"], ["marginTop", "30rpx"], ["fontSize", "24rpx"], ["justifyContent", "space-between"]]))], ["location-icon", _pS(_uM([["fontSize", "28rpx"], ["marginRight", "16rpx"]]))], ["location-text", _pS(_uM([["fontSize", "26rpx"]]))], ["location-btn", _pS(_uM([["fontSize", "26rpx"], ["borderTopWidth", "2rpx"], ["borderRightWidth", "2rpx"], ["borderBottomWidth", "2rpx"], ["borderLeftWidth", "2rpx"], ["borderTopStyle", "solid"], ["borderRightStyle", "solid"], ["borderBottomStyle", "solid"], ["borderLeftStyle", "solid"], ["borderTopColor", "#0a0a0a"], ["borderRightColor", "#0a0a0a"], ["borderBottomColor", "#0a0a0a"], ["borderLeftColor", "#0a0a0a"], ["paddingTop", "8rpx"], ["paddingRight", "8rpx"], ["paddingBottom", "8rpx"], ["paddingLeft", "8rpx"], ["borderTopLeftRadius", "16rpx"], ["borderTopRightRadius", "16rpx"], ["borderBottomRightRadius", "16rpx"], ["borderBottomLeftRadius", "16rpx"]]))], ["stats-row", _pS(_uM([["display", "flex"], ["flexDirection", "row"], ["textAlign", "center"], ["backgroundColor", "#FFFFFF"], ["marginBottom", "32rpx"], ["borderTopLeftRadius", "24rpx"], ["borderTopRightRadius", "24rpx"], ["borderBottomRightRadius", "24rpx"], ["borderBottomLeftRadius", "24rpx"], ["paddingTop", "32rpx"], ["paddingRight", "32rpx"], ["paddingBottom", "32rpx"], ["paddingLeft", "32rpx"], ["boxShadow", "0 4rpx 16rpx rgba(0, 0, 0, 0.05)"]]))], ["stat-item", _pS(_uM([["flexGrow", 1], ["flexShrink", 1], ["flexBasis", "0%"], ["textAlign", "center"]]))], ["stat-label", _pS(_uM([["fontSize", "26rpx"], ["color", "#999999"], ["marginBottom", "24rpx"], ["textAlign", "center"]]))], ["stat-value", _pS(_uM([["fontSize", "40rpx"], ["fontWeight", "bold"], ["color", "#333333"], ["textAlign", "center"]]))], ["stat-divider", _pS(_uM([["width", "2rpx"], ["backgroundColor", "#EEEEEE"], ["marginTop", 0], ["marginRight", "16rpx"], ["marginBottom", 0], ["marginLeft", "16rpx"]]))], ["func-grid", _pS(_uM([["display", "flex"], ["justifyContent", "space-around"], ["backgroundColor", "#FFFFFF"], ["marginBottom", "32rpx"], ["borderTopLeftRadius", "24rpx"], ["borderTopRightRadius", "24rpx"], ["borderBottomRightRadius", "24rpx"], ["borderBottomLeftRadius", "24rpx"], ["paddingTop", "32rpx"], ["paddingRight", 0], ["paddingBottom", "32rpx"], ["paddingLeft", 0], ["boxShadow", "0 4rpx 16rpx rgba(0, 0, 0, 0.05)"], ["flexDirection", "row"]]))], ["func-item", _pS(_uM([["display", "flex"], ["flexDirection", "column"], ["alignItems", "center"]]))], ["func-label", _pS(_uM([["fontSize", "24rpx"], ["color", "#666666"], ["marginTop", "16rpx"]]))], ["data-section", _pS(_uM([["backgroundColor", "#FFFFFF"], ["marginBottom", "32rpx"], ["borderTopLeftRadius", "24rpx"], ["borderTopRightRadius", "24rpx"], ["borderBottomRightRadius", "24rpx"], ["borderBottomLeftRadius", "24rpx"], ["paddingTop", "32rpx"], ["paddingRight", "32rpx"], ["paddingBottom", "32rpx"], ["paddingLeft", "32rpx"], ["boxShadow", "0 4rpx 16rpx rgba(0, 0, 0, 0.05)"]]))], ["section-header", _pS(_uM([["justifyContent", "space-between"], ["alignItems", "center"], ["marginBottom", "32rpx"], ["flexDirection", "row"]]))], ["section-title", _pS(_uM([["fontSize", "32rpx"], ["fontWeight", "400"], ["color", "#333333"]]))], ["section-more", _pS(_uM([["fontSize", "26rpx"], ["color", "#999999"]]))], ["data-grid", _pS(_uM([["justifyContent", "space-between"], ["flexDirection", "row"]]))], ["data-item", _pS(_uM([["textAlign", "center"]]))], ["data-value", _pS(_uM([["fontSize", "36rpx"], ["fontWeight", "bold"], ["color", "#333333"], ["marginBottom", "8rpx"]]))], ["data-label", _pS(_uM([["fontSize", "24rpx"], ["color", "#999999"]]))], ["eval-section", _pS(_uM([["backgroundColor", "#FFFFFF"], ["marginBottom", "32rpx"], ["borderTopLeftRadius", "24rpx"], ["borderTopRightRadius", "24rpx"], ["borderBottomRightRadius", "24rpx"], ["borderBottomLeftRadius", "24rpx"], ["paddingTop", "32rpx"], ["paddingRight", "32rpx"], ["paddingBottom", "32rpx"], ["paddingLeft", "32rpx"], ["boxShadow", "0 4rpx 16rpx rgba(0, 0, 0, 0.05)"]]))], ["eval-tags", _pS(_uM([["display", "flex"], ["flexDirection", "row"], ["marginBottom", "32rpx"]]))], ["eval-tag", _pS(_uM([["fontSize", "24rpx"], ["paddingTop", "8rpx"], ["paddingRight", "24rpx"], ["paddingBottom", "8rpx"], ["paddingLeft", "24rpx"], ["backgroundColor", "#F5F5F5"], ["borderTopLeftRadius", "24rpx"], ["borderTopRightRadius", "24rpx"], ["borderBottomRightRadius", "24rpx"], ["borderBottomLeftRadius", "24rpx"]]))], ["eval-item", _pS(_uM([["flexDirection", "row"]]))], ["eval-avatar", _pS(_uM([["width", "80rpx"], ["height", "80rpx"], ["borderTopLeftRadius", "40rpx"], ["borderTopRightRadius", "40rpx"], ["borderBottomRightRadius", "40rpx"], ["borderBottomLeftRadius", "40rpx"]]))], ["eval-content", _pS(_uM([["flexGrow", 1], ["flexShrink", 1], ["flexBasis", "0%"]]))], ["eval-top", _pS(_uM([["justifyContent", "space-between"], ["marginBottom", "8rpx"], ["flexDirection", "row"]]))], ["eval-name", _pS(_uM([["fontWeight", "400"], ["color", "#333333"]]))], ["eval-date", _pS(_uM([["fontSize", "24rpx"], ["color", "#999999"]]))], ["eval-stars", _pS(_uM([["fontSize", "24rpx"], ["color", "#FFD740"], ["marginBottom", "8rpx"], ["flexDirection", "row"]]))], ["eval-service", _pS(_uM([["color", "#999999"], ["marginLeft", "16rpx"], ["fontSize", "28rpx"]]))], ["eval-comment", _pS(_uM([["fontSize", "26rpx"], ["color", "#333333"]]))]])];
  265. //# sourceMappingURL=console.uvue.map