├── App.vue
├── README.md
├── components
├── chatinput.vue
└── messageshow.vue
├── main.js
├── manifest.json
├── pages.json
├── pages
├── report
│ └── feedback.vue
└── user
│ └── mine.vue
├── static
├── img
│ ├── tab_01_c.png
│ ├── tab_01_d.png
│ ├── tab_02_c.png
│ └── tab_02_d.png
└── logo.png
├── uni.scss
└── unpackage
├── dist
├── build
│ └── app-plus
│ │ ├── .temp
│ │ ├── app.js
│ │ ├── app.json
│ │ ├── app.wxss
│ │ ├── common
│ │ │ ├── manifest.js
│ │ │ └── vendor.js
│ │ ├── components
│ │ │ ├── chatinput.vue.wxml
│ │ │ ├── messageshow.vue.wxml
│ │ │ └── slots.wxml
│ │ ├── manifest.json
│ │ ├── pages
│ │ │ ├── report
│ │ │ │ ├── feedback.js
│ │ │ │ ├── feedback.json
│ │ │ │ ├── feedback.vue.wxml
│ │ │ │ ├── feedback.wxml
│ │ │ │ └── feedback.wxss
│ │ │ └── user
│ │ │ │ ├── mine.js
│ │ │ │ ├── mine.json
│ │ │ │ ├── mine.vue.wxml
│ │ │ │ ├── mine.wxml
│ │ │ │ └── mine.wxss
│ │ └── static
│ │ │ ├── img
│ │ │ ├── tab_01_c.png
│ │ │ ├── tab_01_d.png
│ │ │ ├── tab_02_c.png
│ │ │ └── tab_02_d.png
│ │ │ └── logo.png
│ │ └── FeedBackStar
│ │ ├── __uniappchooselocation.html
│ │ ├── __uniappcoverview.html
│ │ ├── __uniappmap.html
│ │ ├── __uniappmarker@3x.png
│ │ ├── __uniappopenlocation.html
│ │ ├── __uniappscan.html
│ │ ├── __uniappservice.html
│ │ ├── __uniappsuccess.png
│ │ ├── __uniappview.html
│ │ ├── app-service.js
│ │ ├── app-view.js
│ │ ├── manifest.json
│ │ ├── pages
│ │ ├── report
│ │ │ └── feedback.js
│ │ └── user
│ │ │ └── mine.js
│ │ └── static
│ │ ├── img
│ │ ├── tab_01_c.png
│ │ ├── tab_01_d.png
│ │ ├── tab_02_c.png
│ │ └── tab_02_d.png
│ │ └── logo.png
└── dev
│ ├── .sourcemap
│ └── mp-weixin
│ │ ├── app.js.map
│ │ ├── common
│ │ ├── manifest.js.map
│ │ └── vendor.js.map
│ │ └── pages
│ │ ├── index
│ │ └── index.js.map
│ │ ├── report
│ │ └── feedback.js.map
│ │ └── user
│ │ ├── mine.js.map
│ │ └── my.js.map
│ ├── app-plus
│ ├── .temp
│ │ ├── app.js
│ │ ├── app.json
│ │ ├── app.wxss
│ │ ├── common
│ │ │ ├── manifest.js
│ │ │ └── vendor.js
│ │ ├── components
│ │ │ ├── chatinput.vue.wxml
│ │ │ ├── messageshow.vue.wxml
│ │ │ └── slots.wxml
│ │ ├── manifest.json
│ │ ├── pages
│ │ │ ├── report
│ │ │ │ ├── feedback.js
│ │ │ │ ├── feedback.json
│ │ │ │ ├── feedback.vue.wxml
│ │ │ │ ├── feedback.wxml
│ │ │ │ └── feedback.wxss
│ │ │ └── user
│ │ │ │ ├── mine.js
│ │ │ │ ├── mine.json
│ │ │ │ ├── mine.vue.wxml
│ │ │ │ ├── mine.wxml
│ │ │ │ └── mine.wxss
│ │ └── static
│ │ │ ├── img
│ │ │ ├── tab_01_c.png
│ │ │ ├── tab_01_d.png
│ │ │ ├── tab_02_c.png
│ │ │ └── tab_02_d.png
│ │ │ └── logo.png
│ └── FeedBackStar
│ │ ├── __uniappchooselocation.html
│ │ ├── __uniappcoverview.html
│ │ ├── __uniappmap.html
│ │ ├── __uniappmarker@3x.png
│ │ ├── __uniappopenlocation.html
│ │ ├── __uniappscan.html
│ │ ├── __uniappservice.html
│ │ ├── __uniappsuccess.png
│ │ ├── __uniappview.html
│ │ ├── app-service.js
│ │ ├── app-view.js
│ │ ├── manifest.json
│ │ ├── pages
│ │ ├── report
│ │ │ └── feedback.js
│ │ └── user
│ │ │ └── mine.js
│ │ └── static
│ │ ├── img
│ │ ├── tab_01_c.png
│ │ ├── tab_01_d.png
│ │ ├── tab_02_c.png
│ │ └── tab_02_d.png
│ │ └── logo.png
│ └── mp-weixin
│ ├── app.js
│ ├── app.json
│ ├── app.wxss
│ ├── common
│ ├── manifest.js
│ └── vendor.js
│ ├── components
│ ├── chatinput.vue.wxml
│ ├── messageshow.vue.wxml
│ └── slots.wxml
│ ├── pages
│ ├── report
│ │ ├── feedback.js
│ │ ├── feedback.json
│ │ ├── feedback.vue.wxml
│ │ ├── feedback.wxml
│ │ └── feedback.wxss
│ └── user
│ │ ├── mine.js
│ │ ├── mine.json
│ │ ├── mine.vue.wxml
│ │ ├── mine.wxml
│ │ ├── mine.wxss
│ │ ├── my.js
│ │ ├── my.json
│ │ ├── my.vue.wxml
│ │ ├── my.wxml
│ │ └── my.wxss
│ ├── project.config.json
│ └── static
│ ├── img
│ ├── feedback(1).png
│ ├── feedback(2).png
│ ├── feedback(3).png
│ ├── img_tab_01_c.png
│ ├── img_tab_01_d.png
│ ├── tab_01_c.png
│ ├── tab_01_d.png
│ ├── tab_02_c.png
│ ├── tab_02_d.png
│ ├── ybb_feedback(1).png
│ └── ybb_feedback.png
│ └── logo.png
└── resources
└── __UNI__5270176
└── www
├── __uniappchooselocation.html
├── __uniappcoverview.html
├── __uniappmap.html
├── __uniappmarker@3x.png
├── __uniappopenlocation.html
├── __uniappscan.html
├── __uniappservice.html
├── __uniappsuccess.png
├── __uniappview.html
├── app-service.js
├── app-view.js
├── manifest.json
├── pages
├── report
│ └── feedback.js
└── user
│ └── mine.js
└── static
├── img
├── tab_01_c.png
├── tab_01_d.png
├── tab_02_c.png
└── tab_02_d.png
└── logo.png
/App.vue:
--------------------------------------------------------------------------------
1 |
14 |
15 |
18 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 本文内容整理自[uni-app官方教程](https://uniapp.dcloud.io/)。
2 |
3 | [uni-app](https://uniapp.dcloud.io/)是一个使用Vue.js开发跨平台应用的前端框架,开发者编写一套代码,可编译到iOS、Android、H5、小程序等多个平台。
4 |
5 | uni-app框架由[Dcloud](https://www.dcloud.io/)即数字天堂(北京)网络技术有限公司推出,该公司主要产品有Web开发IDE Hbuiler、HbuilderX,前端框架mui、uni-app,增强版的手机浏览器引擎H5plus等。
6 |
7 | 
8 |
9 | ### 一、环境搭建
10 | 使用 `HBuilderX`可视化界面快速创建项目,HBuilderX内置处理了相关环境依赖。
11 |
12 | HBuilderX:IDE。[最新版本下载地址](http://www.dcloud.io/hbuilderx.html)
13 | 微信开发者工具:调试预览工具。[最新版本下载地址](https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html)
14 |
15 |
16 | ### 二、创建uni-app项目
17 |
18 | 点击工具栏里的文件 -> 新建 -> 项目:
19 |
20 | 
21 |
22 | 选择uni-app,输入工程名,如:hello-uniapp,点击创建,即可成功创建 uni-app。点击模板里的 Hello uni-app 即可体验官方示例。
23 |
24 | 
25 |
26 |
27 |
28 | ### [三、运行uni-app](https://uniapp.dcloud.io/quickstart?id=%e8%bf%90%e8%a1%8cuni-app)
29 |
30 | 1. 真机运行:连接手机,开启USB调试,进入hello-uniapp项目,点击工具栏的运行 -> 真机运行 -> 选择运行的设备,即可在该设备里面体验uni-app。
31 |
32 | 
33 |
34 | 2. 浏览器运行:进入hello-uniapp项目,点击工具栏的运行 -> 运行到浏览器 -> 选择浏览器,即可在浏览器里面体验uni-app 的 H5 版。
35 |
36 | 
37 |
38 | 3. 在微信开发者工具里运行:进入hello-uniapp项目,点击工具栏的运行 -> 运行到小程序模拟器 -> 微信开发者工具,即可在微信开发者工具里面体验uni-app。
39 |
40 | 
41 |
42 | ### [四、uni-app调试](https://uniapp.dcloud.io/snippet?id=%e4%bd%bf%e7%94%a8-chrome-%e8%b0%83%e8%af%95)
43 | #### [1.使用 Chrome 调试](https://uniapp.dcloud.io/snippet?id=%e4%bd%bf%e7%94%a8-chrome-%e8%b0%83%e8%af%95)
44 |
45 | 进入 `uni-app` 项目,点击工具栏的运行 -> 运行到浏览器 -> 选择 Chrome,即可将 uni-app运行到 浏览器,可参考 [运行uni-app](https://uniapp.dcloud.io/quickstart?id=%e8%bf%90%e8%a1%8cuni-app),运行到浏览器后,就能和普通 web 项目一样进行预览和调试了。
46 |
47 | **注意**:Chrome调试只能保证样式一致,部分原生能力是不支持的。
48 |
49 | 点 Chrome 控制台的 Sources 栏,可以给 js 打断点调试。
50 |
51 | 在 Page 下找到 webpack 里的工程目录,可直接找到对应的vue页面进行断点调试;或按 Ctrl+P搜文件名,进入页面调试;也可点击控制台的 log 信息,进入对应的页面进行调试。
52 |
53 | 
54 |
55 | 
56 |
57 | #### [2.使用微信web开发者工具调试](https://uniapp.dcloud.io/snippet?id=%e4%bd%bf%e7%94%a8%e5%be%ae%e4%bf%a1web%e5%bc%80%e5%8f%91%e8%80%85%e5%b7%a5%e5%85%b7%e8%b0%83%e8%af%95)
58 |
59 | `uni-app` 运行到微信web开发者工具,可在控制台查看 `console` 信息,网络请求等信息等。
60 |
61 | **注意**:开发App或微信小程序均可使用微信开发者工具进行调试。
62 |
63 | 页面样式调试和一般的web项目一样,通过调试的箭头选中元素即可查看相应的节点和样式,如下图:
64 |
65 | 
66 |
67 | 调试 js 时需要切换到 Sources 栏,选中想要调试的那个页面的js,进行调试(如果js代码是压缩过的,点击右下角的{}可格式化代码),如下图:
68 |
69 | 
70 |
71 | ### [五、发布 uni-app](https://uniapp.dcloud.io/quickstart?id=%e5%8f%91%e5%b8%83-uni-app)
72 |
73 | #### [1.打包为原生App(云端)](https://uniapp.dcloud.io/quickstart?id=%e6%89%93%e5%8c%85%e4%b8%ba%e5%8e%9f%e7%94%9fapp%ef%bc%88%e4%ba%91%e7%ab%af%ef%bc%89)
74 |
75 | 在HBuilderX工具栏,点击发行,选择原生app-云端打包,如下图:
76 |
77 | 
78 |
79 | 出现如下界面,点击打包即可。
80 |
81 | 
82 |
83 | #### [2.打包为原生App(离线)](https://uniapp.dcloud.io/quickstart?id=%e6%89%93%e5%8c%85%e4%b8%ba%e5%8e%9f%e7%94%9fapp%ef%bc%88%e7%a6%bb%e7%ba%bf%ef%bc%89)
84 |
85 | `uni-app` 支持离线打包,在 HBuilderX 生成离线打包资源,然后参考 [离线打包](http://ask.dcloud.net.cn/docs/#//ask.dcloud.net.cn/article/104)(或参考其他用户写的 [离线打包日记](https://ask.dcloud.net.cn/article/35302)),即可进行离线打包。
86 |
87 | 在HBuilderX工具栏,点击发行,选择本地打包,如下图,点击即可生成离线打包资源。
88 |
89 | 
90 |
91 | #### [3.发布为H5](https://uniapp.dcloud.io/quickstart?id=%e5%8f%91%e5%b8%83%e4%b8%bah5)
92 |
93 | 1. 在 `manifest.json` 配置发行后的路径(发行在网站根目录可不配置),比如发行网站路径是 www.xxx.com/html5,在 `manifest.json` 文件内编辑 `h5` 节点,`router` 下增加 `base` 属性为 html5,如下图所示:
94 |
95 | 
96 |
97 | 2. 在HBuilderX工具栏,点击发行,选择网站-H5手机版,如下图,点击即可生成 H5 的相关资源文件,保存于 unpackage 目录。
98 |
99 | 
100 |
101 | #### [4.发布微信小程序](https://uniapp.dcloud.io/quickstart?id=%e5%8f%91%e5%b8%83%e5%be%ae%e4%bf%a1%e5%b0%8f%e7%a8%8b%e5%ba%8f)
102 |
103 | 按照如下步骤可将 `uni-app` 发布到微信小程序:
104 |
105 | 1. 申请微信小程序AppID,参考[微信教程](https://developers.weixin.qq.com/miniprogram/dev/#申请帐号)
106 | 2. 在HBuiderX中,打开manifest.json,如下图所示配置小程序AppID
107 |
108 | 
109 |
110 | 3. 在HBuilderX中顶部菜单依次点击 "运行" --> "运行到小程序模拟器" --> "微信开发者工具",等待 `uni-app` 项目成功编译并自动启动微信开发者工具
111 |
112 | 4. 在微信开发者工具中,测试项目代码运行正常后,点击"上传"按钮,之后按照 "提交审核"--> "发布" 小程序标准流程,逐步操作即可,详细查看[微信官方教程](https://developers.weixin.qq.com/miniprogram/dev/quickstart/basic/release.html)
113 |
114 | ### 六、项目代码
115 | 反馈星是使用uniapp开发的上报工具类项目。
116 | 发送文字、图片、音频、视频内容,您将获得意想不到的反馈。
117 |
118 | Github下载:https://github.com/XieXiePro/FeedBackStar
119 |
120 |
--------------------------------------------------------------------------------
/components/chatinput.vue:
--------------------------------------------------------------------------------
1 |
2 |
13 |
14 |
15 |
54 |
55 |
101 |
--------------------------------------------------------------------------------
/components/messageshow.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | {{message.content}}
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
22 |
23 |
93 |
--------------------------------------------------------------------------------
/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './App'
3 |
4 | Vue.config.productionTip = false
5 |
6 | App.mpType = 'app'
7 |
8 | const app = new Vue({
9 | ...App
10 | })
11 | app.$mount()
12 |
--------------------------------------------------------------------------------
/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name" : "FeedBackStar",
3 | "appid" : "__UNI__5270176",
4 | "description" : "",
5 | "versionName" : "1.0.0",
6 | "versionCode" : "100",
7 | "transformPx" : false,
8 | "app-plus" : {
9 | /* 5+App特有相关 */
10 | "modules" : {},
11 | /* 模块配置 */
12 | "distribute" : {
13 | /* 应用发布信息 */
14 | "android" : {
15 | /* android打包配置 */
16 | "permissions" : [
17 | "",
18 | "",
19 | "",
20 | "",
21 | "",
22 | "",
23 | "",
24 | "",
25 | "",
26 | "",
27 | "",
28 | "",
29 | "",
30 | "",
31 | "",
32 | "",
33 | "",
34 | "",
35 | "",
36 | "",
37 | "",
38 | "",
39 | "",
40 | "",
41 | ""
42 | ]
43 | },
44 | "ios" : {},
45 | /* ios打包配置 */
46 | "sdkConfigs" : {}
47 | }
48 | },
49 | /* SDK配置 */
50 | "quickapp" : {},
51 | /* 快应用特有相关 */
52 | "mp-weixin" : {
53 | /* 小程序特有相关 */
54 | "appid" : "",
55 | "setting" : {
56 | "urlCheck" : true
57 | }
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/pages.json:
--------------------------------------------------------------------------------
1 | {
2 | "pages": [
3 | //pages数组中第一项表示应用启动页,
4 | {
5 | "path": "pages/user/mine",
6 | "style": {
7 | "navigationBarTitleText": "聊天"
8 | }
9 | },{
10 | "path": "pages/report/feedback",
11 | "style": {
12 | "navigationBarTitleText": "反馈"
13 | }
14 | }
15 | ],
16 | "tabBar": {
17 | "color": "#666666",
18 | "selectedColor": "#1b6edd",
19 | "backgroundColor": "#ffffff",
20 | "list": [{
21 | "pagePath": "pages/user/mine",
22 | "text": "聊天",
23 | "iconPath": "static/img/tab_02_d.png",
24 | "selectedIconPath": "static/img/tab_02_c.png"
25 | },{
26 | "pagePath": "pages/report/feedback",
27 | "text": "反馈",
28 | "iconPath": "static/img/tab_01_d.png",
29 | "selectedIconPath": "static/img/tab_01_c.png"
30 | }]
31 | },
32 | "globalStyle": {
33 | "navigationBarTextStyle": "white",
34 | "navigationBarBackgroundColor": "#1b6edd",
35 | "backgroundColor": "#F5F5F5"
36 | }
37 | }
--------------------------------------------------------------------------------
/pages/report/feedback.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 快速键入
6 |
7 |
8 |
9 |
10 |
11 | 图片(选填,提供问题截图,总大小10M以下)
12 |
13 |
14 |
15 |
16 | 点击预览图片
17 | {{imageList.length}}/9
18 |
19 |
20 |
21 |
22 |
23 |
24 | x
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
38 |
39 |
40 |
41 |
129 |
130 |
--------------------------------------------------------------------------------
/pages/user/mine.vue:
--------------------------------------------------------------------------------
1 |
92 |
93 |
94 |
95 |
97 |
98 |
99 |
100 |
101 |
104 |
105 |
106 |
107 |
--------------------------------------------------------------------------------
/static/img/tab_01_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/static/img/tab_01_c.png
--------------------------------------------------------------------------------
/static/img/tab_01_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/static/img/tab_01_d.png
--------------------------------------------------------------------------------
/static/img/tab_02_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/static/img/tab_02_c.png
--------------------------------------------------------------------------------
/static/img/tab_02_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/static/img/tab_02_d.png
--------------------------------------------------------------------------------
/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/static/logo.png
--------------------------------------------------------------------------------
/uni.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * 这里是uni-app内置的常用样式变量
3 | *
4 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
5 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
6 | *
7 | */
8 |
9 | /**
10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
11 | *
12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
13 | */
14 |
15 | /* 颜色变量 */
16 |
17 | /* 行为相关颜色 */
18 | $uni-color-primary: #007aff;
19 | $uni-color-success: #4cd964;
20 | $uni-color-warning: #f0ad4e;
21 | $uni-color-error: #dd524d;
22 |
23 | /* 文字基本颜色 */
24 | $uni-text-color:#333;//基本色
25 | $uni-text-color-inverse:#fff;//反色
26 | $uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
27 | $uni-text-color-placeholder: #808080;
28 | $uni-text-color-disable:#c0c0c0;
29 |
30 | /* 背景颜色 */
31 | $uni-bg-color:#ffffff;
32 | $uni-bg-color-grey:#f8f8f8;
33 | $uni-bg-color-hover:#f1f1f1;//点击状态颜色
34 | $uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
35 |
36 | /* 边框颜色 */
37 | $uni-border-color:#c8c7cc;
38 |
39 | /* 尺寸变量 */
40 |
41 | /* 文字尺寸 */
42 | $uni-font-size-sm:24upx;
43 | $uni-font-size-base:28upx;
44 | $uni-font-size-lg:32upx;
45 |
46 | /* 图片尺寸 */
47 | $uni-img-size-sm:40upx;
48 | $uni-img-size-base:52upx;
49 | $uni-img-size-lg:80upx;
50 |
51 | /* Border Radius */
52 | $uni-border-radius-sm: 4upx;
53 | $uni-border-radius-base: 6upx;
54 | $uni-border-radius-lg: 12upx;
55 | $uni-border-radius-circle: 50%;
56 |
57 | /* 水平间距 */
58 | $uni-spacing-row-sm: 10px;
59 | $uni-spacing-row-base: 20upx;
60 | $uni-spacing-row-lg: 30upx;
61 |
62 | /* 垂直间距 */
63 | $uni-spacing-col-sm: 8upx;
64 | $uni-spacing-col-base: 16upx;
65 | $uni-spacing-col-lg: 24upx;
66 |
67 | /* 透明度 */
68 | $uni-opacity-disabled: 0.3; // 组件禁用态的透明度
69 |
70 | /* 文章场景相关 */
71 | $uni-color-title: #2C405A; // 文章标题颜色
72 | $uni-font-size-title:40upx;
73 | $uni-color-subtitle: #555555; // 二级标题颜色
74 | $uni-font-size-subtitle:36upx;
75 | $uni-color-paragraph: #3F536E; // 文章段落颜色
76 | $uni-font-size-paragraph:30upx;
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/app.js:
--------------------------------------------------------------------------------
1 | require("common/manifest.js");
2 | require("common/vendor.js");
3 | global.webpackJsonp([3],[,,,,function(n,e,o){"use strict";var t=Object.assign||function(n){for(var e=1;e
2 |
13 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/components/messageshow.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | {{message.content}}
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/components/slots.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name" : "FeedBackStar",
3 | "appid" : "__UNI__5270176",
4 | "description" : "",
5 | "versionName" : "1.0.0",
6 | "versionCode" : "100",
7 | "transformPx" : false,
8 | "app-plus" : {
9 | /* 5+App特有相关 */
10 | "modules" : {},
11 | /* 模块配置 */
12 | "distribute" : {
13 | /* 应用发布信息 */
14 | "android" : {
15 | /* android打包配置 */
16 | "permissions" : [
17 | "",
18 | "",
19 | "",
20 | "",
21 | "",
22 | "",
23 | "",
24 | "",
25 | "",
26 | "",
27 | "",
28 | "",
29 | "",
30 | "",
31 | "",
32 | "",
33 | "",
34 | "",
35 | "",
36 | "",
37 | "",
38 | "",
39 | "",
40 | "",
41 | ""
42 | ]
43 | },
44 | "ios" : {},
45 | /* ios打包配置 */
46 | "sdkConfigs" : {}
47 | }
48 | },
49 | /* SDK配置 */
50 | "quickapp" : {},
51 | /* 快应用特有相关 */
52 | "mp-weixin" : {
53 | /* 小程序特有相关 */
54 | "appid" : "",
55 | "setting" : {
56 | "urlCheck" : true
57 | }
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/report/feedback.js:
--------------------------------------------------------------------------------
1 | require("../../common/manifest.js");
2 | require("../../common/vendor.js");
3 | global.webpackJsonp([2],{23:function(e,t,s){"use strict";var a=n(s(2)),i=n(s(24));function n(e){return e&&e.__esModule?e:{default:e}}Page((0,a.default)(i.default))},24:function(e,t,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=s(26),i=s.n(a),n=s(27);var o=function(e){s(25)},c=s(0)(i.a,n.a,o,null,null);t.default=c.exports},25:function(e,t){},26:function(e,t,s){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{msgContents:["高兴","一般般","难过","崩溃"],stars:[1,2,3,4,5],imageList:[],sendDate:{score:0,content:"",contact:""}}},onLoad:function(){},methods:{close:function(e){this.imageList.splice(e,1)},chooseMsg:function(){var t=this;e.showActionSheet({itemList:this.msgContents,success:function(e){t.sendDate.content=t.msgContents[e.tapIndex]}})},chooseImg:function(){var t=this;e.chooseImage({sourceType:["camera","album"],sizeType:["compressed","original"],count:9-this.imageList.length,success:function(e){t.imageList=t.imageList.concat(e.tempFilePaths)}})},chooseStar:function(e){this.sendDate.score=e},previewImage:function(){e.previewImage({urls:this.imageList})},send:function(){e.requireNativePlugin("DCloud-RichAlert").show({position:"bottom",title:"提示信息",titleColor:"#FF0000",content:"uni-app 是一个使用 Vue.js 开发跨平台应用的前端框架!\n免费的\n免费的\n免费的\n重要的事情说三遍",contentAlign:"left",checkBox:{title:"不再提示",isSelected:!0},buttons:[{title:"退下"},{title:"明白",titleColor:"#3F51B5"}]},function(e){switch(e.type){case"button":console.log("callback---button--"+e.index);break;case"checkBox":console.log("callback---checkBox--"+e.isSelected);break;case"a":console.log("callback---a--"+JSON.stringify(e));break;case"backCancel":console.log("callback---backCancel--")}})}}}}).call(t,s(3).default)},27:function(e,t,s){"use strict";var a={render:function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("view",{staticClass:"page"},[s("view",{staticClass:"feedback-title"},[s("text",{staticClass:"feedback-quick",attrs:{eventid:"RCC-0"},on:{tap:e.chooseMsg}},[e._v("快速键入")])]),s("view",{staticClass:"feedback-body"},[s("textarea",{directives:[{name:"model",rawName:"v-model",value:e.sendDate.content,expression:"sendDate.content"}],staticClass:"feedback-textare",attrs:{placeholder:"请随便写点什么吧...",eventid:"CSE-1"},domProps:{value:e.sendDate.content},on:{input:function(t){t.target.composing||(e.sendDate.content=t.target.value)}}})]),e._m(0),s("view",{staticClass:"feedback-body feedback-uploader"},[s("view",{staticClass:"uni-uploader"},[s("view",{staticClass:"uni-uploader-head"},[s("view",{staticClass:"uni-uploader-title"},[e._v("点击预览图片")]),s("view",{staticClass:"uni-uploader-info"},[e._v(e._s(e.imageList.length)+"/9")])]),s("view",{staticClass:"uni-uploader-body"},[s("view",{staticClass:"uni-uploader__files"},[e._l(e.imageList,function(t,a){return s("block",{key:a},[s("view",{staticClass:"uni-uploader__file",staticStyle:{position:"relative"}},[s("image",{staticClass:"uni-uploader__img",attrs:{src:t,eventid:"7Vy-2-"+a},on:{tap:e.previewImage}}),s("view",{staticClass:"close-view",attrs:{eventid:"gxN-3-"+a},on:{click:function(t){e.close(a)}}},[e._v("x")])])])}),s("view",{directives:[{name:"show",rawName:"v-show",value:e.imageList.length<9,expression:"imageList.length < 9"}],staticClass:"uni-uploader__input-box"},[s("view",{staticClass:"uni-uploader__input",attrs:{eventid:"n57-4"},on:{tap:e.chooseImg}})])],2)])])]),s("view",{staticClass:"foot"},[s("button",{attrs:{type:"default",eventid:"9ye-5"},on:{click:function(t){e.send()}}},[e._v("反馈")])],1)])},staticRenderFns:[function(){var e=this.$createElement,t=this._self._c||e;return t("view",{staticClass:"feedback-title"},[t("text",[this._v("图片(选填,提供问题截图,总大小10M以下)")])])}]};t.a=a}},[23]);
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/report/feedback.json:
--------------------------------------------------------------------------------
1 | {"navigationBarTitleText":"反馈"}
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/report/feedback.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 快速键入
5 |
6 |
7 |
8 |
9 |
10 | 图片(选填,提供问题截图,总大小10M以下)
11 |
12 |
13 |
14 |
15 | 点击预览图片
16 | {{imageList.length}}/9
17 |
18 |
19 |
20 |
21 |
22 |
23 | x
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
36 |
37 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/report/feedback.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/report/feedback.wxss:
--------------------------------------------------------------------------------
1 | @font-face{font-family:uniicons;font-weight:400;font-style:normal;src:url("https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf") format("truetype")}.page{background-color:#efeff4;padding:10rpx;width:100%;height:100%}.input-view,view{font-size:28rpx}.close-view{text-align:center;line-height:14px;height:16px;width:16px;border-radius:50%;background:#ff5053;color:#fff;position:absolute;top:-6px;right:-4px;font-size:12px}.uni-uploader{-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.uni-uploader-head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.uni-uploader-info{color:#b2b2b2}.uni-uploader-body{margin-top:16rpx}.uni-uploader__files{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uni-uploader__file{margin:10rpx;width:210rpx;height:210rpx}.uni-uploader__img{display:block;width:210rpx;height:210rpx}.uni-uploader__input-box{position:relative;margin:10rpx;width:208rpx;height:208rpx;border:2rpx solid #d9d9d9}.uni-uploader__input-box:after,.uni-uploader__input-box:before{content:" ";position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#d9d9d9}.uni-uploader__input-box:before{width:4rpx;height:79rpx}.uni-uploader__input-box:after{width:79rpx;height:4rpx}.uni-uploader__input-box:active{border-color:#999}.uni-uploader__input-box:active:after,.uni-uploader__input-box:active:before{background-color:#999}.uni-uploader__input{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;opacity:0}.feedback-title{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:10rpx;color:#8f8f94;font-size:28rpx}.feedback-star-view.feedback-title{-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;margin:0}.feedback-quick{position:relative;padding-right:40rpx}.feedback-quick:after{font-family:uniicons;font-size:40rpx;content:"\E581";position:absolute;right:0;top:50%;color:#bbb;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.feedback-body{background:#fff}.feedback-textare{height:200rpx;font-size:34rpx;line-height:50rpx;width:100%;box-sizing:border-box;padding:20rpx 30rpx 0}.feedback-input{font-size:34rpx;height:50rpx;min-height:50rpx;padding:15rpx 10rpx;line-height:50rpx}.foot{position:fixed;width:100%;height:90px;min-height:90px;left:0;bottom:0;overflow:hidden}
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/user/mine.js:
--------------------------------------------------------------------------------
1 | require("../../common/manifest.js");
2 | require("../../common/vendor.js");
3 | global.webpackJsonp([0],[,,,,,,,,,,function(t,e,s){"use strict";var n=a(s(2)),i=a(s(11));function a(t){return t&&t.__esModule?t:{default:t}}Page((0,n.default)(i.default))},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=s(13),i=s.n(n),a=s(22);var o=function(t){s(12)},c=s(0)(i.a,a.a,o,null,null);e.default=c.exports},function(t,e){},function(t,e,s){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0});var n=a(s(14)),i=a(s(18));function a(t){return t&&t.__esModule?t:{default:t}}e.default={data:function(){return{style:{pageHeight:0,contentViewHeight:0,footViewHeight:90,mitemHeight:0},scrollTop:0,messages:[{user:"home",type:"head",content:"你好!"}]}},components:{chatInput:n.default,messageShow:i.default},created:function(){var e=t.getSystemInfoSync();this.style.pageHeight=e.windowHeight,this.style.contentViewHeight=e.windowHeight-t.getSystemInfoSync().screenWidth/750*100},methods:{getInputMessage:function(t){this.addMessage("customer",t.content,!1),this.toRobot(t.content)},addMessage:function(t,e,s,n){this.messages.push({user:t,content:e,hasSub:s,subcontent:n})},scrollToBottom:function(){var e=this,s=t.createSelectorQuery();s.selectAll(".m-item").boundingClientRect(),s.select("#scrollview").boundingClientRect(),s.exec(function(t){e.style.mitemHeight=0,t[0].forEach(function(t){e.style.mitemHeight=e.style.mitemHeight+t.height+20}),e.style.mitemHeight>e.style.contentViewHeight&&(e.scrollTop=e.style.mitemHeight-e.style.contentViewHeight)})},toRobot:function(e){var s=this;t.request({url:"http://www.tuling123.com/openapi/api",data:{key:"0f35e44683794241b5fb0d61bf09713e",info:e,userid:"uni-test"},success:function(t){s.addMessage("home",t.data.text,!1),s.scrollToBottom(),console.log("request success:"+t.data.text)},fail:function(e){console.log("request fail",e),t.showModal({content:e.errMsg,showCancel:!1})}})}}}}).call(e,s(3).default)},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=s(16),i=s.n(n),a=s(17);var o=function(t){s(15)},c=s(0)(i.a,a.a,o,null,null);e.default=c.exports},function(t,e){},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"chat-input",data:function(){return{inputValue:""}},methods:{startRecognize:function(){var t={},e=this;t.engine="iFly",e.inputValue="",plus.speech.startRecognize(t,function(t){console.log(t),e.inputValue+=t},function(t){console.log("语音识别失败:"+t.message)})},sendMessge:function(){""==this.inputValue.trim()?this.inputValue="":(this.$emit("send-message",{type:"text",content:this.inputValue}),this.inputValue="")}}}},function(t,e,s){"use strict";var n={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("view",{staticClass:"footer"},[s("view",{staticClass:"footer-left"},[s("view",{staticClass:"uni-icon uni-icon-mic",attrs:{eventid:"WAr-0"},on:{tap:t.startRecognize}})]),s("view",{staticClass:"footer-center"},[s("input",{directives:[{name:"model",rawName:"v-model",value:t.inputValue,expression:"inputValue"}],staticClass:"input-text",attrs:{type:"text",eventid:"CXF-1"},domProps:{value:t.inputValue},on:{input:function(e){e.target.composing||(t.inputValue=e.target.value)}}})]),s("view",{staticClass:"footer-right",attrs:{eventid:"dmU-2"},on:{tap:t.sendMessge}},[s("view",{attrs:{id:"msg-type"}},[t._v("发送")])])])},staticRenderFns:[]};e.a=n},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=s(20),i=s.n(n),a=s(21);var o=function(t){s(19)},c=s(0)(i.a,a.a,o,null,null);e.default=c.exports},function(t,e){},function(t,e,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={props:["message","id"]}},function(t,e,s){"use strict";var n={render:function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("view",{staticClass:"m-item",attrs:{id:"message"+t.id}},[s("view",{staticClass:"m-left"},["home"==t.message.user?s("image",{staticClass:"head_icon",attrs:{src:"https://img-cdn-qiniu.dcloud.net.cn/uniapp/app/homeHL.png"}}):t._e()]),s("view",{staticClass:"m-content"},[s("view",{staticClass:"m-content-head",class:{"m-content-head-right":"customer"==t.message.user}},[s("view",{class:"m-content-head-"+t.message.user},[t._v(t._s(t.message.content)+" ")])])]),s("view",{staticClass:"m-right"},["customer"==t.message.user?s("image",{staticClass:"head_icon",attrs:{src:"https://img-cdn-qiniu.dcloud.net.cn/uniapp/app/customerHL.png"}}):t._e()])])},staticRenderFns:[]};e.a=n},function(t,e,s){"use strict";var n={render:function(){var t=this.$createElement,e=this._self._c||t;return e("view",{staticClass:"uni-column"},[e("view",{staticClass:"content",style:{height:this.style.contentViewHeight+"px"},attrs:{id:"content"}},[e("scroll-view",{style:{height:this.style.contentViewHeight+"px"},attrs:{id:"scrollview","scroll-y":"true","scroll-with-animation":!0,"scroll-top":this.scrollTop}},[this._l(this.messages,function(t,s){return e("message-show",{key:s,attrs:{message:t,id:s,mpcomid:"9CJ-0-"+s}})}),e("view",{attrs:{id:"bottom"}})],2)],1),e("view",{staticClass:"foot"},[e("chat-input",{attrs:{eventid:"m8x-0",mpcomid:"nMY-1"},on:{"send-message":this.getInputMessage}})],1)])},staticRenderFns:[]};e.a=n}],[10]);
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/user/mine.json:
--------------------------------------------------------------------------------
1 | {"navigationBarTitleText":"聊天"}
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/user/mine.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
15 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/user/mine.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/pages/user/mine.wxss:
--------------------------------------------------------------------------------
1 | .uni-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.content,.uni-column{display:-webkit-box;display:-webkit-flex;display:flex}.content{-webkit-box-flex:1;-webkit-flex:1;flex:1;margin-bottom:100px}.foot{position:fixed;width:100%;height:90px;min-height:90px;left:0;bottom:0;overflow:hidden}.footer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;width:100%;height:80rpx;min-height:80rpx;border-top:1px solid #bbb;overflow:hidden;padding:5rpx;background-color:#fafafa}.footer-left{width:80rpx}.footer-left,.footer-right{height:80rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.footer-right{width:120rpx;color:#1482d1}.footer-center{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:80rpx;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.footer-center .input-text{-webkit-box-flex:1;-webkit-flex:1;flex:1;background:#fff;border:1rpx solid #ddd;padding:10rpx!important;font-family:verdana!important;overflow:hidden;border-radius:15rpx}.m-item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;padding-top:40rpx}.m-left{width:120rpx;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.m-content,.m-left{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.m-content{-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;word-break:break-all}.m-right{display:-webkit-box;display:-webkit-flex;display:flex;width:120rpx;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.head_icon{width:80rpx;height:80rpx}.m-content-head{position:relative}.m-content-head-right{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.m-content-head-home{text-align:left;background:#1482d1;border:1px solid #1482d1;border-radius:20rpx;padding:20rpx;color:#fff}.m-content-head-home:before{border:15rpx solid transparent;border-right:15rpx solid #1482d1;left:-26rpx;width:0;height:0;position:absolute;content:" "}.m-content-head-customer{border:1rpx solid #fff;background:#fff;border-radius:20rpx;padding:20rpx}.m-content-head-customer:after{border:15rpx solid transparent;border-left:15rpx solid #fff;top:20rpx;right:-26rpx;width:0;height:0;position:absolute;content:" "}
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/static/img/tab_01_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/.temp/static/img/tab_01_c.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/static/img/tab_01_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/.temp/static/img/tab_01_d.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/static/img/tab_02_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/.temp/static/img/tab_02_c.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/static/img/tab_02_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/.temp/static/img/tab_02_d.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/.temp/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/.temp/static/logo.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/__uniappcoverview.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
281 |
282 |
283 |
284 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/__uniappmarker@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/FeedBackStar/__uniappmarker@3x.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/__uniappscan.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 扫码
8 |
22 |
23 |
24 |
25 |
26 |
27 |
118 |
119 |
120 |
121 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/__uniappsuccess.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/FeedBackStar/__uniappsuccess.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/manifest.json:
--------------------------------------------------------------------------------
1 | {"@platforms":["android","iPhone","iPad"],"id":"__UNI__5270176","name":"FeedBackStar","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappservice.html","developer":{"name":"","email":"","url":""},"permissions":{},"plus":{"useragent":{"value":"uni-app appservice","concatenate":true},"splashscreen":{"autoclose":false,"waiting":true},"popGesture":"close","statusbar":{"immersed":"supportedDevice","style":"light","background":"#1b6edd"},"distribute":{"google":{"permissions":["","","","","","","","","","","","","","","","","","","","","","","","",""]},"apple":{},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}}}}
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/pages/report/feedback.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead(["@font-face{font-family:uniicons;font-weight:400;font-style:normal;src:url(\x22https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf\x22) format(\x22truetype\x22)}\n.",[1],"page{background-color:#efeff4;padding:",[0,10],";width:100%;height:100%}\n.",[1],"input-view,wx-view{font-size:",[0,28],"}\n.",[1],"close-view{text-align:center;line-height:14px;height:16px;width:16px;border-radius:50%;background:#ff5053;color:#fff;position:absolute;top:-6px;right:-4px;font-size:12px}\n.",[1],"uni-uploader{-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}\n.",[1],"uni-uploader-head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}\n.",[1],"uni-uploader-info{color:#b2b2b2}\n.",[1],"uni-uploader-body{margin-top:",[0,16],"}\n.",[1],"uni-uploader__files{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;flex-wrap:wrap}\n.",[1],"uni-uploader__file{margin:",[0,10],";width:",[0,210],";height:",[0,210],"}\n.",[1],"uni-uploader__img{display:block;width:",[0,210],";height:",[0,210],"}\n.",[1],"uni-uploader__input-box{position:relative;margin:",[0,10],";width:",[0,208],";height:",[0,208],";border:",[0,2]," solid #d9d9d9}\n.",[1],"uni-uploader__input-box:after,.",[1],"uni-uploader__input-box:before{content:\x22 \x22;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#d9d9d9}\n.",[1],"uni-uploader__input-box:before{width:",[0,4],";height:",[0,79],"}\n.",[1],"uni-uploader__input-box:after{width:",[0,79],";height:",[0,4],"}\n.",[1],"uni-uploader__input-box:active{border-color:#999}\n.",[1],"uni-uploader__input-box:active:after,.",[1],"uni-uploader__input-box:active:before{background-color:#999}\n.",[1],"uni-uploader__input{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;opacity:0}\n.",[1],"feedback-title{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:",[0,10],";color:#8f8f94;font-size:",[0,28],"}\n.",[1],"feedback-star-view.",[1],"feedback-title{-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;margin:0}\n.",[1],"feedback-quick{position:relative;padding-right:",[0,40],"}\n.",[1],"feedback-quick:after{font-family:uniicons;font-size:",[0,40],";content:\x22\\E581\x22;position:absolute;right:0;top:50%;color:#bbb;-webkit-transform:translateY(-50%);transform:translateY(-50%)}\n.",[1],"feedback-body{background:#fff}\n.",[1],"feedback-textare{height:",[0,200],";font-size:",[0,34],";line-height:",[0,50],";width:100%;box-sizing:border-box;padding:",[0,20]," ",[0,30]," 0}\n.",[1],"feedback-input{font-size:",[0,34],";height:",[0,50],";min-height:",[0,50],";padding:",[0,15]," ",[0,10],";line-height:",[0,50],"}\n.",[1],"foot{position:fixed;width:100%;height:90px;min-height:90px;left:0;bottom:0;overflow:hidden}\n",],undefined,{path:"./pages/report/feedback.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/report/feedback.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/pages/user/mine.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead([".",[1],"uni-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}\n.",[1],"content,.",[1],"uni-column{display:-webkit-box;display:-webkit-flex;display:flex}\n.",[1],"content{-webkit-box-flex:1;-webkit-flex:1;flex:1;margin-bottom:100px}\n.",[1],"foot{position:fixed;width:100%;height:90px;min-height:90px;left:0;bottom:0;overflow:hidden}\n.",[1],"footer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;width:100%;height:",[0,80],";min-height:",[0,80],";border-top:1px solid #bbb;overflow:hidden;padding:",[0,5],";background-color:#fafafa}\n.",[1],"footer-left{width:",[0,80],"}\n.",[1],"footer-left,.",[1],"footer-right{height:",[0,80],";display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}\n.",[1],"footer-right{width:",[0,120],";color:#1482d1}\n.",[1],"footer-center{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:",[0,80],";display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}\n.",[1],"footer-center .",[1],"input-text{-webkit-box-flex:1;-webkit-flex:1;flex:1;background:#fff;border:",[0,1]," solid #ddd;padding:",[0,10],"!important;font-family:verdana!important;overflow:hidden;border-radius:",[0,15],"}\n.",[1],"m-item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;padding-top:",[0,40],"}\n.",[1],"m-left{width:",[0,120],";-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}\n.",[1],"m-content,.",[1],"m-left{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}\n.",[1],"m-content{-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;word-break:break-all}\n.",[1],"m-right{display:-webkit-box;display:-webkit-flex;display:flex;width:",[0,120],";-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}\n.",[1],"head_icon{width:",[0,80],";height:",[0,80],"}\n.",[1],"m-content-head{position:relative}\n.",[1],"m-content-head-right{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}\n.",[1],"m-content-head-home{text-align:left;background:#1482d1;border:1px solid #1482d1;border-radius:",[0,20],";padding:",[0,20],";color:#fff}\n.",[1],"m-content-head-home:before{border:",[0,15]," solid transparent;border-right:",[0,15]," solid #1482d1;left:",[0,-26],";width:0;height:0;position:absolute;content:\x22 \x22}\n.",[1],"m-content-head-customer{border:",[0,1]," solid #fff;background:#fff;border-radius:",[0,20],";padding:",[0,20],"}\n.",[1],"m-content-head-customer:after{border:",[0,15]," solid transparent;border-left:",[0,15]," solid #fff;top:",[0,20],";right:",[0,-26],";width:0;height:0;position:absolute;content:\x22 \x22}\n",],undefined,{path:"./pages/user/mine.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/user/mine.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/static/img/tab_01_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/FeedBackStar/static/img/tab_01_c.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/static/img/tab_01_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/FeedBackStar/static/img/tab_01_d.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/static/img/tab_02_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/FeedBackStar/static/img/tab_02_c.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/static/img/tab_02_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/FeedBackStar/static/img/tab_02_d.png
--------------------------------------------------------------------------------
/unpackage/dist/build/app-plus/FeedBackStar/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/build/app-plus/FeedBackStar/static/logo.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/.sourcemap/mp-weixin/app.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["webpack:///./E:/uniapp/FeedBackStar/main.js","webpack:///E:/uniapp/FeedBackStar/App.vue?c683","webpack:///E:/uniapp/FeedBackStar/App.vue"],"names":["__webpack_require__","Vue","config","productionTip","App","mpType","_extends","$mount","__WEBPACK_IMPORTED_MODULE_0__D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_loader_babelrc_false_retainLines_true_presets_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_preset_env_modules_commonjs_targets_browsers_1_last_2_versions_not_ie_8_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_preset_stage_2_plugins_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_plugin_transform_runtime_helpers_false_polyfill_false_regenerator_true_moduleName_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_runtime_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_plugin_transform_decorators_legacy_D_xpkit_jskit_HBuilderX_plugins_uniapp_lib_preprocessor_loader_js_type_js_context_H5_false_APP_PLUS_false_MP_WEIXIN_true_MP_BAIDU_false_MP_ALIPAY_false_MP_TOUTIAO_false_MP_true_APP_false_APP_PLUS_NVUE_false_APP_PLUS_NVUE_false_APP_PLUS_false_MP_WEIXIN_true_MP_BAIDU_false_MP_ALIPAY_false_MP_TOUTIAO_false_D_xpkit_jskit_HBuilderX_plugins_uniapp_lib_mpvue_loader_lib_selector_type_script_index_0_App_vue__","__WEBPACK_IMPORTED_MODULE_0__D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_loader_babelrc_false_retainLines_true_presets_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_preset_env_modules_commonjs_targets_browsers_1_last_2_versions_not_ie_8_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_preset_stage_2_plugins_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_plugin_transform_runtime_helpers_false_polyfill_false_regenerator_true_moduleName_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_runtime_D_xpkit_jskit_HBuilderX_plugins_uniapp_node_modules_babel_plugin_transform_decorators_legacy_D_xpkit_jskit_HBuilderX_plugins_uniapp_lib_preprocessor_loader_js_type_js_context_H5_false_APP_PLUS_false_MP_WEIXIN_true_MP_BAIDU_false_MP_ALIPAY_false_MP_TOUTIAO_false_MP_true_APP_false_APP_PLUS_NVUE_false_APP_PLUS_NVUE_false_APP_PLUS_false_MP_WEIXIN_true_MP_BAIDU_false_MP_ALIPAY_false_MP_TOUTIAO_false_D_xpkit_jskit_HBuilderX_plugins_uniapp_lib_mpvue_loader_lib_selector_type_script_index_0_App_vue___default","n","disposed","__vue_styles__","ssrContext","Component","normalizeComponent","a","options","__file","esModule","Object","keys","some","key","substr","console","error","__webpack_exports__","onLaunch","log","onShow","onHide"],"mappings":"qOAAAA,EAAA,QACAA,EAAA,uDAEAC,UAAIC,OAAOC,eAAgB,EAE3BC,UAAIC,OAAS,MAED,IAAIJ,UAAJK,KACLF,YAEHG,yFCVJ,IAAAC,EAAAR,EAAA,GAAAS,EAAAT,EAAAU,EAAAF,GAAAG,GAAA,EAKA,IAMAC,EAVA,SAAAC,GACAF,GACAX,EAAA,IAaAc,EAXAd,EAAA,EAWAe,CACAN,EAAAO,EARA,KAUAJ,EANA,KAEA,MAQAE,EAAAG,QAAAC,OAAA,oCACAJ,EAAAK,UAAAC,OAAAC,KAAAP,EAAAK,UAAAG,KAAA,SAAAC,GAA+E,kBAAAA,GAAA,OAAAA,EAAAC,OAAA,QAA0DC,QAAAC,MAAA,mDAkBzIC,EAAA,QAAAb,EAAA,mHCxCAc,SAAA,WACAH,QAAAI,IAAA,eAEAC,OAAA,WACAL,QAAAI,IAAA,aAEAE,OAAA,WACAN,QAAAI,IAAA","file":"app.js","sourcesContent":["import Vue from 'vue'\r\nimport App from './App'\r\n\r\nVue.config.productionTip = false\r\n\r\nApp.mpType = 'app'\r\n\r\nconst app = new Vue({\r\n ...App\r\n})\r\napp.$mount()\r\n\n\n\n// WEBPACK FOOTER //\n// ./E:/uniapp/FeedBackStar/main.js","var disposed = false\nfunction injectStyle (ssrContext) {\n if (disposed) return\n require(\"!!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\node_modules\\\\extract-text-webpack-plugin\\\\dist\\\\loader.js?{\\\"omit\\\":1,\\\"remove\\\":true}!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\node_modules\\\\vue-style-loader!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\lib\\\\css-var-loader.js!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\node_modules\\\\css-loader?{\\\"minimize\\\":false,\\\"sourceMap\\\":false}!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\lib\\\\mpvue-loader\\\\lib\\\\style-compiler\\\\index?{\\\"vue\\\":true,\\\"id\\\":\\\"data-v-f9e1d066\\\",\\\"scoped\\\":false,\\\"hasInlineConfig\\\":false}!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\lib\\\\css-upx-loader.js?{\\\"baseDpr\\\":1,\\\"rpxUnit\\\":1}!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\lib\\\\preprocessor-loader.js?{\\\"type\\\":\\\"js\\\",\\\"context\\\":{\\\"H5\\\":false,\\\"APP-PLUS\\\":false,\\\"MP-WEIXIN\\\":true,\\\"MP-BAIDU\\\":false,\\\"MP-ALIPAY\\\":false,\\\"MP-TOUTIAO\\\":false,\\\"MP\\\":true,\\\"APP\\\":false,\\\"APP-PLUS-NVUE\\\":false,\\\"APP_PLUS_NVUE\\\":false,\\\"APP_PLUS\\\":false,\\\"MP_WEIXIN\\\":true,\\\"MP_BAIDU\\\":false,\\\"MP_ALIPAY\\\":false,\\\"MP_TOUTIAO\\\":false}}!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\node_modules\\\\postcss-loader?{\\\"config\\\":{\\\"path\\\":\\\"D:\\\\\\\\xpkit\\\\\\\\jskit\\\\\\\\HBuilderX\\\\\\\\plugins\\\\\\\\uniapp\\\\\\\\.postcssrc.js\\\"},\\\"sourceMap\\\":true}!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\lib\\\\preprocessor-loader.js?{\\\"type\\\":\\\"js\\\",\\\"context\\\":{\\\"H5\\\":false,\\\"APP-PLUS\\\":false,\\\"MP-WEIXIN\\\":true,\\\"MP-BAIDU\\\":false,\\\"MP-ALIPAY\\\":false,\\\"MP-TOUTIAO\\\":false,\\\"MP\\\":true,\\\"APP\\\":false,\\\"APP-PLUS-NVUE\\\":false,\\\"APP_PLUS_NVUE\\\":false,\\\"APP_PLUS\\\":false,\\\"MP_WEIXIN\\\":true,\\\"MP_BAIDU\\\":false,\\\"MP_ALIPAY\\\":false,\\\"MP_TOUTIAO\\\":false}}!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\lib\\\\mpvue-loader\\\\lib\\\\selector?type=styles&index=0!./App.vue\")\n}\nvar normalizeComponent = require(\"!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\lib\\\\mpvue-loader\\\\lib\\\\component-normalizer\")\n/* script */\nimport __vue_script__ from \"!!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\node_modules\\\\babel-loader?{\\\"babelrc\\\":false,\\\"retainLines\\\":true,\\\"presets\\\":[[\\\"D:\\\\\\\\xpkit\\\\\\\\jskit\\\\\\\\HBuilderX\\\\\\\\plugins\\\\\\\\uniapp\\\\\\\\node_modules\\\\\\\\babel-preset-env\\\",{\\\"modules\\\":\\\"commonjs\\\",\\\"targets\\\":{\\\"browsers\\\":[\\\"> 1%\\\",\\\"last 2 versions\\\",\\\"not ie <= 8\\\"]}}],\\\"D:\\\\\\\\xpkit\\\\\\\\jskit\\\\\\\\HBuilderX\\\\\\\\plugins\\\\\\\\uniapp\\\\\\\\node_modules\\\\\\\\babel-preset-stage-2\\\"],\\\"plugins\\\":[[\\\"D:\\\\\\\\xpkit\\\\\\\\jskit\\\\\\\\HBuilderX\\\\\\\\plugins\\\\\\\\uniapp\\\\\\\\node_modules\\\\\\\\babel-plugin-transform-runtime\\\",{\\\"helpers\\\":false,\\\"polyfill\\\":false,\\\"regenerator\\\":true,\\\"moduleName\\\":\\\"D:\\\\\\\\xpkit\\\\\\\\jskit\\\\\\\\HBuilderX\\\\\\\\plugins\\\\\\\\uniapp\\\\\\\\node_modules\\\\\\\\babel-runtime\\\"}],\\\"D:\\\\\\\\xpkit\\\\\\\\jskit\\\\\\\\HBuilderX\\\\\\\\plugins\\\\\\\\uniapp\\\\\\\\node_modules\\\\\\\\babel-plugin-transform-decorators-legacy\\\"]}!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\lib\\\\preprocessor-loader.js?{\\\"type\\\":\\\"js\\\",\\\"context\\\":{\\\"H5\\\":false,\\\"APP-PLUS\\\":false,\\\"MP-WEIXIN\\\":true,\\\"MP-BAIDU\\\":false,\\\"MP-ALIPAY\\\":false,\\\"MP-TOUTIAO\\\":false,\\\"MP\\\":true,\\\"APP\\\":false,\\\"APP-PLUS-NVUE\\\":false,\\\"APP_PLUS_NVUE\\\":false,\\\"APP_PLUS\\\":false,\\\"MP_WEIXIN\\\":true,\\\"MP_BAIDU\\\":false,\\\"MP_ALIPAY\\\":false,\\\"MP_TOUTIAO\\\":false}}!D:\\\\xpkit\\\\jskit\\\\HBuilderX\\\\plugins\\\\uniapp\\\\lib\\\\mpvue-loader\\\\lib\\\\selector?type=script&index=0!./App.vue\"\n/* template */\nvar __vue_template__ = null\n/* styles */\nvar __vue_styles__ = injectStyle\n/* scopeId */\nvar __vue_scopeId__ = null\n/* moduleIdentifier (server only) */\nvar __vue_module_identifier__ = null\nvar Component = normalizeComponent(\n __vue_script__,\n __vue_template__,\n __vue_styles__,\n __vue_scopeId__,\n __vue_module_identifier__\n)\nComponent.options.__file = \"E:\\\\uniapp\\\\FeedBackStar\\\\App.vue\"\nif (Component.esModule && Object.keys(Component.esModule).some(function (key) {return key !== \"default\" && key.substr(0, 2) !== \"__\"})) {console.error(\"named exports are not supported in *.vue files.\")}\n\n/* hot reload */\nif (module.hot) {(function () {\n var hotAPI = require(\"vue-hot-reload-api\")\n hotAPI.install(require(\"vue\"), false)\n if (!hotAPI.compatible) return\n module.hot.accept()\n if (!module.hot.data) {\n hotAPI.createRecord(\"data-v-f9e1d066\", Component.options)\n } else {\n hotAPI.reload(\"data-v-f9e1d066\", Component.options)\n }\n module.hot.dispose(function (data) {\n disposed = true\n })\n})()}\n\nexport default Component.exports\n\n\n\n//////////////////\n// WEBPACK FOOTER\n// E:/uniapp/FeedBackStar/App.vue\n// module id = 5\n// module chunks = 3","\r\n\r\n\n\n\n\n// WEBPACK FOOTER //\n// E:/uniapp/FeedBackStar/App.vue?61ffd7b0"],"sourceRoot":""}
--------------------------------------------------------------------------------
/unpackage/dist/dev/.sourcemap/mp-weixin/common/manifest.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["webpack:///webpack/bootstrap 719e49be37ceae430072"],"names":["parentJsonpFunction","global","chunkIds","moreModules","executeModules","moduleId","chunkId","result","i","resolves","length","installedChunks","push","Object","prototype","hasOwnProperty","call","modules","shift","__webpack_require__","s","installedModules","4","exports","module","l","m","c","d","name","getter","o","defineProperty","configurable","enumerable","get","n","__esModule","object","property","p","oe","err","console","error"],"mappings":"aACA,IAAAA,EAAAC,OAAA,aACAA,OAAA,sBAAAC,EAAAC,EAAAC,GAIA,IADA,IAAAC,EAAAC,EAAAC,EAAAC,EAAA,EAAAC,KACQD,EAAAN,EAAAQ,OAAoBF,IAC5BF,EAAAJ,EAAAM,GACAG,EAAAL,IACAG,EAAAG,KAAAD,EAAAL,GAAA,IAEAK,EAAAL,GAAA,EAEA,IAAAD,KAAAF,EACAU,OAAAC,UAAAC,eAAAC,KAAAb,EAAAE,KACAY,EAAAZ,GAAAF,EAAAE,IAIA,IADAL,KAAAE,EAAAC,EAAAC,GACAK,EAAAC,QACAD,EAAAS,OAAAT,GAEA,GAAAL,EACA,IAAAI,EAAA,EAAYA,EAAAJ,EAAAM,OAA2BF,IACvCD,EAAAY,IAAAC,EAAAhB,EAAAI,IAGA,OAAAD,GAIA,IAAAc,KAGAV,GACAW,EAAA,GAIA,SAAAH,EAAAd,GAGA,GAAAgB,EAAAhB,GACA,OAAAgB,EAAAhB,GAAAkB,QAGA,IAAAC,EAAAH,EAAAhB,IACAG,EAAAH,EACAoB,GAAA,EACAF,YAUA,OANAN,EAAAZ,GAAAW,KAAAQ,EAAAD,QAAAC,IAAAD,QAAAJ,GAGAK,EAAAC,GAAA,EAGAD,EAAAD,QAKAJ,EAAAO,EAAAT,EAGAE,EAAAQ,EAAAN,EAGAF,EAAAS,EAAA,SAAAL,EAAAM,EAAAC,GACAX,EAAAY,EAAAR,EAAAM,IACAhB,OAAAmB,eAAAT,EAAAM,GACAI,cAAA,EACAC,YAAA,EACAC,IAAAL,KAMAX,EAAAiB,EAAA,SAAAZ,GACA,IAAAM,EAAAN,KAAAa,WACA,WAA2B,OAAAb,EAAA,SAC3B,WAAiC,OAAAA,GAEjC,OADAL,EAAAS,EAAAE,EAAA,IAAAA,GACAA,GAIAX,EAAAY,EAAA,SAAAO,EAAAC,GAAsD,OAAA1B,OAAAC,UAAAC,eAAAC,KAAAsB,EAAAC,IAGtDpB,EAAAqB,EAAA,IAGArB,EAAAsB,GAAA,SAAAC,GAA8D,MAApBC,QAAAC,MAAAF,GAAoBA","file":"common/manifest.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tvar parentJsonpFunction = global[\"webpackJsonp\"];\n \tglobal[\"webpackJsonp\"] = function webpackJsonpCallback(chunkIds, moreModules, executeModules) {\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [], result;\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(chunkIds, moreModules, executeModules);\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n \t\tif(executeModules) {\n \t\t\tfor(i=0; i < executeModules.length; i++) {\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = executeModules[i]);\n \t\t\t}\n \t\t}\n \t\treturn result;\n \t};\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// objects to store loaded and loading chunks\n \tvar installedChunks = {\n \t\t4: 0\n \t};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, {\n \t\t\t\tconfigurable: false,\n \t\t\t\tenumerable: true,\n \t\t\t\tget: getter\n \t\t\t});\n \t\t}\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap 719e49be37ceae430072"],"sourceRoot":""}
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/app.json:
--------------------------------------------------------------------------------
1 | {"pages":["pages/user/mine","pages/report/feedback"],"window":{"navigationBarTextStyle":"white","navigationBarBackgroundColor":"#1b6edd","backgroundColor":"#F5F5F5"},"tabBar":{"color":"#666666","selectedColor":"#1b6edd","backgroundColor":"#ffffff","list":[{"pagePath":"pages/user/mine","text":"聊天","iconPath":"static/img/tab_02_d.png","selectedIconPath":"static/img/tab_02_c.png"},{"pagePath":"pages/report/feedback","text":"反馈","iconPath":"static/img/tab_01_d.png","selectedIconPath":"static/img/tab_01_c.png"}]},"networkTimeout":{},"debug":false,"functionalPages":false,"subPackages":[],"workers":"","preloadRule":{},"requiredBackgroundModes":[],"plugins":{},"resizable":false,"navigateToMiniProgramAppIdList":[],"permission":{},"usingComponents":{}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/app.wxss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/.temp/app.wxss
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/common/manifest.js:
--------------------------------------------------------------------------------
1 | /******/ (function(modules) { // webpackBootstrap
2 | /******/ // install a JSONP callback for chunk loading
3 | /******/ var parentJsonpFunction = global["webpackJsonp"];
4 | /******/ global["webpackJsonp"] = function webpackJsonpCallback(chunkIds, moreModules, executeModules) {
5 | /******/ // add "moreModules" to the modules object,
6 | /******/ // then flag all "chunkIds" as loaded and fire callback
7 | /******/ var moduleId, chunkId, i = 0, resolves = [], result;
8 | /******/ for(;i < chunkIds.length; i++) {
9 | /******/ chunkId = chunkIds[i];
10 | /******/ if(installedChunks[chunkId]) {
11 | /******/ resolves.push(installedChunks[chunkId][0]);
12 | /******/ }
13 | /******/ installedChunks[chunkId] = 0;
14 | /******/ }
15 | /******/ for(moduleId in moreModules) {
16 | /******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
17 | /******/ modules[moduleId] = moreModules[moduleId];
18 | /******/ }
19 | /******/ }
20 | /******/ if(parentJsonpFunction) parentJsonpFunction(chunkIds, moreModules, executeModules);
21 | /******/ while(resolves.length) {
22 | /******/ resolves.shift()();
23 | /******/ }
24 | /******/ if(executeModules) {
25 | /******/ for(i=0; i < executeModules.length; i++) {
26 | /******/ result = __webpack_require__(__webpack_require__.s = executeModules[i]);
27 | /******/ }
28 | /******/ }
29 | /******/ return result;
30 | /******/ };
31 | /******/
32 | /******/ // The module cache
33 | /******/ var installedModules = {};
34 | /******/
35 | /******/ // objects to store loaded and loading chunks
36 | /******/ var installedChunks = {
37 | /******/ 4: 0
38 | /******/ };
39 | /******/
40 | /******/ // The require function
41 | /******/ function __webpack_require__(moduleId) {
42 | /******/
43 | /******/ // Check if module is in cache
44 | /******/ if(installedModules[moduleId]) {
45 | /******/ return installedModules[moduleId].exports;
46 | /******/ }
47 | /******/ // Create a new module (and put it into the cache)
48 | /******/ var module = installedModules[moduleId] = {
49 | /******/ i: moduleId,
50 | /******/ l: false,
51 | /******/ exports: {}
52 | /******/ };
53 | /******/
54 | /******/ // Execute the module function
55 | /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
56 | /******/
57 | /******/ // Flag the module as loaded
58 | /******/ module.l = true;
59 | /******/
60 | /******/ // Return the exports of the module
61 | /******/ return module.exports;
62 | /******/ }
63 | /******/
64 | /******/
65 | /******/ // expose the modules object (__webpack_modules__)
66 | /******/ __webpack_require__.m = modules;
67 | /******/
68 | /******/ // expose the module cache
69 | /******/ __webpack_require__.c = installedModules;
70 | /******/
71 | /******/ // define getter function for harmony exports
72 | /******/ __webpack_require__.d = function(exports, name, getter) {
73 | /******/ if(!__webpack_require__.o(exports, name)) {
74 | /******/ Object.defineProperty(exports, name, {
75 | /******/ configurable: false,
76 | /******/ enumerable: true,
77 | /******/ get: getter
78 | /******/ });
79 | /******/ }
80 | /******/ };
81 | /******/
82 | /******/ // getDefaultExport function for compatibility with non-harmony modules
83 | /******/ __webpack_require__.n = function(module) {
84 | /******/ var getter = module && module.__esModule ?
85 | /******/ function getDefault() { return module['default']; } :
86 | /******/ function getModuleExports() { return module; };
87 | /******/ __webpack_require__.d(getter, 'a', getter);
88 | /******/ return getter;
89 | /******/ };
90 | /******/
91 | /******/ // Object.prototype.hasOwnProperty.call
92 | /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
93 | /******/
94 | /******/ // __webpack_public_path__
95 | /******/ __webpack_require__.p = "/";
96 | /******/
97 | /******/ // on error function for async loading
98 | /******/ __webpack_require__.oe = function(err) { console.error(err); throw err; };
99 | /******/ })
100 | /************************************************************************/
101 | /******/ ([]);
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/components/chatinput.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/components/messageshow.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | {{message.content}}
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/components/slots.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name" : "FeedBackStar",
3 | "appid" : "__UNI__5270176",
4 | "description" : "",
5 | "versionName" : "1.0.0",
6 | "versionCode" : "100",
7 | "transformPx" : false,
8 | "app-plus" : {
9 | /* 5+App特有相关 */
10 | "modules" : {},
11 | /* 模块配置 */
12 | "distribute" : {
13 | /* 应用发布信息 */
14 | "android" : {
15 | /* android打包配置 */
16 | "permissions" : [
17 | "",
18 | "",
19 | "",
20 | "",
21 | "",
22 | "",
23 | "",
24 | "",
25 | "",
26 | "",
27 | "",
28 | "",
29 | "",
30 | "",
31 | "",
32 | "",
33 | "",
34 | "",
35 | "",
36 | "",
37 | "",
38 | "",
39 | "",
40 | "",
41 | ""
42 | ]
43 | },
44 | "ios" : {},
45 | /* ios打包配置 */
46 | "sdkConfigs" : {}
47 | }
48 | },
49 | /* SDK配置 */
50 | "quickapp" : {},
51 | /* 快应用特有相关 */
52 | "mp-weixin" : {
53 | /* 小程序特有相关 */
54 | "appid" : "",
55 | "setting" : {
56 | "urlCheck" : true
57 | }
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/pages/report/feedback.json:
--------------------------------------------------------------------------------
1 | {"navigationBarTitleText":"反馈"}
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/pages/report/feedback.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 快速键入
5 |
6 |
7 |
8 |
9 |
10 | 图片(选填,提供问题截图,总大小10M以下)
11 |
12 |
13 |
14 |
15 | 点击预览图片
16 | {{imageList.length}}/9
17 |
18 |
19 |
20 |
21 |
22 |
23 | x
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
36 |
37 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/pages/report/feedback.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/pages/report/feedback.wxss:
--------------------------------------------------------------------------------
1 |
2 | @font-face {
3 | font-family: uniicons;
4 | font-weight: normal;
5 | font-style: normal;
6 | src: url('https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf') format('truetype');
7 | }
8 | .page {
9 | background-color: #EFEFF4;
10 | padding: 10rpx;
11 | width: 100%;
12 | height: 100%;
13 | }
14 | view {
15 | font-size: 28rpx;
16 | }
17 | .input-view {
18 | font-size: 28rpx;
19 | }
20 | .close-view {
21 | text-align: center;
22 | line-height: 14px;
23 | height: 16px;
24 | width: 16px;
25 | border-radius: 50%;
26 | background: #FF5053;
27 | color: #FFFFFF;
28 | position: absolute;
29 | top: -6px;
30 | right: -4px;
31 | font-size: 12px;
32 | }
33 | .uni-uploader {
34 | -webkit-box-flex: 1;
35 | -webkit-flex: 1;
36 | flex: 1;
37 | -webkit-box-orient: vertical;
38 | -webkit-box-direction: normal;
39 | -webkit-flex-direction: column;
40 | flex-direction: column;
41 | }
42 | .uni-uploader-head {
43 | display: -webkit-box;
44 | display: -webkit-flex;
45 | display: flex;
46 | -webkit-box-orient: horizontal;
47 | -webkit-box-direction: normal;
48 | -webkit-flex-direction: row;
49 | flex-direction: row;
50 | -webkit-box-pack: justify;
51 | -webkit-justify-content: space-between;
52 | justify-content: space-between;
53 | }
54 | .uni-uploader-info {
55 | color: #B2B2B2;
56 | }
57 | .uni-uploader-body {
58 | margin-top: 16rpx;
59 | }
60 | .uni-uploader__files {
61 | display: -webkit-box;
62 | display: -webkit-flex;
63 | display: flex;
64 | -webkit-box-orient: horizontal;
65 | -webkit-box-direction: normal;
66 | -webkit-flex-direction: row;
67 | flex-direction: row;
68 | -webkit-flex-wrap: wrap;
69 | flex-wrap: wrap;
70 | }
71 | .uni-uploader__file {
72 | margin: 10rpx;
73 | width: 210rpx;
74 | height: 210rpx;
75 | }
76 | .uni-uploader__img {
77 | display: block;
78 | width: 210rpx;
79 | height: 210rpx;
80 | }
81 | .uni-uploader__input-box {
82 | position: relative;
83 | margin: 10rpx;
84 | width: 208rpx;
85 | height: 208rpx;
86 | border: 2rpx solid #D9D9D9;
87 | }
88 | .uni-uploader__input-box:before,
89 | .uni-uploader__input-box:after {
90 | content: " ";
91 | position: absolute;
92 | top: 50%;
93 | left: 50%;
94 | -webkit-transform: translate(-50%, -50%);
95 | transform: translate(-50%, -50%);
96 | background-color: #D9D9D9;
97 | }
98 | .uni-uploader__input-box:before {
99 | width: 4rpx;
100 | height: 79rpx;
101 | }
102 | .uni-uploader__input-box:after {
103 | width: 79rpx;
104 | height: 4rpx;
105 | }
106 | .uni-uploader__input-box:active {
107 | border-color: #999999;
108 | }
109 | .uni-uploader__input-box:active:before,
110 | .uni-uploader__input-box:active:after {
111 | background-color: #999999;
112 | }
113 | .uni-uploader__input {
114 | position: absolute;
115 | z-index: 1;
116 | top: 0;
117 | left: 0;
118 | width: 100%;
119 | height: 100%;
120 | opacity: 0;
121 | }
122 | .feedback-title {
123 | display: -webkit-box;
124 | display: -webkit-flex;
125 | display: flex;
126 | -webkit-box-orient: horizontal;
127 | -webkit-box-direction: normal;
128 | -webkit-flex-direction: row;
129 | flex-direction: row;
130 | -webkit-box-pack: justify;
131 | -webkit-justify-content: space-between;
132 | justify-content: space-between;
133 | -webkit-box-align: center;
134 | -webkit-align-items: center;
135 | align-items: center;
136 | padding: 10rpx;
137 | color: #8f8f94;
138 | font-size: 28rpx;
139 | }
140 | .feedback-star-view.feedback-title {
141 | -webkit-box-pack: start;
142 | -webkit-justify-content: flex-start;
143 | justify-content: flex-start;
144 | margin: 0;
145 | }
146 | .feedback-quick {
147 | position: relative;
148 | padding-right: 40rpx;
149 | }
150 | .feedback-quick:after {
151 | font-family: uniicons;
152 | font-size: 40rpx;
153 | content: '\E581';
154 | position: absolute;
155 | right: 0;
156 | top: 50%;
157 | color: #bbb;
158 | -webkit-transform: translateY(-50%);
159 | transform: translateY(-50%);
160 | }
161 | .feedback-body {
162 | background: #fff;
163 | }
164 | .feedback-textare {
165 | height: 200rpx;
166 | font-size: 34rpx;
167 | line-height: 50rpx;
168 | width: 100%;
169 | box-sizing: border-box;
170 | padding: 20rpx 30rpx 0;
171 | }
172 | .feedback-input {
173 | font-size: 34rpx;
174 | height: 50rpx;
175 | min-height: 50rpx;
176 | padding: 15rpx 10rpx;
177 | line-height: 50rpx;
178 | }
179 | .foot {
180 | position: fixed;
181 | width: 100%;
182 | height: 90px;
183 | min-height: 90px;
184 | left: 0px;
185 | bottom: 0px;
186 | overflow: hidden;
187 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/pages/user/mine.json:
--------------------------------------------------------------------------------
1 | {"navigationBarTitleText":"聊天"}
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/pages/user/mine.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
15 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/pages/user/mine.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/pages/user/mine.wxss:
--------------------------------------------------------------------------------
1 |
2 | .uni-column {
3 | display: -webkit-box;
4 | display: -webkit-flex;
5 | display: flex;
6 | -webkit-box-orient: vertical;
7 | -webkit-box-direction: normal;
8 | -webkit-flex-direction: column;
9 | flex-direction: column;
10 | }
11 | .content {
12 | display: -webkit-box;
13 | display: -webkit-flex;
14 | display: flex;
15 | -webkit-box-flex: 1;
16 | -webkit-flex: 1;
17 | flex: 1;
18 | margin-bottom: 100px;
19 | }
20 | .foot {
21 | position: fixed;
22 | width: 100%;
23 | height: 90px;
24 | min-height: 90px;
25 | left: 0px;
26 | bottom: 0px;
27 | overflow: hidden;
28 | }
29 | .footer {
30 | display: -webkit-box;
31 | display: -webkit-flex;
32 | display: flex;
33 | -webkit-box-orient: horizontal;
34 | -webkit-box-direction: normal;
35 | -webkit-flex-direction: row;
36 | flex-direction: row;
37 | width: 100%;
38 | height: 80rpx;
39 | min-height: 80rpx;
40 | border-top: solid 1px #bbb;
41 | overflow: hidden;
42 | padding: 5rpx;
43 | background-color: #fafafa;
44 | }
45 | .footer-left {
46 | width: 80rpx;
47 | height: 80rpx;
48 | display: -webkit-box;
49 | display: -webkit-flex;
50 | display: flex;
51 | -webkit-box-pack: center;
52 | -webkit-justify-content: center;
53 | justify-content: center;
54 | -webkit-box-align: center;
55 | -webkit-align-items: center;
56 | align-items: center;
57 | }
58 | .footer-right {
59 | width: 120rpx;
60 | height: 80rpx;
61 | display: -webkit-box;
62 | display: -webkit-flex;
63 | display: flex;
64 | -webkit-box-pack: center;
65 | -webkit-justify-content: center;
66 | justify-content: center;
67 | -webkit-box-align: center;
68 | -webkit-align-items: center;
69 | align-items: center;
70 | color: #1482D1;
71 | }
72 | .footer-center {
73 | -webkit-box-flex: 1;
74 | -webkit-flex: 1;
75 | flex: 1;
76 | height: 80rpx;
77 | display: -webkit-box;
78 | display: -webkit-flex;
79 | display: flex;
80 | -webkit-box-pack: center;
81 | -webkit-justify-content: center;
82 | justify-content: center;
83 | -webkit-box-align: center;
84 | -webkit-align-items: center;
85 | align-items: center;
86 | }
87 | .footer-center .input-text {
88 | -webkit-box-flex: 1;
89 | -webkit-flex: 1;
90 | flex: 1;
91 | background: #fff;
92 | border: solid 1rpx #ddd;
93 | padding: 10rpx !important;
94 | font-family: verdana !important;
95 | overflow: hidden;
96 | border-radius: 15rpx;
97 | }
98 | .m-item {
99 | display: -webkit-box;
100 | display: -webkit-flex;
101 | display: flex;
102 | -webkit-box-orient: horizontal;
103 | -webkit-box-direction: normal;
104 | -webkit-flex-direction: row;
105 | flex-direction: row;
106 | padding-top: 40rpx;
107 | }
108 | .m-left {
109 | display: -webkit-box;
110 | display: -webkit-flex;
111 | display: flex;
112 | width: 120rpx;
113 | -webkit-box-pack: center;
114 | -webkit-justify-content: center;
115 | justify-content: center;
116 | -webkit-box-align: start;
117 | -webkit-align-items: flex-start;
118 | align-items: flex-start;
119 | }
120 | .m-content {
121 | display: -webkit-box;
122 | display: -webkit-flex;
123 | display: flex;
124 | -webkit-box-flex: 1;
125 | -webkit-flex: 1;
126 | flex: 1;
127 | -webkit-box-orient: vertical;
128 | -webkit-box-direction: normal;
129 | -webkit-flex-direction: column;
130 | flex-direction: column;
131 | -webkit-box-pack: center;
132 | -webkit-justify-content: center;
133 | justify-content: center;
134 | word-break: break-all;
135 | }
136 | .m-right {
137 | display: -webkit-box;
138 | display: -webkit-flex;
139 | display: flex;
140 | width: 120rpx;
141 | -webkit-box-pack: center;
142 | -webkit-justify-content: center;
143 | justify-content: center;
144 | -webkit-box-align: start;
145 | -webkit-align-items: flex-start;
146 | align-items: flex-start;
147 | }
148 | .head_icon {
149 | width: 80rpx;
150 | height: 80rpx;
151 | }
152 | .m-content-head {
153 | position: relative;
154 | }
155 | .m-content-head-right {
156 | display: -webkit-box;
157 | display: -webkit-flex;
158 | display: flex;
159 | -webkit-box-pack: end;
160 | -webkit-justify-content: flex-end;
161 | justify-content: flex-end;
162 | }
163 | .m-content-head-home {
164 | text-align: left;
165 | background: #1482d1;
166 | border: 1px #1482d1 solid;
167 | border-radius: 20rpx;
168 | padding: 20rpx;
169 | color: white;
170 | }
171 | .m-content-head-home:before {
172 | border: 15rpx solid transparent;
173 | border-right: 15rpx solid #1482d1;
174 | left: -26rpx;
175 | width: 0;
176 | height: 0;
177 | position: absolute;
178 | content: ' ';
179 | }
180 | .m-content-head-customer {
181 | border: 1rpx white solid;
182 | background: white;
183 | border-radius: 20rpx;
184 | padding: 20rpx;
185 | }
186 | .m-content-head-customer:after {
187 | border: 15rpx solid transparent;
188 | border-left: 15rpx solid white;
189 | top: 20rpx;
190 | right: -26rpx;
191 | width: 0;
192 | height: 0;
193 | position: absolute;
194 | content: ' ';
195 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/static/img/tab_01_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/.temp/static/img/tab_01_c.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/static/img/tab_01_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/.temp/static/img/tab_01_d.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/static/img/tab_02_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/.temp/static/img/tab_02_c.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/static/img/tab_02_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/.temp/static/img/tab_02_d.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/.temp/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/.temp/static/logo.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/__uniappcoverview.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
281 |
282 |
283 |
284 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/__uniappmarker@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/FeedBackStar/__uniappmarker@3x.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/__uniappscan.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 扫码
8 |
22 |
23 |
24 |
25 |
26 |
27 |
118 |
119 |
120 |
121 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/__uniappsuccess.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/FeedBackStar/__uniappsuccess.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/manifest.json:
--------------------------------------------------------------------------------
1 | {"@platforms":["android","iPhone","iPad"],"id":"__UNI__5270176","name":"FeedBackStar","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappservice.html","developer":{"name":"","email":"","url":""},"permissions":{},"plus":{"useragent":{"value":"uni-app appservice","concatenate":true},"splashscreen":{"autoclose":false,"waiting":true},"popGesture":"close","statusbar":{"immersed":"supportedDevice","style":"light","background":"#1b6edd"},"distribute":{"google":{"permissions":["","","","","","","","","","","","","","","","","","","","","","","","",""]},"apple":{},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}}}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/pages/report/feedback.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead(["@font-face { font-family: uniicons; font-weight: normal; font-style: normal; src: url(\x27https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf\x27) format(\x27truetype\x27); }\n.",[1],"page { background-color: #EFEFF4; padding: ",[0,10],"; width: 100%; height: 100%; }\nwx-view { font-size: ",[0,28],"; }\n.",[1],"input-view { font-size: ",[0,28],"; }\n.",[1],"close-view { text-align: center; line-height: 14px; height: 16px; width: 16px; border-radius: 50%; background: #FF5053; color: #FFFFFF; position: absolute; top: -6px; right: -4px; font-size: 12px; }\n.",[1],"uni-uploader { -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; }\n.",[1],"uni-uploader-head { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; }\n.",[1],"uni-uploader-info { color: #B2B2B2; }\n.",[1],"uni-uploader-body { margin-top: ",[0,16],"; }\n.",[1],"uni-uploader__files { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; -webkit-flex-wrap: wrap; flex-wrap: wrap; }\n.",[1],"uni-uploader__file { margin: ",[0,10],"; width: ",[0,210],"; height: ",[0,210],"; }\n.",[1],"uni-uploader__img { display: block; width: ",[0,210],"; height: ",[0,210],"; }\n.",[1],"uni-uploader__input-box { position: relative; margin: ",[0,10],"; width: ",[0,208],"; height: ",[0,208],"; border: ",[0,2]," solid #D9D9D9; }\n.",[1],"uni-uploader__input-box:before, .",[1],"uni-uploader__input-box:after { content: \x22 \x22; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); background-color: #D9D9D9; }\n.",[1],"uni-uploader__input-box:before { width: ",[0,4],"; height: ",[0,79],"; }\n.",[1],"uni-uploader__input-box:after { width: ",[0,79],"; height: ",[0,4],"; }\n.",[1],"uni-uploader__input-box:active { border-color: #999999; }\n.",[1],"uni-uploader__input-box:active:before, .",[1],"uni-uploader__input-box:active:after { background-color: #999999; }\n.",[1],"uni-uploader__input { position: absolute; z-index: 1; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; }\n.",[1],"feedback-title { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; -webkit-box-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; -webkit-box-align: center; -webkit-align-items: center; align-items: center; padding: ",[0,10],"; color: #8f8f94; font-size: ",[0,28],"; }\n.",[1],"feedback-star-view.",[1],"feedback-title { -webkit-box-pack: start; -webkit-justify-content: flex-start; justify-content: flex-start; margin: 0; }\n.",[1],"feedback-quick { position: relative; padding-right: ",[0,40],"; }\n.",[1],"feedback-quick:after { font-family: uniicons; font-size: ",[0,40],"; content: \x27\\E581\x27; position: absolute; right: 0; top: 50%; color: #bbb; -webkit-transform: translateY(-50%); transform: translateY(-50%); }\n.",[1],"feedback-body { background: #fff; }\n.",[1],"feedback-textare { height: ",[0,200],"; font-size: ",[0,34],"; line-height: ",[0,50],"; width: 100%; box-sizing: border-box; padding: ",[0,20]," ",[0,30]," 0; }\n.",[1],"feedback-input { font-size: ",[0,34],"; height: ",[0,50],"; min-height: ",[0,50],"; padding: ",[0,15]," ",[0,10],"; line-height: ",[0,50],"; }\n.",[1],"foot { position: fixed; width: 100%; height: 90px; min-height: 90px; left: 0px; bottom: 0px; overflow: hidden; }\n",],undefined,{path:"./pages/report/feedback.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/report/feedback.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/pages/user/mine.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead([".",[1],"uni-column { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; }\n.",[1],"content { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; margin-bottom: 100px; }\n.",[1],"foot { position: fixed; width: 100%; height: 90px; min-height: 90px; left: 0px; bottom: 0px; overflow: hidden; }\n.",[1],"footer { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; width: 100%; height: ",[0,80],"; min-height: ",[0,80],"; border-top: solid 1px #bbb; overflow: hidden; padding: ",[0,5],"; background-color: #fafafa; }\n.",[1],"footer-left { width: ",[0,80],"; height: ",[0,80],"; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; }\n.",[1],"footer-right { width: ",[0,120],"; height: ",[0,80],"; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; color: #1482D1; }\n.",[1],"footer-center { -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; height: ",[0,80],"; display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; align-items: center; }\n.",[1],"footer-center .",[1],"input-text { -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; background: #fff; border: solid ",[0,1]," #ddd; padding: ",[0,10]," !important; font-family: verdana !important; overflow: hidden; border-radius: ",[0,15],"; }\n.",[1],"m-item { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; flex-direction: row; padding-top: ",[0,40],"; }\n.",[1],"m-left { display: -webkit-box; display: -webkit-flex; display: flex; width: ",[0,120],"; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; }\n.",[1],"m-content { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-flex: 1; -webkit-flex: 1; flex: 1; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; word-break: break-all; }\n.",[1],"m-right { display: -webkit-box; display: -webkit-flex; display: flex; width: ",[0,120],"; -webkit-box-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: start; -webkit-align-items: flex-start; align-items: flex-start; }\n.",[1],"head_icon { width: ",[0,80],"; height: ",[0,80],"; }\n.",[1],"m-content-head { position: relative; }\n.",[1],"m-content-head-right { display: -webkit-box; display: -webkit-flex; display: flex; -webkit-box-pack: end; -webkit-justify-content: flex-end; justify-content: flex-end; }\n.",[1],"m-content-head-home { text-align: left; background: #1482d1; border: 1px #1482d1 solid; border-radius: ",[0,20],"; padding: ",[0,20],"; color: white; }\n.",[1],"m-content-head-home:before { border: ",[0,15]," solid transparent; border-right: ",[0,15]," solid #1482d1; left: ",[0,-26],"; width: 0; height: 0; position: absolute; content: \x27 \x27; }\n.",[1],"m-content-head-customer { border: ",[0,1]," white solid; background: white; border-radius: ",[0,20],"; padding: ",[0,20],"; }\n.",[1],"m-content-head-customer:after { border: ",[0,15]," solid transparent; border-left: ",[0,15]," solid white; top: ",[0,20],"; right: ",[0,-26],"; width: 0; height: 0; position: absolute; content: \x27 \x27; }\n",],undefined,{path:"./pages/user/mine.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/user/mine.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/static/img/tab_01_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/FeedBackStar/static/img/tab_01_c.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/static/img/tab_01_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/FeedBackStar/static/img/tab_01_d.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/static/img/tab_02_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/FeedBackStar/static/img/tab_02_c.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/static/img/tab_02_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/FeedBackStar/static/img/tab_02_d.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/app-plus/FeedBackStar/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/app-plus/FeedBackStar/static/logo.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/app.js:
--------------------------------------------------------------------------------
1 | require("common/manifest.js");
2 | require("common/vendor.js");
3 | global.webpackJsonp([3],[,,,function(e,n,o){"use strict";var t=Object.assign||function(e){for(var n=1;n
2 |
13 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/messageshow.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | {{message.content}}
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/components/slots.wxml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/report/feedback.js:
--------------------------------------------------------------------------------
1 | require("../../common/manifest.js");
2 | require("../../common/vendor.js");
3 | global.webpackJsonp([1],[,,,,,,,,,function(e,t,s){"use strict";var i=n(s(2)),a=n(s(10));function n(e){return e&&e.__esModule?e:{default:e}}Page((0,i.default)(a.default))},function(e,t,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=s(12),a=s.n(i),n=s(14),o=!1;var c=function(e){o||s(11)},u=s(0)(a.a,n.a,c,null,null);u.options.__file="E:\\uniapp\\FeedBackStar\\pages\\report\\feedback.vue",u.esModule&&Object.keys(u.esModule).some(function(e){return"default"!==e&&"__"!==e.substr(0,2)})&&console.error("named exports are not supported in *.vue files."),u.options.functional&&console.error("[vue-loader] feedback.vue: functional components are not supported with templates, they should use render functions."),t.default=u.exports},function(e,t){},function(e,t,s){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{msgContents:["高兴","一般般","难过","崩溃"],stars:[1,2,3,4,5],imageList:[],sendDate:{score:0,content:"",contact:""}}},onLoad:function(){},methods:{close:function(e){this.imageList.splice(e,1)},chooseMsg:function(){var t=this;e.showActionSheet({itemList:this.msgContents,success:function(e){t.sendDate.content=t.msgContents[e.tapIndex]}})},chooseImg:function(){var t=this;e.chooseImage({sourceType:["camera","album"],sizeType:["compressed","original"],count:9-this.imageList.length,success:function(e){t.imageList=t.imageList.concat(e.tempFilePaths)}})},chooseStar:function(e){this.sendDate.score=e},previewImage:function(){e.previewImage({urls:this.imageList})},send:function(){console.log(JSON.stringify(this.sendDate));this.imageList.map(function(e,t){return{name:"image"+t,uri:e}});e.requireNativePlugin("LocationDialog").createLocationDialog({latitude:22.538908,longitude:113.955852})}}}}).call(t,s(13).default)},,function(e,t,s){"use strict";var i=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("view",{staticClass:"page"},[s("view",{staticClass:"feedback-title"},[s("text",{staticClass:"feedback-quick",attrs:{eventid:"qJi-0"},on:{tap:e.chooseMsg}},[e._v("快速键入")])]),s("view",{staticClass:"feedback-body"},[s("textarea",{directives:[{name:"model",rawName:"v-model",value:e.sendDate.content,expression:"sendDate.content"}],staticClass:"feedback-textare",attrs:{placeholder:"请随便写点什么吧...",eventid:"FrO-1"},domProps:{value:e.sendDate.content},on:{input:function(t){t.target.composing||(e.sendDate.content=t.target.value)}}})]),e._m(0),s("view",{staticClass:"feedback-body feedback-uploader"},[s("view",{staticClass:"uni-uploader"},[s("view",{staticClass:"uni-uploader-head"},[s("view",{staticClass:"uni-uploader-title"},[e._v("点击预览图片")]),s("view",{staticClass:"uni-uploader-info"},[e._v(e._s(e.imageList.length)+"/9")])]),s("view",{staticClass:"uni-uploader-body"},[s("view",{staticClass:"uni-uploader__files"},[e._l(e.imageList,function(t,i){return s("block",{key:i},[s("view",{staticClass:"uni-uploader__file",staticStyle:{position:"relative"}},[s("image",{staticClass:"uni-uploader__img",attrs:{src:t,eventid:"Dz4-2-"+i},on:{tap:e.previewImage}}),s("view",{staticClass:"close-view",attrs:{eventid:"99R-3-"+i},on:{click:function(t){e.close(i)}}},[e._v("x")])])])}),s("view",{directives:[{name:"show",rawName:"v-show",value:e.imageList.length<9,expression:"imageList.length < 9"}],staticClass:"uni-uploader__input-box"},[s("view",{staticClass:"uni-uploader__input",attrs:{eventid:"Ogk-4"},on:{tap:e.chooseImg}})])],2)])])]),s("view",{staticClass:"foot"},[s("button",{attrs:{type:"default",eventid:"oJ6-5"},on:{click:function(t){e.send()}}},[e._v("反馈")])],1)])};i._withStripped=!0;var a={render:i,staticRenderFns:[function(){var e=this.$createElement,t=this._self._c||e;return t("view",{staticClass:"feedback-title"},[t("text",[this._v("图片(选填,提供问题截图,总大小10M以下)")])])}]};t.a=a}],[9]);
4 | //# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/report/feedback.js.map
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/report/feedback.json:
--------------------------------------------------------------------------------
1 | {"navigationBarTitleText":"反馈"}
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/report/feedback.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 快速键入
5 |
6 |
7 |
8 |
9 |
10 | 图片(选填,提供问题截图,总大小10M以下)
11 |
12 |
13 |
14 |
15 | 点击预览图片
16 | {{imageList.length}}/9
17 |
18 |
19 |
20 |
21 |
22 |
23 | x
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
36 |
37 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/report/feedback.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/report/feedback.wxss:
--------------------------------------------------------------------------------
1 |
2 | @font-face {
3 | font-family: uniicons;
4 | font-weight: normal;
5 | font-style: normal;
6 | src: url('https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf') format('truetype');
7 | }
8 | .page {
9 | background-color: #EFEFF4;
10 | padding: 10rpx;
11 | width: 100%;
12 | height: 100%;
13 | }
14 | view {
15 | font-size: 28rpx;
16 | }
17 | .input-view {
18 | font-size: 28rpx;
19 | }
20 | .close-view {
21 | text-align: center;
22 | line-height: 14px;
23 | height: 16px;
24 | width: 16px;
25 | border-radius: 50%;
26 | background: #FF5053;
27 | color: #FFFFFF;
28 | position: absolute;
29 | top: -6px;
30 | right: -4px;
31 | font-size: 12px;
32 | }
33 | .uni-uploader {
34 | -webkit-box-flex: 1;
35 | -webkit-flex: 1;
36 | flex: 1;
37 | -webkit-box-orient: vertical;
38 | -webkit-box-direction: normal;
39 | -webkit-flex-direction: column;
40 | flex-direction: column;
41 | }
42 | .uni-uploader-head {
43 | display: -webkit-box;
44 | display: -webkit-flex;
45 | display: flex;
46 | -webkit-box-orient: horizontal;
47 | -webkit-box-direction: normal;
48 | -webkit-flex-direction: row;
49 | flex-direction: row;
50 | -webkit-box-pack: justify;
51 | -webkit-justify-content: space-between;
52 | justify-content: space-between;
53 | }
54 | .uni-uploader-info {
55 | color: #B2B2B2;
56 | }
57 | .uni-uploader-body {
58 | margin-top: 16rpx;
59 | }
60 | .uni-uploader__files {
61 | display: -webkit-box;
62 | display: -webkit-flex;
63 | display: flex;
64 | -webkit-box-orient: horizontal;
65 | -webkit-box-direction: normal;
66 | -webkit-flex-direction: row;
67 | flex-direction: row;
68 | -webkit-flex-wrap: wrap;
69 | flex-wrap: wrap;
70 | }
71 | .uni-uploader__file {
72 | margin: 10rpx;
73 | width: 210rpx;
74 | height: 210rpx;
75 | }
76 | .uni-uploader__img {
77 | display: block;
78 | width: 210rpx;
79 | height: 210rpx;
80 | }
81 | .uni-uploader__input-box {
82 | position: relative;
83 | margin: 10rpx;
84 | width: 208rpx;
85 | height: 208rpx;
86 | border: 2rpx solid #D9D9D9;
87 | }
88 | .uni-uploader__input-box:before,
89 | .uni-uploader__input-box:after {
90 | content: " ";
91 | position: absolute;
92 | top: 50%;
93 | left: 50%;
94 | -webkit-transform: translate(-50%, -50%);
95 | transform: translate(-50%, -50%);
96 | background-color: #D9D9D9;
97 | }
98 | .uni-uploader__input-box:before {
99 | width: 4rpx;
100 | height: 79rpx;
101 | }
102 | .uni-uploader__input-box:after {
103 | width: 79rpx;
104 | height: 4rpx;
105 | }
106 | .uni-uploader__input-box:active {
107 | border-color: #999999;
108 | }
109 | .uni-uploader__input-box:active:before,
110 | .uni-uploader__input-box:active:after {
111 | background-color: #999999;
112 | }
113 | .uni-uploader__input {
114 | position: absolute;
115 | z-index: 1;
116 | top: 0;
117 | left: 0;
118 | width: 100%;
119 | height: 100%;
120 | opacity: 0;
121 | }
122 | .feedback-title {
123 | display: -webkit-box;
124 | display: -webkit-flex;
125 | display: flex;
126 | -webkit-box-orient: horizontal;
127 | -webkit-box-direction: normal;
128 | -webkit-flex-direction: row;
129 | flex-direction: row;
130 | -webkit-box-pack: justify;
131 | -webkit-justify-content: space-between;
132 | justify-content: space-between;
133 | -webkit-box-align: center;
134 | -webkit-align-items: center;
135 | align-items: center;
136 | padding: 10rpx;
137 | color: #8f8f94;
138 | font-size: 28rpx;
139 | }
140 | .feedback-star-view.feedback-title {
141 | -webkit-box-pack: start;
142 | -webkit-justify-content: flex-start;
143 | justify-content: flex-start;
144 | margin: 0;
145 | }
146 | .feedback-quick {
147 | position: relative;
148 | padding-right: 40rpx;
149 | }
150 | .feedback-quick:after {
151 | font-family: uniicons;
152 | font-size: 40rpx;
153 | content: '\E581';
154 | position: absolute;
155 | right: 0;
156 | top: 50%;
157 | color: #bbb;
158 | -webkit-transform: translateY(-50%);
159 | transform: translateY(-50%);
160 | }
161 | .feedback-body {
162 | background: #fff;
163 | }
164 | .feedback-textare {
165 | height: 200rpx;
166 | font-size: 34rpx;
167 | line-height: 50rpx;
168 | width: 100%;
169 | box-sizing: border-box;
170 | padding: 20rpx 30rpx 0;
171 | }
172 | .feedback-input {
173 | font-size: 34rpx;
174 | height: 50rpx;
175 | min-height: 50rpx;
176 | padding: 15rpx 10rpx;
177 | line-height: 50rpx;
178 | }
179 | .foot {
180 | position: fixed;
181 | width: 100%;
182 | height: 90px;
183 | min-height: 90px;
184 | left: 0px;
185 | bottom: 0px;
186 | overflow: hidden;
187 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/mine.js:
--------------------------------------------------------------------------------
1 | require("../../common/manifest.js");
2 | require("../../common/vendor.js");
3 | global.webpackJsonp([5],{25:function(e,t,s){"use strict";var n=o(s(2)),i=o(s(26));function o(e){return e&&e.__esModule?e:{default:e}}Page((0,n.default)(i.default))},26:function(e,t,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=s(28),i=s.n(n),o=s(29),a=!1;var u=function(e){a||s(27)},c=s(0)(i.a,o.a,u,null,null);c.options.__file="E:\\uniapp\\FeedBackStar\\pages\\user\\mine.vue",c.esModule&&Object.keys(c.esModule).some(function(e){return"default"!==e&&"__"!==e.substr(0,2)})&&console.error("named exports are not supported in *.vue files."),c.options.functional&&console.error("[vue-loader] mine.vue: functional components are not supported with templates, they should use render functions."),t.default=c.exports},27:function(e,t){},28:function(e,t,s){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0});var n=o(s(31)),i=o(s(35));function o(e){return e&&e.__esModule?e:{default:e}}t.default={data:function(){return{style:{pageHeight:0,contentViewHeight:0,footViewHeight:90,mitemHeight:0},scrollTop:0,messages:[{user:"home",type:"head",content:"你好!"}]}},components:{chatInput:n.default,messageShow:i.default},created:function(){var t=e.getSystemInfoSync();this.style.pageHeight=t.windowHeight,this.style.contentViewHeight=t.windowHeight-e.getSystemInfoSync().screenWidth/750*100},methods:{getInputMessage:function(e){this.addMessage("customer",e.content,!1),this.toRobot(e.content)},addMessage:function(e,t,s,n){this.messages.push({user:e,content:t,hasSub:s,subcontent:n})},scrollToBottom:function(){var t=this,s=e.createSelectorQuery();s.selectAll(".m-item").boundingClientRect(),s.select("#scrollview").boundingClientRect(),s.exec(function(e){t.style.mitemHeight=0,e[0].forEach(function(e){t.style.mitemHeight=t.style.mitemHeight+e.height+20}),t.style.mitemHeight>t.style.contentViewHeight&&(t.scrollTop=t.style.mitemHeight-t.style.contentViewHeight)})},toRobot:function(t){var s=this;e.request({url:"http://www.tuling123.com/openapi/api",data:{key:"0f35e44683794241b5fb0d61bf09713e",info:t,userid:"uni-test"},success:function(e){s.addMessage("home",e.data.text,!1),s.scrollToBottom(),console.log("request success:"+e.data.text)},fail:function(t){console.log("request fail",t),e.showModal({content:t.errMsg,showCancel:!1})}})}}}}).call(t,s(13).default)},29:function(e,t,s){"use strict";var n=function(){var e=this.$createElement,t=this._self._c||e;return t("view",{staticClass:"uni-column"},[t("view",{staticClass:"content",style:{height:this.style.contentViewHeight+"px"},attrs:{id:"content"}},[t("scroll-view",{style:{height:this.style.contentViewHeight+"px"},attrs:{id:"scrollview","scroll-y":"true","scroll-with-animation":!0,"scroll-top":this.scrollTop}},[this._l(this.messages,function(e,s){return t("message-show",{key:s,attrs:{message:e,id:s,mpcomid:"1pE-0-"+s}})}),t("view",{attrs:{id:"bottom"}})],2)],1),t("view",{staticClass:"foot"},[t("chat-input",{attrs:{eventid:"PiD-0",mpcomid:"Rdo-1"},on:{"send-message":this.getInputMessage}})],1)])};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i},31:function(e,t,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=s(33),i=s.n(n),o=s(34),a=!1;var u=function(e){a||s(32)},c=s(0)(i.a,o.a,u,null,null);c.options.__file="E:\\uniapp\\FeedBackStar\\components\\chatinput.vue",c.esModule&&Object.keys(c.esModule).some(function(e){return"default"!==e&&"__"!==e.substr(0,2)})&&console.error("named exports are not supported in *.vue files."),c.options.functional&&console.error("[vue-loader] chatinput.vue: functional components are not supported with templates, they should use render functions."),t.default=c.exports},32:function(e,t){},33:function(e,t,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={name:"chat-input",data:function(){return{inputValue:""}},methods:{startRecognize:function(){var e={},t=this;e.engine="iFly",t.inputValue="",plus.speech.startRecognize(e,function(e){console.log(e),t.inputValue+=e},function(e){console.log("语音识别失败:"+e.message)})},sendMessge:function(){""==this.inputValue.trim()?this.inputValue="":(this.$emit("send-message",{type:"text",content:this.inputValue}),this.inputValue="")}}}},34:function(e,t,s){"use strict";var n=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("view",{staticClass:"footer"},[s("view",{staticClass:"footer-left"},[s("view",{staticClass:"uni-icon uni-icon-mic",attrs:{eventid:"Qtv-0"},on:{tap:e.startRecognize}})]),s("view",{staticClass:"footer-center"},[s("input",{directives:[{name:"model",rawName:"v-model",value:e.inputValue,expression:"inputValue"}],staticClass:"input-text",attrs:{type:"text",eventid:"Jck-1"},domProps:{value:e.inputValue},on:{input:function(t){t.target.composing||(e.inputValue=t.target.value)}}})]),s("view",{staticClass:"footer-right",attrs:{eventid:"7Z0-2"},on:{tap:e.sendMessge}},[s("view",{attrs:{id:"msg-type"}},[e._v("发送")])])])};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i},35:function(e,t,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=s(37),i=s.n(n),o=s(38),a=!1;var u=function(e){a||s(36)},c=s(0)(i.a,o.a,u,null,null);c.options.__file="E:\\uniapp\\FeedBackStar\\components\\messageshow.vue",c.esModule&&Object.keys(c.esModule).some(function(e){return"default"!==e&&"__"!==e.substr(0,2)})&&console.error("named exports are not supported in *.vue files."),c.options.functional&&console.error("[vue-loader] messageshow.vue: functional components are not supported with templates, they should use render functions."),t.default=c.exports},36:function(e,t){},37:function(e,t,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={props:["message","id"]}},38:function(e,t,s){"use strict";var n=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("view",{staticClass:"m-item",attrs:{id:"message"+e.id}},[s("view",{staticClass:"m-left"},["home"==e.message.user?s("image",{staticClass:"head_icon",attrs:{src:"https://img-cdn-qiniu.dcloud.net.cn/uniapp/app/homeHL.png"}}):e._e()]),s("view",{staticClass:"m-content"},[s("view",{staticClass:"m-content-head",class:{"m-content-head-right":"customer"==e.message.user}},[s("view",{class:"m-content-head-"+e.message.user},[e._v(e._s(e.message.content)+" ")])])]),s("view",{staticClass:"m-right"},["customer"==e.message.user?s("image",{staticClass:"head_icon",attrs:{src:"https://img-cdn-qiniu.dcloud.net.cn/uniapp/app/customerHL.png"}}):e._e()])])};n._withStripped=!0;var i={render:n,staticRenderFns:[]};t.a=i}},[25]);
4 | //# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/user/mine.js.map
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/mine.json:
--------------------------------------------------------------------------------
1 | {"navigationBarTitleText":"聊天"}
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/mine.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
14 |
15 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/mine.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/mine.wxss:
--------------------------------------------------------------------------------
1 |
2 | .uni-column {
3 | display: -webkit-box;
4 | display: -webkit-flex;
5 | display: flex;
6 | -webkit-box-orient: vertical;
7 | -webkit-box-direction: normal;
8 | -webkit-flex-direction: column;
9 | flex-direction: column;
10 | }
11 | .content {
12 | display: -webkit-box;
13 | display: -webkit-flex;
14 | display: flex;
15 | -webkit-box-flex: 1;
16 | -webkit-flex: 1;
17 | flex: 1;
18 | margin-bottom: 100px;
19 | }
20 | .foot {
21 | position: fixed;
22 | width: 100%;
23 | height: 90px;
24 | min-height: 90px;
25 | left: 0px;
26 | bottom: 0px;
27 | overflow: hidden;
28 | }
29 | .footer {
30 | display: -webkit-box;
31 | display: -webkit-flex;
32 | display: flex;
33 | -webkit-box-orient: horizontal;
34 | -webkit-box-direction: normal;
35 | -webkit-flex-direction: row;
36 | flex-direction: row;
37 | width: 100%;
38 | height: 80rpx;
39 | min-height: 80rpx;
40 | border-top: solid 1px #bbb;
41 | overflow: hidden;
42 | padding: 5rpx;
43 | background-color: #fafafa;
44 | }
45 | .footer-left {
46 | width: 80rpx;
47 | height: 80rpx;
48 | display: -webkit-box;
49 | display: -webkit-flex;
50 | display: flex;
51 | -webkit-box-pack: center;
52 | -webkit-justify-content: center;
53 | justify-content: center;
54 | -webkit-box-align: center;
55 | -webkit-align-items: center;
56 | align-items: center;
57 | }
58 | .footer-right {
59 | width: 120rpx;
60 | height: 80rpx;
61 | display: -webkit-box;
62 | display: -webkit-flex;
63 | display: flex;
64 | -webkit-box-pack: center;
65 | -webkit-justify-content: center;
66 | justify-content: center;
67 | -webkit-box-align: center;
68 | -webkit-align-items: center;
69 | align-items: center;
70 | color: #1482D1;
71 | }
72 | .footer-center {
73 | -webkit-box-flex: 1;
74 | -webkit-flex: 1;
75 | flex: 1;
76 | height: 80rpx;
77 | display: -webkit-box;
78 | display: -webkit-flex;
79 | display: flex;
80 | -webkit-box-pack: center;
81 | -webkit-justify-content: center;
82 | justify-content: center;
83 | -webkit-box-align: center;
84 | -webkit-align-items: center;
85 | align-items: center;
86 | }
87 | .footer-center .input-text {
88 | -webkit-box-flex: 1;
89 | -webkit-flex: 1;
90 | flex: 1;
91 | background: #fff;
92 | border: solid 1rpx #ddd;
93 | padding: 10rpx !important;
94 | font-family: verdana !important;
95 | overflow: hidden;
96 | border-radius: 15rpx;
97 | }
98 | .m-item {
99 | display: -webkit-box;
100 | display: -webkit-flex;
101 | display: flex;
102 | -webkit-box-orient: horizontal;
103 | -webkit-box-direction: normal;
104 | -webkit-flex-direction: row;
105 | flex-direction: row;
106 | padding-top: 40rpx;
107 | }
108 | .m-left {
109 | display: -webkit-box;
110 | display: -webkit-flex;
111 | display: flex;
112 | width: 120rpx;
113 | -webkit-box-pack: center;
114 | -webkit-justify-content: center;
115 | justify-content: center;
116 | -webkit-box-align: start;
117 | -webkit-align-items: flex-start;
118 | align-items: flex-start;
119 | }
120 | .m-content {
121 | display: -webkit-box;
122 | display: -webkit-flex;
123 | display: flex;
124 | -webkit-box-flex: 1;
125 | -webkit-flex: 1;
126 | flex: 1;
127 | -webkit-box-orient: vertical;
128 | -webkit-box-direction: normal;
129 | -webkit-flex-direction: column;
130 | flex-direction: column;
131 | -webkit-box-pack: center;
132 | -webkit-justify-content: center;
133 | justify-content: center;
134 | word-break: break-all;
135 | }
136 | .m-right {
137 | display: -webkit-box;
138 | display: -webkit-flex;
139 | display: flex;
140 | width: 120rpx;
141 | -webkit-box-pack: center;
142 | -webkit-justify-content: center;
143 | justify-content: center;
144 | -webkit-box-align: start;
145 | -webkit-align-items: flex-start;
146 | align-items: flex-start;
147 | }
148 | .head_icon {
149 | width: 80rpx;
150 | height: 80rpx;
151 | }
152 | .m-content-head {
153 | position: relative;
154 | }
155 | .m-content-head-right {
156 | display: -webkit-box;
157 | display: -webkit-flex;
158 | display: flex;
159 | -webkit-box-pack: end;
160 | -webkit-justify-content: flex-end;
161 | justify-content: flex-end;
162 | }
163 | .m-content-head-home {
164 | text-align: left;
165 | background: #1482d1;
166 | border: 1px #1482d1 solid;
167 | border-radius: 20rpx;
168 | padding: 20rpx;
169 | color: white;
170 | }
171 | .m-content-head-home:before {
172 | border: 15rpx solid transparent;
173 | border-right: 15rpx solid #1482d1;
174 | left: -26rpx;
175 | width: 0;
176 | height: 0;
177 | position: absolute;
178 | content: ' ';
179 | }
180 | .m-content-head-customer {
181 | border: 1rpx white solid;
182 | background: white;
183 | border-radius: 20rpx;
184 | padding: 20rpx;
185 | }
186 | .m-content-head-customer:after {
187 | border: 15rpx solid transparent;
188 | border-left: 15rpx solid white;
189 | top: 20rpx;
190 | right: -26rpx;
191 | width: 0;
192 | height: 0;
193 | position: absolute;
194 | content: ' ';
195 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/my.js:
--------------------------------------------------------------------------------
1 | require("../../common/manifest.js");
2 | require("../../common/vendor.js");
3 | global.webpackJsonp([2],{15:function(e,t,n){"use strict";var s=u(n(2)),o=u(n(16));function u(e){return e&&e.__esModule?e:{default:e}}Page((0,s.default)(o.default))},16:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=n(18),o=n.n(s),u=n(19),r=!1;var a=function(e){r||n(17)},i=n(0)(o.a,u.a,a,null,null);i.options.__file="E:\\uniapp\\FeedBackStar\\pages\\user\\my.vue",i.esModule&&Object.keys(i.esModule).some(function(e){return"default"!==e&&"__"!==e.substr(0,2)})&&console.error("named exports are not supported in *.vue files."),i.options.functional&&console.error("[vue-loader] my.vue: functional components are not supported with templates, they should use render functions."),t.default=i.exports},17:function(e,t){},18:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default={data:function(){return{title:"没有找到您的数据呢!"}},onLoad:function(){},methods:{}}},19:function(e,t,n){"use strict";var s=function(){var e=this.$createElement,t=this._self._c||e;return t("view",{staticClass:"content"},[t("image",{staticClass:"logo",attrs:{src:"../../static/logo.png"}}),t("view",[t("text",{staticClass:"title"},[this._v(this._s(this.title))])])])};s._withStripped=!0;var o={render:s,staticRenderFns:[]};t.a=o}},[15]);
4 | //# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/user/my.js.map
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/my.json:
--------------------------------------------------------------------------------
1 | {"navigationBarTitleText":"我的"}
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/my.vue.wxml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {{title}}
6 |
7 |
8 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/my.wxml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/pages/user/my.wxss:
--------------------------------------------------------------------------------
1 |
2 | .content {
3 | text-align: center;
4 | height: 400rpx;
5 | }
6 | .logo {
7 | height: 200rpx;
8 | width: 200rpx;
9 | margin-top: 200rpx;
10 | }
11 | .title {
12 | font-size: 36rpx;
13 | color: #8f8f94;
14 | }
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/project.config.json:
--------------------------------------------------------------------------------
1 | {"description":"项目配置文件。","packOptions":{"ignore":[]},"setting":{"urlCheck":true,"es6":false,"postcss":false,"minified":false,"newFeature":true},"compileType":"miniprogram","libVersion":"","appid":"touristappid","projectname":"FeedBackStar","condition":{"search":{"current":-1,"list":[]},"conversation":{"current":-1,"list":[]},"game":{"current":-1,"list":[]},"miniprogram":{"current":-1,"list":[]}}}
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/feedback(1).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/feedback(1).png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/feedback(2).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/feedback(2).png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/feedback(3).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/feedback(3).png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/img_tab_01_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/img_tab_01_c.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/img_tab_01_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/img_tab_01_d.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tab_01_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/tab_01_c.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tab_01_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/tab_01_d.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tab_02_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/tab_02_c.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/tab_02_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/tab_02_d.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/ybb_feedback(1).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/ybb_feedback(1).png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/img/ybb_feedback.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/img/ybb_feedback.png
--------------------------------------------------------------------------------
/unpackage/dist/dev/mp-weixin/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/dist/dev/mp-weixin/static/logo.png
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/__uniappcoverview.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
281 |
282 |
283 |
284 |
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/__uniappmarker@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/resources/__UNI__5270176/www/__uniappmarker@3x.png
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/__uniappscan.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 扫码
8 |
22 |
23 |
24 |
25 |
26 |
27 |
118 |
119 |
120 |
121 |
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/__uniappsuccess.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/resources/__UNI__5270176/www/__uniappsuccess.png
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/manifest.json:
--------------------------------------------------------------------------------
1 | {"@platforms":["android","iPhone","iPad"],"id":"__UNI__5270176","name":"FeedBackStar","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappservice.html","developer":{"name":"","email":"","url":""},"permissions":{},"plus":{"useragent":{"value":"uni-app appservice","concatenate":true},"splashscreen":{"autoclose":false,"waiting":true},"popGesture":"close","statusbar":{"immersed":"supportedDevice","style":"light","background":"#1b6edd"},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}}}}
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/pages/report/feedback.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead(["@font-face{font-family:uniicons;font-weight:400;font-style:normal;src:url(\x22https://img-cdn-qiniu.dcloud.net.cn/fonts/uni.ttf\x22) format(\x22truetype\x22)}\n.",[1],"page{background-color:#efeff4;padding:",[0,10],";width:100%;height:100%}\n.",[1],"input-view,wx-view{font-size:",[0,28],"}\n.",[1],"close-view{text-align:center;line-height:14px;height:16px;width:16px;border-radius:50%;background:#ff5053;color:#fff;position:absolute;top:-6px;right:-4px;font-size:12px}\n.",[1],"uni-uploader{-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}\n.",[1],"uni-uploader-head{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}\n.",[1],"uni-uploader-info{color:#b2b2b2}\n.",[1],"uni-uploader-body{margin-top:",[0,16],"}\n.",[1],"uni-uploader__files{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;flex-wrap:wrap}\n.",[1],"uni-uploader__file{margin:",[0,10],";width:",[0,210],";height:",[0,210],"}\n.",[1],"uni-uploader__img{display:block;width:",[0,210],";height:",[0,210],"}\n.",[1],"uni-uploader__input-box{position:relative;margin:",[0,10],";width:",[0,208],";height:",[0,208],";border:",[0,2]," solid #d9d9d9}\n.",[1],"uni-uploader__input-box:after,.",[1],"uni-uploader__input-box:before{content:\x22 \x22;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#d9d9d9}\n.",[1],"uni-uploader__input-box:before{width:",[0,4],";height:",[0,79],"}\n.",[1],"uni-uploader__input-box:after{width:",[0,79],";height:",[0,4],"}\n.",[1],"uni-uploader__input-box:active{border-color:#999}\n.",[1],"uni-uploader__input-box:active:after,.",[1],"uni-uploader__input-box:active:before{background-color:#999}\n.",[1],"uni-uploader__input{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;opacity:0}\n.",[1],"feedback-title{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:",[0,10],";color:#8f8f94;font-size:",[0,28],"}\n.",[1],"feedback-star-view.",[1],"feedback-title{-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;margin:0}\n.",[1],"feedback-quick{position:relative;padding-right:",[0,40],"}\n.",[1],"feedback-quick:after{font-family:uniicons;font-size:",[0,40],";content:\x22\\E581\x22;position:absolute;right:0;top:50%;color:#bbb;-webkit-transform:translateY(-50%);transform:translateY(-50%)}\n.",[1],"feedback-body{background:#fff}\n.",[1],"feedback-textare{height:",[0,200],";font-size:",[0,34],";line-height:",[0,50],";width:100%;box-sizing:border-box;padding:",[0,20]," ",[0,30]," 0}\n.",[1],"feedback-input{font-size:",[0,34],";height:",[0,50],";min-height:",[0,50],";padding:",[0,15]," ",[0,10],";line-height:",[0,50],"}\n.",[1],"foot{position:fixed;width:100%;height:90px;min-height:90px;left:0;bottom:0;overflow:hidden}\n",],undefined,{path:"./pages/report/feedback.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/report/feedback.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/pages/user/mine.js:
--------------------------------------------------------------------------------
1 |
2 | !(function(){
3 | var uniAppViewReadyCallback = function(){
4 | setCssToHead([".",[1],"uni-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}\n.",[1],"content,.",[1],"uni-column{display:-webkit-box;display:-webkit-flex;display:flex}\n.",[1],"content{-webkit-box-flex:1;-webkit-flex:1;flex:1;margin-bottom:100px}\n.",[1],"foot{position:fixed;width:100%;height:90px;min-height:90px;left:0;bottom:0;overflow:hidden}\n.",[1],"footer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;width:100%;height:",[0,80],";min-height:",[0,80],";border-top:1px solid #bbb;overflow:hidden;padding:",[0,5],";background-color:#fafafa}\n.",[1],"footer-left{width:",[0,80],"}\n.",[1],"footer-left,.",[1],"footer-right{height:",[0,80],";display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}\n.",[1],"footer-right{width:",[0,120],";color:#1482d1}\n.",[1],"footer-center{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:",[0,80],";display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}\n.",[1],"footer-center .",[1],"input-text{-webkit-box-flex:1;-webkit-flex:1;flex:1;background:#fff;border:",[0,1]," solid #ddd;padding:",[0,10],"!important;font-family:verdana!important;overflow:hidden;border-radius:",[0,15],"}\n.",[1],"m-item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;padding-top:",[0,40],"}\n.",[1],"m-left{width:",[0,120],";-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}\n.",[1],"m-content,.",[1],"m-left{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}\n.",[1],"m-content{-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;word-break:break-all}\n.",[1],"m-right{display:-webkit-box;display:-webkit-flex;display:flex;width:",[0,120],";-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}\n.",[1],"head_icon{width:",[0,80],";height:",[0,80],"}\n.",[1],"m-content-head{position:relative}\n.",[1],"m-content-head-right{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}\n.",[1],"m-content-head-home{text-align:left;background:#1482d1;border:1px solid #1482d1;border-radius:",[0,20],";padding:",[0,20],";color:#fff}\n.",[1],"m-content-head-home:before{border:",[0,15]," solid transparent;border-right:",[0,15]," solid #1482d1;left:",[0,-26],";width:0;height:0;position:absolute;content:\x22 \x22}\n.",[1],"m-content-head-customer{border:",[0,1]," solid #fff;background:#fff;border-radius:",[0,20],";padding:",[0,20],"}\n.",[1],"m-content-head-customer:after{border:",[0,15]," solid transparent;border-left:",[0,15]," solid #fff;top:",[0,20],";right:",[0,-26],";width:0;height:0;position:absolute;content:\x22 \x22}\n",],undefined,{path:"./pages/user/mine.wxss"})();
5 | document.dispatchEvent(new CustomEvent("generateFuncReady", { detail: { generateFunc: $gwx('./pages/user/mine.wxml') } }));
6 | }
7 | if(window.__uniAppViewReady__){
8 | uniAppViewReadyCallback()
9 | }else{
10 | document.addEventListener('uniAppViewReady',uniAppViewReadyCallback)
11 | }
12 | })();
13 |
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/static/img/tab_01_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/resources/__UNI__5270176/www/static/img/tab_01_c.png
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/static/img/tab_01_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/resources/__UNI__5270176/www/static/img/tab_01_d.png
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/static/img/tab_02_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/resources/__UNI__5270176/www/static/img/tab_02_c.png
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/static/img/tab_02_d.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/resources/__UNI__5270176/www/static/img/tab_02_d.png
--------------------------------------------------------------------------------
/unpackage/resources/__UNI__5270176/www/static/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XieXiePro/FeedBackStar/d8407387e283c1b4a062d2669fe670135b056f60/unpackage/resources/__UNI__5270176/www/static/logo.png
--------------------------------------------------------------------------------