diff --git a/client/src/styles/index.scss b/client/src/styles/index.scss
index d183a49..f6cd4b5 100644
--- a/client/src/styles/index.scss
+++ b/client/src/styles/index.scss
@@ -119,4 +119,13 @@ body .el-table colgroup.gutter{
margin-bottom: 16px;
}
+/*1.显示滚动条:当内容超出容器的时候,可以拖动:*/
+.el-drawer__body {
+ overflow: auto;
+}
+/*2.隐藏滚动条,太丑了*/
+// .el-drawer__container ::-webkit-scrollbar{
+// display: none;
+// }
+
diff --git a/client/src/views/supervision/mytaskrecord.vue b/client/src/views/supervision/mytaskrecord.vue
index 69ec441..d75f54c 100644
--- a/client/src/views/supervision/mytaskrecord.vue
+++ b/client/src/views/supervision/mytaskrecord.vue
@@ -92,34 +92,25 @@
编辑
- 报送
- 确认
+ v-if="
+ scope.row.state == '待报送' &&
+ checkPermission(['record_up'])
+ "
+ type="primary"
+ size="small"
+ @click="handleRecord({ action: 'up', record: scope.row })"
+ >报送
+ 重报
查看
- 删除
diff --git a/client/src/views/supervision/record.vue b/client/src/views/supervision/record.vue
index 485dbd2..cc941ae 100644
--- a/client/src/views/supervision/record.vue
+++ b/client/src/views/supervision/record.vue
@@ -283,7 +283,6 @@
:visible.sync="drawer"
:with-header="false"
size="40%"
- style="overflow-y:auto"
>
-
+
报送记录
diff --git a/client_mp/.gitignore b/client_mp/.gitignore
index bcae4da..92fa10e 100644
--- a/client_mp/.gitignore
+++ b/client_mp/.gitignore
@@ -1,3 +1,4 @@
node_modules/*
deploy.sh
-package-lock.json
\ No newline at end of file
+package-lock.json
+unpackage/*
\ No newline at end of file
diff --git a/client_mp/App.vue b/client_mp/App.vue
index d8c41ed..ac8bcb0 100644
--- a/client_mp/App.vue
+++ b/client_mp/App.vue
@@ -13,6 +13,13 @@
/**
* h5,app-plus(nvue下也为app-plus),mp-weixin,mp-alipay......
*/
+ this.$u.api.getUserInfo().then(res=>{
+ this.$u.vuex('vuex_user', res.data)
+ }).catch(e=>{
+ uni.reLaunch({
+ url:'/pages/login/login'
+ })
+ })
},
}
diff --git a/client_mp/common/http.api.js b/client_mp/common/http.api.js
index d465d13..1ca9035 100644
--- a/client_mp/common/http.api.js
+++ b/client_mp/common/http.api.js
@@ -19,12 +19,35 @@ const install = (Vue, vm) => {
let login = (params = {}) => vm.$u.post('/token/', params); //账户密码登录
// 将各个定义的接口名称,统一放进对象挂载到vm.$u.api(因为vm就是this,也即this.$u.api)下
- let getMyInspectTask = (params = {}) => vm.$u.get('/quality/subinspecttask/self/', params);
+ let getMyInspectTaskList = (params = {}) => vm.$u.get('/quality/subinspecttask/self/', params);
+
+ let getSubinspectTask = (id, params)=> vm.$u.get(`/quality/subinspecttask/${id}/`, params);
+
+ //获取子任务涉及的单位
+ let getSubtaskDepts = (id, params)=> vm.$u.get(`/quality/subinspecttask/${id}/depts/`, params);
+
+ //获取子任务单位的详细信息
+ let getSubtaskDept = (id, params)=> vm.$u.get(`/quality/inspectdept/${id}/`, params);
+ let getInspectRecords = (params)=> vm.$u.get('/quality/inspectrecord/', params);
+
+ let getInspectRecord = (id, params)=> vm.$u.get(`/quality/inspectrecord/${id}/`, params);
+
+ let checkInspectRecord = (id, params)=> vm.$u.put(`/quality/inspectrecord/${id}/check/`, params);
+
+ let upInspectDept = (id, params)=>vm.$u.put(`/quality/inspectdept/${id}/up/`, params);
vm.$u.api = {getUserInfo,
getCode,
codeLogin,
login,
- getMyInspectTask};
+ getMyInspectTaskList,
+ getSubinspectTask,
+ getSubtaskDepts,
+ getInspectRecords,
+ getSubtaskDept,
+ getInspectRecord,
+ checkInspectRecord,
+ upInspectDept
+ };
}
export default {
diff --git a/client_mp/common/http.interceptor.js b/client_mp/common/http.interceptor.js
index 9e2eeaa..f9ef57a 100644
--- a/client_mp/common/http.interceptor.js
+++ b/client_mp/common/http.interceptor.js
@@ -3,7 +3,7 @@
const install = (Vue, vm) => {
Vue.prototype.$u.http.setConfig({
// baseUrl: 'https://api.youzixy.com',
- baseUrl: 'http://10.0.11.127:8000/api',
+ baseUrl: vm.vuex_api,
// 如果将此值设置为true,拦截回调中将会返回服务端返回的所有数据response,而不是response.data
// 设置为true后,就需要在this.$u.http.interceptor.response进行多一次的判断,请打印查看具体值
// originalData: true,
@@ -47,14 +47,21 @@ const install = (Vue, vm) => {
}
else if(res.code === 401){
vm.$u.toast('验证失败,请重新登录');
- setTimeout(() => {
- // 此为uView的方法,详见路由相关文档
- vm.$u.route('/pages/login/login')
- }, 1500)
+ // uni.reLaunch({
+ // url:'/pages/login/login'
+ // })
return false;
}
else{
- vm.$u.toast(res.msg);
+ if(typeof(res.msg)=='string'){
+ vm.$u.toast(res.msg)
+ }else{
+ let msg = JSON.stringify(res.msg)
+ vm.$u.toast(res.msg)
+ }
+
+
+
return false;
}
}
diff --git a/client_mp/manifest.json b/client_mp/manifest.json
index 73aba0b..5ca3c99 100644
--- a/client_mp/manifest.json
+++ b/client_mp/manifest.json
@@ -30,7 +30,6 @@
"",
"",
"",
- "",
"",
"",
"",
@@ -45,7 +44,6 @@
"",
"",
"",
- "",
"",
"",
"",
@@ -60,7 +58,8 @@
"",
"",
""
- ]
+ ],
+ "autoSdkPermissions" : true
},
/* ios打包配置 */
"ios" : {
@@ -70,7 +69,8 @@
"sdkConfigs" : {
"speech" : {
"ifly" : {}
- }
+ },
+ "ad" : {}
},
"orientation" : [ "portrait-primary" ]
}
@@ -82,7 +82,7 @@
"appid" : "wx126bdbf0c683c357",
"setting" : {
"urlCheck" : false,
- "minified" : false
+ "minified" : true
},
"usingComponents" : true
},
diff --git a/client_mp/pages.json b/client_mp/pages.json
index f1dda24..153781a 100644
--- a/client_mp/pages.json
+++ b/client_mp/pages.json
@@ -20,49 +20,7 @@
}
},
- // 演示-组件
- {
- "path": "pages/example/components",
- "style": {
- "navigationBarTitleText": "组件"
- }
- },
- // avatarCropper-头像裁剪
- {
- "path": "uview-ui/components/u-avatar-cropper/u-avatar-cropper",
- "style": {
- "navigationBarTitleText": "头像裁剪",
- "navigationBarBackgroundColor": "#000000"
- }
- },
- // 演示-工具
- {
- "path": "pages/example/js",
- "style": {
- "navigationBarTitleText": "工具"
- }
- },
- // 演示-模板
- {
- "path": "pages/example/template",
- "style": {
- "navigationBarTitleText": "模板"
- }
- },
- // fullScreen-压窗屏
- {
- "path": "uview-ui/components/u-full-screen/u-full-screen",
- "style": {
- "navigationStyle": "custom",
- "app-plus": {
- "animationType": "fade-in",
- "background": "transparent",
- "backgroundColor": "rgba(0,0,0,0)",
- "popGesture": "none"
- }
- }
- }
- ,{
+ {
"path" : "pages/my/my",
"style" :
{
@@ -70,15 +28,6 @@
"enablePullDownRefresh": false
}
- }
- ,{
- "path" : "pages/uview/uview",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
}
,{
"path" : "pages/login/login",
@@ -116,786 +65,43 @@
}
}
+ ,{
+ "path" : "pages/inspectrecord/index",
+ "style" :
+ {
+ "navigationBarTitleText": "检查项目",
+ "enablePullDownRefresh": false
+ }
+
+ }
+ ,{
+ "path" : "pages/inspectrecord/recorddo",
+ "style" :
+ {
+ "navigationBarTitleText": "检查确认",
+ "enablePullDownRefresh": false
+ }
+
+ }
+ ,{
+ "path" : "pages/inspectrecord/recorddetail",
+ "style" :
+ {
+ "navigationBarTitleText": "条款详情",
+ "enablePullDownRefresh": false
+ }
+
+ }
+ ,{
+ "path" : "pages/inspectrecord/deptreport",
+ "style" :
+ {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false
+ }
+
+ }
],
- "subPackages": [{
- "root": "pages/componentsC",
- "pages": [
- // test-测试
- {
- "path": "test/index",
- "style": {
- "navigationBarTitleText": "Test"
- // "navigationStyle": "custom" ,// 隐藏系统导航栏
- // "navigationBarTextStyle": "white" // 状态栏字体为白色
- }
- },
- // gap-间隔槽
- {
- "path": "gap/index",
- "style": {
- "navigationBarTitleText": "gap-间隔槽"
- }
- },
- // subsection分段器
- {
- "path": "subsection/index",
- "style": {
- "navigationBarTitleText": "subsection-分段器"
- }
- },
- // section 查看更多
- {
- "path": "section/index",
- "style": {
- "navigationBarTitleText": "section-查看更多"
- }
- },
- // link链接
- {
- "path": "link/index",
- "style": {
- "navigationBarTitleText": "link-链接"
- }
- },
- // mask遮罩层
- {
- "path": "mask/index",
- "style": {
- "navigationBarTitleText": "mask-遮罩层"
- }
- },
- // countTo数字滚动
- {
- "path": "countTo/index",
- "style": {
- "navigationBarTitleText": "countTo-数字滚动"
- }
- },
- // color颜色
- {
- "path": "color/index",
- "style": {
- "navigationBarTitleText": "color-颜色"
- }
- },
- // countDown倒计时
- {
- "path": "countDown/index",
- "style": {
- "navigationBarTitleText": "countDown-倒计时"
- }
- },
- // progress进度条
- {
- "path": "progress/index",
- "style": {
- "navigationBarTitleText": "progress-进度条"
- }
- },
- // alertTips警告提示
- {
- "path": "alertTips/index",
- "style": {
- "navigationBarTitleText": "alertTips-警告提示"
- }
- },
- // badge 徽标数
- {
- "path": "badge/index",
- "style": {
- "navigationBarTitleText": "badge-徽标数"
- }
- },
- // button按钮
- {
- "path": "button/index",
- "style": {
- "navigationBarTitleText": "button-按钮"
- }
- },
- // collapse折叠面板
- {
- "path": "collapse/index",
- "style": {
- "navigationBarTitleText": "collapse-折叠面板"
- }
- },
- // actionSheet操作菜单
- {
- "path": "actionSheet/index",
- "style": {
- "navigationBarTitleText": "actionSheet-操作菜单"
- }
- },
- // messageInput验证码输入
- {
- "path": "messageInput/index",
- "style": {
- "navigationBarTitleText": "messageInput-验证码输入"
- }
- },
- // popup弹窗
- {
- "path": "popup/index",
- "style": {
- "navigationBarTitleText": "popup-弹窗"
- }
- },
- // listCell
- {
- "path": "cell/index",
- "style": {
- "navigationBarTitleText": "listCell-列表"
- }
- },
- // numberBox数字输入框
- {
- "path": "numberBox/index",
- "style": {
- "navigationBarTitleText": "numberBox-步进器"
- }
- },
- // grid宫格布局
- {
- "path": "grid/index",
- "style": {
- "navigationBarTitleText": "grid-宫格布局"
- }
- },
- // layout栅格布局
- {
- "path": "layout/index",
- "style": {
- "navigationBarTitleText": "layout-栅格布局"
- }
- },
- // 加载更多
- {
- "path": "loadmore/index",
- "style": {
- "navigationBarTitleText": "loadmore-加载更多"
- }
- }
- ]
- },
- {
- "root": "pages/template",
- "pages": [
- // wxCenter 仿微信个人中心
- {
- "path": "wxCenter/index",
- "style": {
- "navigationBarTitleText": "wxCenter 仿微信个人中心",
- "navigationStyle": "custom"
- }
- },
- // keyboardPay 自定义键盘支付
- {
- "path": "keyboardPay/index",
- "style": {
- "navigationBarTitleText": "keyboardPay 自定义键盘支付"
- }
- },
- // douyin 仿抖音
- // {
- // "path": "douyin/index",
- // "style": {
- // "navigationBarTitleText": "douyin 仿抖音"
- // }
- // },
- // mallMenu商城分类
- {
- "path": "mallMenu/index2",
- "style": {
- "navigationBarTitleText": "mallMenu-商城分类"
- }
- },
- // mallMenu商城分类
- {
- "path": "mallMenu/index1",
- "style": {
- "navigationBarTitleText": "mallMenu-商城分类"
- }
- },
- // coupon优惠券
- {
- "path": "coupon/index",
- "style": {
- "navigationBarTitleText": "coupon-优惠券"
- }
- },
- {
- "path": "login/index",
- "style": {
- "navigationBarTitleText": "美团登录"
- }
- },
- // 城市选择
- {
- "path": "citySelect/index",
- "style": {
- "navigationBarTitleText": "城市选择"
- }
- },
- // SubmitBar提交订单栏
- {
- "path": "submitBar/index",
- "style": {
- "navigationBarTitleText": "提交订单栏"
- }
- },
- // comment评论
- {
- "path": "comment/index",
- "style": {
- "navigationBarTitleText": "评论"
- }
- },
- // comment评论详情
- {
- "path": "comment/reply",
- "style": {
- "navigationBarTitleText": "评论详情"
- }
- },
- // order订单
- {
- "path": "order/index",
- "style": {
- "navigationBarTitleText": "订单"
- }
- },
- // login登录获取验证码
- {
- "path": "login/code",
- "style": {
- "navigationBarTitleText": "登录获取验证码"
- }
- },
- // address用户地址
- {
- "path": "address/index",
- "style": {
- "navigationBarTitleText": "用户地址"
- }
- },
- // address添加用户地址
- {
- "path": "address/addSite",
- "style": {
- "navigationBarTitleText": "添加用户地址"
- }
- }
- ]
- },
- {
- "root": "pages/library",
- "pages": [
- // debounce-节流防抖
- {
- "path": "debounce/index",
- "style": {
- "navigationBarTitleText": "throttle | debounce-节流防抖"
- }
- },
- // deepClone-对象深度克隆
- {
- "path": "deepClone/index",
- "style": {
- "navigationBarTitleText": "deepClone-对象深度克隆"
- }
- },
- // deepMerge-对象深度合并
- {
- "path": "deepMerge/index",
- "style": {
- "navigationBarTitleText": "deepMerge-对象深度合并"
- }
- },
- // getRect-元素节点
- {
- "path": "getRect/index",
- "style": {
- "navigationBarTitleText": "getRect-元素节点"
- }
- },
- // timeFrom-多久之前
- {
- "path": "timeFrom/index",
- "style": {
- "navigationBarTitleText": "timeFrom-多久之前"
- }
- },
- // globalData-全局变量
- {
- "path": "globalVariable/globalData",
- "style": {
- "navigationBarTitleText": "globalData-全局变量"
- }
- },
- // prototype-全局变量
- {
- "path": "globalVariable/prototype",
- "style": {
- "navigationBarTitleText": "prototype-全局变量"
- }
- },
- // vuex-全局变量
- {
- "path": "globalVariable/vuex",
- "style": {
- "navigationBarTitleText": "vuex-全局变量"
- }
- },
- // globalVariable-全局变量
- {
- "path": "globalVariable/index",
- "style": {
- "navigationBarTitleText": "globalVariable-全局变量"
- }
- },
- // http-请求
- {
- "path": "http/index",
- "style": {
- "navigationBarTitleText": "http-请求"
- }
- },
- // test-规则验证
- {
- "path": "test/index",
- "style": {
- "navigationBarTitleText": "test-规则验证"
- }
- },
- // mpShare-小程序分享
- {
- "path": "mpShare/index",
- "style": {
- "navigationBarTitleText": "mpShare-小程序分享"
- }
- },
- // color-JS调用颜色
- {
- "path": "color/index",
- "style": {
- "navigationBarTitleText": "color-JS调用颜色"
- }
- },
- // trim-去除空格
- {
- "path": "trim/index",
- "style": {
- "navigationBarTitleText": "trim-去除空格"
- }
- },
- // random-随机数生成
- {
- "path": "random/index",
- "style": {
- "navigationBarTitleText": "random-随机数生成"
- }
- },
- // md5加密
- {
- "path": "md5/index",
- "style": {
- "navigationBarTitleText": "md5-加密"
- }
- },
- // colorSwitch颜色转换
- {
- "path": "colorSwitch/index",
- "style": {
- "navigationBarTitleText": "colorSwitch-颜色转换"
- }
- },
- // randomArray数组乱序
- {
- "path": "randomArray/index",
- "style": {
- "navigationBarTitleText": "randomArray-数组乱序"
- }
- },
- // guid全局唯一标识符
- {
- "path": "guid/index",
- "style": {
- "navigationBarTitleText": "guid-全局唯一标识符"
- }
- },
- // timeFormat时间格式化
- {
- "path": "timeFormat/index",
- "style": {
- "navigationBarTitleText": "timeFormat-时间格式化"
- }
- }, // route-路由
- {
- "path": "route/index",
- "style": {
- "navigationBarTitleText": "route-路由"
- }
- },
- // route-路由跳转
- {
- "path": "route/routeTo",
- "style": {
- "navigationBarTitleText": "route-路由跳转"
- }
- },
- // queryParams-对象转URL参数
- {
- "path": "queryParams/index",
- "style": {
- "navigationBarTitleText": "queryParams-对象转URL参数"
- }
- }
- ]
- },
- {
- "root": "pages/componentsA",
- "pages": [
- // parse-富文本解析器
- {
- "path": "parse/index",
- "style": {
- "navigationBarTitleText": "parse-富文本解析器"
- }
- },
- // backTop-返回顶部
- {
- "path": "backTop/index",
- "style": {
- "navigationBarTitleText": "backTop-返回顶部"
- }
- },
- // calendar-日历
- {
- "path": "calendar/index",
- "style": {
- "navigationBarTitleText": "calendar-日历"
- }
- },
- // form-表单
- {
- "path": "form/index",
- "style": {
- "navigationBarTitleText": "form-表单"
- }
- },
- // select-列选择器
- {
- "path": "select/index",
- "style": {
- "navigationBarTitleText": "select-列选择器"
- }
- },
- // slider-滑动选择器
- {
- "path": "slider/index",
- "style": {
- "navigationBarTitleText": "slider-滑动选择器"
- }
- },
- // fullScreen-压窗屏
- {
- "path": "fullScreen/index",
- "style": {
- "navigationBarTitleText": "fullScreen-压窗屏"
- }
- },
- // navbar-自定义导航栏
- {
- "path": "navbar/index",
- "style": {
- // "navigationBarTitleText": "navbar-自定义导航栏",
- "navigationStyle": "custom", // 隐藏系统导航栏
- "navigationBarTextStyle": "white" // 状态栏字体为白色
- }
- },
- // field-输入框
- {
- "path": "field/index",
- "style": {
- "navigationBarTitleText": "field-输入框"
- }
- },
- // modal-模态框
- {
- "path": "modal/index",
- "style": {
- "navigationBarTitleText": "modal-模态框"
- }
- },
- // indexList索引列表
- {
- "path": "indexList/index",
- "style": {
- "navigationBarTitleText": "indexList-索引列表"
- }
- },
- // empty内容为空
- {
- "path": "empty/index",
- "style": {
- "navigationBarTitleText": "empty-内容为空"
- }
- },
- // avatarCropper-头像裁剪
- {
- "path": "avatarCropper/index",
- "style": {
- "navigationBarTitleText": "avatarCropper-头像裁剪"
- }
- }, // noNetwork没有网络
- {
- "path": "noNetwork/index",
- "style": {
- "navigationBarTitleText": "noNetwork-没有网络"
- }
- }, // icon字体图标
- {
- "path": "icon/index",
- "style": {
- "navigationBarTitleText": "icon-字体图标"
- }
- }, // avatar-用户头像展示
- {
- "path": "avatar/index",
- "style": {
- "navigationBarTitleText": "avatar-用户头像展示"
- }
- }, // keyboard键盘
- {
- "path": "keyboard/index",
- "style": {
- "navigationBarTitleText": "keyboard-键盘"
- }
- }, // 图片懒加载
- {
- "path": "lazyLoad/index",
- "style": {
- "navigationBarTitleText": "lazyLoad-懒加载"
- }
- },
- // tabs切换
- {
- "path": "tabs/index",
- "style": {
- "navigationBarTitleText": "Tabs-切换"
- }
- },
- // tag标签
- {
- "path": "tag/index",
- "style": {
- "navigationBarTitleText": "tag-标签"
- }
- },
- // timeLine时间轴
- {
- "path": "timeLine/index",
- "style": {
- "navigationBarTitleText": "timeLine-时间轴"
- }
- },
- // toast轻提示
- {
- "path": "toast/index",
- "style": {
- "navigationBarTitleText": "toast-轻提示"
- }
- },
- // topTips消息提示
- {
- "path": "topTips/index",
- "style": {
- "navigationBarTitleText": "topTips-消息提示"
- }
- },
- // Code-验证码倒计时
- {
- "path": "verificationCode/index",
- "style": {
- "navigationBarTitleText": "Code-验证码倒计时"
- }
- }
- ]
- },
- {
- "root": "pages/componentsB",
- "pages": [
- // dropdown-下拉菜单
- {
- "path": "dropdown/index",
- "style": {
- "navigationBarTitleText": "dropdown-下拉菜单"
- }
- },
- // tabbar-底部导航栏
- {
- "path": "tabbar/index",
- "style": {
- "navigationBarTitleText": "tabbar-底部导航栏"
- }
- },
- // line-线条
- {
- "path": "line/index",
- "style": {
- "navigationBarTitleText": "line-线条"
- }
- },
- // image-图片
- {
- "path": "image/index",
- "style": {
- "navigationBarTitleText": "image-图片"
- }
- },
- // card-卡片
- {
- "path": "card/index",
- "style": {
- "navigationBarTitleText": "card-卡片"
- }
- },
- // divider-分割线
- {
- "path": "divider/index",
- "style": {
- "navigationBarTitleText": "divider-分割线"
- }
- },
- // picker选择器
- {
- "path": "picker/index",
- "style": {
- "navigationBarTitleText": "picker-选择器"
- }
- }, // noticeBar通告栏
- {
- "path": "noticeBar/index",
- "style": {
- "navigationBarTitleText": "noticeBar-通告栏"
- }
- },
- // checkbox-复选框
- {
- "path": "checkbox/index",
- "style": {
- "navigationBarTitleText": "checkbox-复选框"
- }
- },
- // radio-单选框
- {
- "path": "radio/index",
- "style": {
- "navigationBarTitleText": "radio-单选框"
- }
- },
- // loading-加载动画
- {
- "path": "loading/index",
- "style": {
- "navigationBarTitleText": "loading-加载动画"
- }
- },
- // switch-开关选择器
- {
- "path": "switch/index",
- "style": {
- "navigationBarTitleText": "switch-开关选择器"
- }
- },
- // 骨架屏
- {
- "path": "skeleton/index",
- "style": {
- "navigationBarTitleText": "skeleton-骨架屏"
- }
- }, // upload上传
- {
- "path": "upload/index",
- "style": {
- "navigationBarTitleText": "upload-上传"
- }
- },
- // waterfall瀑布流
- // #ifndef MP-TOUTIAO
- {
- "path": "waterfall/index",
- "style": {
- "navigationBarTitleText": "waterfall-瀑布流"
- }
- },
- // #endif
- // table表格
- {
- "path": "table/index",
- "style": {
- "navigationBarTitleText": "table-表格"
- }
- },
- // rate评分
- {
- "path": "rate/index",
- "style": {
- "navigationBarTitleText": "rate-评分"
- }
- },
- // readMore显示更多
- {
- "path": "readMore/index",
- "style": {
- "navigationBarTitleText": "readMore-查看更多"
- }
- },
- // search搜索框
- {
- "path": "search/index",
- "style": {
- "navigationBarTitleText": "search-搜索框"
- }
- },
- // steps步骤条
- {
- "path": "steps/index",
- "style": {
- "navigationBarTitleText": "steps-步骤条"
- }
- },
- // sticky吸顶
- {
- "path": "sticky/index",
- "style": {
- "navigationBarTitleText": "sticky-吸顶"
- }
- },
- // swiper轮播图
- {
- "path": "swiper/index",
- "style": {
- "navigationBarTitleText": "swiper-轮播图"
- }
- },
- // swipeAction-左滑删除
- {
- "path": "swipeAction/index",
- "style": {
- "navigationBarTitleText": "swipeAction-左滑删除"
- }
- }
- ]
- }
- ],
- "preloadRule": {
- "pages/example/components": {
- "network": "all",
- "packages": ["pages/componentsA", "pages/componentsB", "pages/componentsC"]
- }
- },
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uView",
diff --git a/client_mp/pages/componentsA/avatar/index.vue b/client_mp/pages/componentsA/avatar/index.vue
deleted file mode 100644
index d10e1a0..0000000
--- a/client_mp/pages/componentsA/avatar/index.vue
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 参数配置
-
-
- 模式选择
-
-
-
- 性别选择
-
-
-
- 等级
-
-
-
- 自定义内容
-
-
-
- 尺寸
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/avatarCropper/index.vue b/client_mp/pages/componentsA/avatarCropper/index.vue
deleted file mode 100644
index 8347e97..0000000
--- a/client_mp/pages/componentsA/avatarCropper/index.vue
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
- 选择图片
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/backTop/index.vue b/client_mp/pages/componentsA/backTop/index.vue
deleted file mode 100644
index 351f8ea..0000000
--- a/client_mp/pages/componentsA/backTop/index.vue
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
- 演示效果
-
- 滚动页面即可在右下角看到返回顶部的按钮
-
-
-
-
-
-
- 参数配置
-
-
- 模式
-
-
-
- 组件位置
-
-
-
- 显示组件的滚动条距离
-
-
-
- 自定义样式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/calendar/index.vue b/client_mp/pages/componentsA/calendar/index.vue
deleted file mode 100644
index e28cce5..0000000
--- a/client_mp/pages/componentsA/calendar/index.vue
+++ /dev/null
@@ -1,111 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- 状态
-
-
-
- 模式
-
-
-
- 自定义样式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/empty/index.vue b/client_mp/pages/componentsA/empty/index.vue
deleted file mode 100644
index 06bdff8..0000000
--- a/client_mp/pages/componentsA/empty/index.vue
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
- 演示效果
-
-
-
- slot按钮
-
-
-
-
-
-
- 参数配置
-
-
- 模式选择
-
-
-
- 购物车为空
-
-
- 页面不存在
-
-
- 没有搜索结果
-
-
-
-
- 没有收货地址
-
-
- 没有WiFi
-
-
- 订单为空
-
-
-
-
- 没有优惠券
-
-
- 没有收藏
-
-
- 无权限
-
-
-
-
- 无历史记录
-
-
- 无新闻列表
-
-
- 消息列表为空
-
-
-
-
- 列表为空
-
-
- 数据为空
-
-
- 待扩展
-
-
-
-
-
- 传入slot
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/field/index.vue b/client_mp/pages/componentsA/field/index.vue
deleted file mode 100644
index 5283d62..0000000
--- a/client_mp/pages/componentsA/field/index.vue
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
- 发送验证码
-
-
-
-
-
- 参数配置
-
-
- 右侧按钮
-
-
-
- 显示错误信息
-
-
-
- 是否必填
-
-
-
- 显示左图标和右箭头
-
-
-
- 第一个输入框为textarea类型
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/form/index.vue b/client_mp/pages/componentsA/form/index.vue
deleted file mode 100644
index 3b3b602..0000000
--- a/client_mp/pages/componentsA/form/index.vue
+++ /dev/null
@@ -1,454 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ item.name }}
-
-
-
-
- {{ item.name }}
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{codeTips}}
-
-
-
-
-
-
-
-
-
-
-
-
- 勾选代表同意uView的版权协议
-
-
- 提交
-
-
-
-
-
-
- 参数配置
-
-
- label对齐方式
-
-
-
- 边框
-
-
-
- radio、checkbox样式
-
-
-
- 错误提示方式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/fullScreen/index.vue b/client_mp/pages/componentsA/fullScreen/index.vue
deleted file mode 100644
index 5e483a1..0000000
--- a/client_mp/pages/componentsA/fullScreen/index.vue
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
- 演示效果
-
-
- 通过压窗屏打开的模态框,可以遮盖顶部原生的导航栏和底部tabbar栏。
- 注意:压窗屏只对APP有效,其他端无效。
-
-
-
-
-
- 参数配置
-
-
- 状态
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/icon/index.vue b/client_mp/pages/componentsA/icon/index.vue
deleted file mode 100644
index 5a65f08..0000000
--- a/client_mp/pages/componentsA/icon/index.vue
+++ /dev/null
@@ -1,652 +0,0 @@
-
-
-
-
-
- {{item.name}}
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/indexList/index.vue b/client_mp/pages/componentsA/indexList/index.vue
deleted file mode 100644
index 18c1f25..0000000
--- a/client_mp/pages/componentsA/indexList/index.vue
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
- {{item1.name}}
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/keyboard/index.vue b/client_mp/pages/componentsA/keyboard/index.vue
deleted file mode 100644
index 017c6cb..0000000
--- a/client_mp/pages/componentsA/keyboard/index.vue
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
- 演示效果
-
-
-
- 清空
-
-
-
-
-
-
- 参数配置
-
-
- 键盘开关
-
-
-
- 键盘类型
-
-
-
- 打乱顺序
-
-
-
- 上方工具条
-
-
-
- 是否显示遮罩
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/lazyLoad/index.vue b/client_mp/pages/componentsA/lazyLoad/index.vue
deleted file mode 100644
index bed40e5..0000000
--- a/client_mp/pages/componentsA/lazyLoad/index.vue
+++ /dev/null
@@ -1,253 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/modal/index.vue b/client_mp/pages/componentsA/modal/index.vue
deleted file mode 100644
index 8532649..0000000
--- a/client_mp/pages/componentsA/modal/index.vue
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
- 演示效果
-
-
- 请点击弹出弹窗查看效果
-
-
-
-
-
-
-
-
-
-
- 参数配置
-
- 状态
-
-
-
- 是否显示标题
-
-
-
-
- 自定义内容
-
-
-
-
- 异步关闭
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/navbar/index.vue b/client_mp/pages/componentsA/navbar/index.vue
deleted file mode 100644
index a7fed0f..0000000
--- a/client_mp/pages/componentsA/navbar/index.vue
+++ /dev/null
@@ -1,258 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 轻舟已过万重山
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 演示效果
-
-
- 查看顶部导航栏效果
-
-
-
-
- 参数配置
-
-
- 标题长度
-
-
-
- 隐藏左侧返回区域
-
-
-
- 自定义左侧内容
-
-
-
- 自定义右侧内容
-
-
-
- 传入整体slot
-
-
-
- 完全自定义传入内容
-
-
-
- 背景色
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/noNetwork/index.vue b/client_mp/pages/componentsA/noNetwork/index.vue
deleted file mode 100644
index d5a2408..0000000
--- a/client_mp/pages/componentsA/noNetwork/index.vue
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
- 演示效果
-
- 请断开手机的WiFi和移动数据来查看效果
-
-
-
-
-
- 参数配置
-
-
- 自定义提示语
-
-
-
- 自定义图标
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/client_mp/pages/componentsA/parse/index.vue b/client_mp/pages/componentsA/parse/index.vue
deleted file mode 100644
index f93ff4a..0000000
--- a/client_mp/pages/componentsA/parse/index.vue
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/select/index.vue b/client_mp/pages/componentsA/select/index.vue
deleted file mode 100644
index 5755f3a..0000000
--- a/client_mp/pages/componentsA/select/index.vue
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
- 演示效果
-
-
- select值:{{ result }}
-
-
-
- 参数配置
-
- 状态
-
-
-
- 模式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/slider/index.vue b/client_mp/pages/componentsA/slider/index.vue
deleted file mode 100644
index 2a08c18..0000000
--- a/client_mp/pages/componentsA/slider/index.vue
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- {{value}}
-
-
-
-
-
- 滑块值:{{value}}
-
-
-
-
- 参数配置
-
- 自定义颜色
-
-
-
-
- 自定义传入内容
-
-
-
-
- 自定义尺寸
-
-
-
- 步进值
-
-
-
- 最大最小值
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/tabs/index.vue b/client_mp/pages/componentsA/tabs/index.vue
deleted file mode 100644
index 8ccdb76..0000000
--- a/client_mp/pages/componentsA/tabs/index.vue
+++ /dev/null
@@ -1,147 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- 参数配置
-
-
- 模式选择
-
-
-
- 标签个数(非滚动模式)
-
-
-
- 活动选项字颜色
-
-
-
- 字体加粗
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/tag/index.vue b/client_mp/pages/componentsA/tag/index.vue
deleted file mode 100644
index a890f5b..0000000
--- a/client_mp/pages/componentsA/tag/index.vue
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 参数配置
-
- 模式选择
-
-
-
- 显示内容
-
-
-
- 主题选择
-
-
-
- 形状
-
-
-
- 尺寸
-
-
-
- 关闭图标
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/test/index.vue b/client_mp/pages/componentsA/test/index.vue
deleted file mode 100644
index 0748679..0000000
--- a/client_mp/pages/componentsA/test/index.vue
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ item.name }}
-
-
-
-
-
-
- {{ item.name }}
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/timeLine/index.vue b/client_mp/pages/componentsA/timeLine/index.vue
deleted file mode 100644
index e8435b8..0000000
--- a/client_mp/pages/componentsA/timeLine/index.vue
+++ /dev/null
@@ -1,144 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- 待取件
- [自提柜]您的快件已放在楼下侧门,直走前方53.6米,左拐约10步,再右拐直走,见一红灯笼停下,叩门三下,喊“芝麻开门”即可。
- 2019-05-08 12:12
-
-
-
-
-
-
-
-
-
-
-
- 派送中
- 【深圳市】快件已到达目的地,派件员为国产锦衣卫007号,电话:13833882438,请留意快递信息
- 2019-05-08 06:03
-
-
-
-
-
-
-
-
-
-
-
- 运输中
- 【深圳市】快递已到达 深圳固戍一部
- 2019-05-07 08:05
-
-
-
-
-
-
- 【深圳市】快件已从深圳运转中心发出,正在发往深圳宝安一部
- 2019-12-06 22:30
-
-
-
-
-
-
- 【深圳市】快件已到达 深圳运转中心
- 2019-12-04 16:42
-
-
-
-
-
-
- 【郑州市】快件已从郑州运转中心出发,正在发往深圳运转中心
- 2019-12-02 12:55
-
-
-
-
-
-
- 【郑州市】快件已到达 郑州运转中心
- 2019-12-02 08:23
-
-
-
-
-
-
-
-
-
-
-
- 您购买的商品【尚方宝剑,先斩后奏】,经由北京军区仓库发货,国内快递承运人【中南海保镖】。
- 2019-12-01 07:00
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/toast/index.vue b/client_mp/pages/componentsA/toast/index.vue
deleted file mode 100644
index b5a250e..0000000
--- a/client_mp/pages/componentsA/toast/index.vue
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
- 演示效果
-
-
- 见弹出toast
-
-
-
-
- 参数配置
-
-
- 主题
-
-
-
- 结束后自动跳转
-
-
-
- 位置
-
-
-
- 显示图标
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsA/topTips/index.vue b/client_mp/pages/componentsA/topTips/index.vue
deleted file mode 100644
index 1037410..0000000
--- a/client_mp/pages/componentsA/topTips/index.vue
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
- 演示效果
-
-
- 点击参数配置查看效果
-
-
-
-
- 参数配置
-
-
- 主题选择
-
-
-
- 显示时间
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/client_mp/pages/componentsA/verificationCode/index.vue b/client_mp/pages/componentsA/verificationCode/index.vue
deleted file mode 100644
index f899def..0000000
--- a/client_mp/pages/componentsA/verificationCode/index.vue
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
- 演示效果
-
-
-
- {{tips}}
- 重置
-
-
-
-
- 参数配置
-
-
- 倒计时间
-
-
-
- 自定义提示语
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/card/index.vue b/client_mp/pages/componentsB/card/index.vue
deleted file mode 100644
index f949f07..0000000
--- a/client_mp/pages/componentsB/card/index.vue
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
-
-
- 瓶身描绘的牡丹一如你初妆,冉冉檀香透过窗心事我了然,宣纸上走笔至此搁一半
-
-
-
-
-
- 釉色渲染仕女图韵味被私藏,而你嫣然的一笑如含苞待放
-
-
-
-
-
-
-
-
-
-
-
- 参数配置
-
-
- 左上角图标
-
-
-
- 内边距
-
-
-
- 底部
-
-
-
- 外边框
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/checkbox/index.vue b/client_mp/pages/componentsB/checkbox/index.vue
deleted file mode 100644
index 0249d54..0000000
--- a/client_mp/pages/componentsB/checkbox/index.vue
+++ /dev/null
@@ -1,161 +0,0 @@
-
-
-
- 演示效果
-
-
-
- {{item.name}}
-
-
-
- {{result.length ? `选中了"${getResult}"` : '请选择'}}
-
-
-
-
-
- 参数配置
-
-
- 形状
-
-
-
- 整体大小(单位rpx)
-
-
-
- 激活颜色
-
-
-
- 默认选中第一个
-
-
-
- 每个占一行
-
-
-
- 每个宽度50%
-
-
-
- 最大选择数量
-
-
-
- 禁用第一个
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/divider/index.vue b/client_mp/pages/componentsB/divider/index.vue
deleted file mode 100644
index 95868f3..0000000
--- a/client_mp/pages/componentsB/divider/index.vue
+++ /dev/null
@@ -1,81 +0,0 @@
-
-
-
- 演示效果
-
- {{text}}
-
-
-
-
- 参数配置
-
-
- 提示内容
-
-
-
- 单边线宽
-
-
-
- 横线颜色
-
-
-
- 内容样式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/dropdown/index.vue b/client_mp/pages/componentsB/dropdown/index.vue
deleted file mode 100644
index bbf1fc7..0000000
--- a/client_mp/pages/componentsB/dropdown/index.vue
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- {{item.label}}
-
-
- 确定
-
-
-
-
-
-
-
- 参数配置
-
-
- 下边框
-
-
-
- 激活颜色
-
-
-
- 遮罩是否可点击
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/image/index.vue b/client_mp/pages/componentsB/image/index.vue
deleted file mode 100644
index c2c4b91..0000000
--- a/client_mp/pages/componentsB/image/index.vue
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
- 演示效果
-
-
-
- 加载失败
-
-
-
-
- 参数配置
-
- 状态
-
-
-
-
-
- 加载中状态
-
-
-
-
- 加载失败状态
-
-
-
- 形状
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/line/index.vue b/client_mp/pages/componentsB/line/index.vue
deleted file mode 100644
index 9615c80..0000000
--- a/client_mp/pages/componentsB/line/index.vue
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- 参数配置
-
-
- 颜色
-
-
-
- 线条类型
-
-
-
- 细边
-
-
-
- 方向
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/loading/index.vue b/client_mp/pages/componentsB/loading/index.vue
deleted file mode 100644
index 771fecd..0000000
--- a/client_mp/pages/componentsB/loading/index.vue
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 参数配置
-
-
- 模式
-
-
-
- 颜色(只对圆圈模式有效)
-
-
-
- 尺寸(单位rpx)
-
-
-
- 是否显示
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/noticeBar/index.vue b/client_mp/pages/componentsB/noticeBar/index.vue
deleted file mode 100644
index 1344ee3..0000000
--- a/client_mp/pages/componentsB/noticeBar/index.vue
+++ /dev/null
@@ -1,144 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- 参数配置
-
-
- 主题
-
-
-
- 滚动模式
-
-
-
- 是否衔接(水平模式有效)
-
-
-
- 状态
-
-
-
- 速度
-
-
-
- 图标
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/picker/index.vue b/client_mp/pages/componentsB/picker/index.vue
deleted file mode 100644
index bf4574f..0000000
--- a/client_mp/pages/componentsB/picker/index.vue
+++ /dev/null
@@ -1,199 +0,0 @@
-
-
-
- 演示效果
-
- {{ input ? input : 'Picker值' }}
-
-
-
-
- 参数配置
-
- Picker开关
-
-
-
- 模式选择
-
-
-
- 默认时间
-
-
-
- 显示时分秒
-
-
-
- 默认地区
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/radio/index.vue b/client_mp/pages/componentsB/radio/index.vue
deleted file mode 100644
index 121f29a..0000000
--- a/client_mp/pages/componentsB/radio/index.vue
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
- 演示效果
-
-
-
- {{item.name}}
-
-
-
- {{value ? `选中了"${result}"` : '请选择'}}
-
-
-
-
-
- 参数配置
-
-
- 形状
-
-
-
- 整体大小(单位rpx)
-
-
-
- 激活颜色
-
-
-
- 每个占一行
-
-
-
- 每个宽度50%
-
-
-
- 默认选中第一个
-
-
-
- 禁用第一个
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/rate/index.vue b/client_mp/pages/componentsB/rate/index.vue
deleted file mode 100644
index 04827e2..0000000
--- a/client_mp/pages/componentsB/rate/index.vue
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 参数配置
-
-
- 初始值
-
-
-
- 镂空状态
-
-
-
- 自定义样式
-
-
-
- 自定义图标
-
-
-
- 是否分层
-
-
-
- 是否禁用
-
-
-
- 星星数量
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/readMore/index.vue b/client_mp/pages/componentsB/readMore/index.vue
deleted file mode 100644
index b15cf66..0000000
--- a/client_mp/pages/componentsB/readMore/index.vue
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 参数配置
-
-
- 超出高度隐藏
-
-
-
- 展开后可关闭
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/client_mp/pages/componentsB/search/index.vue b/client_mp/pages/componentsB/search/index.vue
deleted file mode 100644
index a6b108a..0000000
--- a/client_mp/pages/componentsB/search/index.vue
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- 参数配置
-
-
- 初始值
-
-
-
- 搜索框形状
-
-
-
- 清除控件
-
-
-
- 右侧控件
-
-
-
- 水平对齐方式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/skeleton/index.vue b/client_mp/pages/componentsB/skeleton/index.vue
deleted file mode 100644
index a0dc027..0000000
--- a/client_mp/pages/componentsB/skeleton/index.vue
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
-
- {{userInfo.nickName}}
-
-
-
-
-
- {{item}}
-
-
-
-
-
-
-
-
-
- 参数配置
-
-
- 加载状态
-
-
-
- 骨架动画
-
-
-
- 自定义样式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/steps/index.vue b/client_mp/pages/componentsB/steps/index.vue
deleted file mode 100644
index e6b65ba..0000000
--- a/client_mp/pages/componentsB/steps/index.vue
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 参数配置
-
-
- 模式
-
-
-
- 方向
-
-
-
- 自定义图标
-
-
-
- 当前步值
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/sticky/index.vue b/client_mp/pages/componentsB/sticky/index.vue
deleted file mode 100644
index 4f79385..0000000
--- a/client_mp/pages/componentsB/sticky/index.vue
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
- 宝剑锋从磨砺出,梅花香自苦寒来
-
-
-
-
-
-
- 参数配置
-
-
- 吸顶高度
-
-
-
- 状态
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/swipeAction/index.vue b/client_mp/pages/componentsB/swipeAction/index.vue
deleted file mode 100644
index 285bb04..0000000
--- a/client_mp/pages/componentsB/swipeAction/index.vue
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- {{ item.title }}
-
-
-
-
-
-
- 参数配置
-
- 状态(操作第一个)
-
-
-
- 禁止滑动
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/swiper/index.vue b/client_mp/pages/componentsB/swiper/index.vue
deleted file mode 100644
index 87b21af..0000000
--- a/client_mp/pages/componentsB/swiper/index.vue
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- 参数配置
-
-
- 指示器模式
-
-
-
- 标题
-
-
-
- 指示器位置
-
-
-
- 3D效果
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/switch/index.vue b/client_mp/pages/componentsB/switch/index.vue
deleted file mode 100644
index e0a573d..0000000
--- a/client_mp/pages/componentsB/switch/index.vue
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 参数配置
-
-
- 状态
-
-
-
- 颜色
-
-
-
- 尺寸(单位rpx)
-
-
-
- 加载中
-
-
-
- 禁用
-
-
-
- 异步控制
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/tabbar/index.vue b/client_mp/pages/componentsB/tabbar/index.vue
deleted file mode 100644
index 797c447..0000000
--- a/client_mp/pages/componentsB/tabbar/index.vue
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
-
-
- 参数配置
-
-
- 状态
-
-
-
- 凸起按钮
-
-
-
- 背景色
-
-
-
- 顶部边框
-
-
-
- 提示角标
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/table/index.vue b/client_mp/pages/componentsB/table/index.vue
deleted file mode 100644
index f4dcc39..0000000
--- a/client_mp/pages/componentsB/table/index.vue
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
- 姓名
- 年龄
- 籍贯
- 性别
-
-
- 吕布
- 22
- 楚河
- 男
-
-
- 项羽
- 28
- 汉界
- 男
-
-
- 木兰
- 24
- 南国
- 女
-
-
-
-
-
-
- 参数配置
-
-
- 边框颜色
-
-
-
- 对齐方式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/upload/index.vue b/client_mp/pages/componentsB/upload/index.vue
deleted file mode 100644
index 158b8a3..0000000
--- a/client_mp/pages/componentsB/upload/index.vue
+++ /dev/null
@@ -1,224 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 上传
- 清空列表
-
-
-
-
-
- 参数配置
-
-
- 上传方式
-
-
-
- 自定义控件(进度条和删除按钮)
-
-
-
- 最大上传数量
-
-
-
- 自定义样式(预览区域和上传按钮)
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsB/waterfall/index.vue b/client_mp/pages/componentsB/waterfall/index.vue
deleted file mode 100644
index e7d4ce8..0000000
--- a/client_mp/pages/componentsB/waterfall/index.vue
+++ /dev/null
@@ -1,224 +0,0 @@
-
-
-
-
-
-
-
- {{ item.title }}
- {{ item.price }}元
-
- 自营
- 放心购
-
- {{ item.shop }}
-
-
-
-
-
-
-
-
- {{ item.title }}
- {{ item.price }}元
-
- 自营
- 放心购
-
- {{ item.shop }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/actionSheet/index.vue b/client_mp/pages/componentsC/actionSheet/index.vue
deleted file mode 100644
index 9bceb8c..0000000
--- a/client_mp/pages/componentsC/actionSheet/index.vue
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
- 演示效果
-
-
- 唤起ActionSheet
-
-
-
-
-
- 参数配置
-
-
- 取消按钮
-
-
-
- 点击遮罩关闭
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/alertTips/index.vue b/client_mp/pages/componentsC/alertTips/index.vue
deleted file mode 100644
index af9fec0..0000000
--- a/client_mp/pages/componentsC/alertTips/index.vue
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- 参数配置
-
-
- 左侧图标
-
-
-
- 关闭图标
-
-
-
- 主题
-
-
-
- 状态
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/badge/index.vue b/client_mp/pages/componentsC/badge/index.vue
deleted file mode 100644
index 702a065..0000000
--- a/client_mp/pages/componentsC/badge/index.vue
+++ /dev/null
@@ -1,83 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
- 参数配置
-
- 数值显示
-
-
-
- 主题选择
-
-
-
- 显示点
-
-
-
- 尺寸
-
-
-
- 位置偏移
-
-
-
- 中心点与父右上角重合
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/button/index.vue b/client_mp/pages/componentsC/button/index.vue
deleted file mode 100644
index e347336..0000000
--- a/client_mp/pages/componentsC/button/index.vue
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
- 演示效果
-
- 山川异域,风月同天
-
-
-
-
- 参数配置
-
-
- 主题选择
-
-
-
- 尺寸大小
-
-
-
- 形状
-
-
-
- 镂空
-
-
-
- 水波纹(感觉哪里有问题?点击顶部的按钮试试)
-
-
-
- 细边框
-
-
-
- 加载中
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/cell/index.vue b/client_mp/pages/componentsC/cell/index.vue
deleted file mode 100644
index a81e802..0000000
--- a/client_mp/pages/componentsC/cell/index.vue
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 参数配置
-
-
- 更换图标
-
-
-
-
-
- 自定义右侧内容
-
-
-
-
- 描述信息
-
-
-
- 更换标题
-
-
-
- 右侧箭头
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/circleProgress/index.vue b/client_mp/pages/componentsC/circleProgress/index.vue
deleted file mode 100644
index ed1e7f1..0000000
--- a/client_mp/pages/componentsC/circleProgress/index.vue
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
- 查找中
-
-
-
-
-
- 查找中
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/collapse/index.vue b/client_mp/pages/componentsC/collapse/index.vue
deleted file mode 100644
index 26c939a..0000000
--- a/client_mp/pages/componentsC/collapse/index.vue
+++ /dev/null
@@ -1,142 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
- {{item.body}}
-
-
-
-
-
-
- 参数配置
-
-
- 手风琴模式
-
-
-
- 右侧箭头
-
-
-
- 自定义样式
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/color/index.vue b/client_mp/pages/componentsC/color/index.vue
deleted file mode 100644
index 01c9fc0..0000000
--- a/client_mp/pages/componentsC/color/index.vue
+++ /dev/null
@@ -1,364 +0,0 @@
-
-
-
-
- 主色调
-
-
-
-
- Primary
-
-
- #2979ff
-
-
-
-
- Dark
-
-
- #2b85e4
-
-
-
-
- Disabled
-
-
- #a0cfff
-
-
-
-
- Light
-
-
- #ecf5ff
-
-
-
-
-
-
- Error
-
-
-
-
- Error
-
-
- #fa3534
-
-
-
-
- Dark
-
-
- #dd6161
-
-
-
-
- Disabled
-
-
- #fab6b6
-
-
-
-
- Light
-
-
- #fef0f0
-
-
-
-
-
-
- Warning
-
-
-
-
- Warning
-
-
- #ff9900
-
-
-
-
- Dark
-
-
- #f29100
-
-
-
-
- Disabled
-
-
- #fcbd71
-
-
-
-
- Light
-
-
- #fdf6ec
-
-
-
-
-
-
- Info
-
-
-
-
- Info
-
-
- #909399
-
-
-
-
- Dark
-
-
- #82848a
-
-
-
-
- Disabled
-
-
- #c8c9cc
-
-
-
-
- Light
-
-
- #f4f4f5
-
-
-
-
-
-
- Success
-
-
-
-
- Success
-
-
- #19be6b
-
-
-
-
- Dark
-
-
- #18b566
-
-
-
-
- Disabled
-
-
- #71d5a1
-
-
-
-
- Light
-
-
- #dbf1e1
-
-
-
-
-
-
- 文字颜色
-
-
-
-
- 主要文字
-
-
- #303133
-
-
-
-
- 常规文字
-
-
- #606266
-
-
-
-
- 次要文字
-
-
- #909399
-
-
-
-
- 占位文字
-
-
- #c0c4cc
-
-
-
-
-
-
- 边框颜色
-
-
-
-
- 一级边框
-
-
- #dcdfe6
-
-
-
-
- 二级边框
-
-
- #e4e7ed
-
-
-
-
- 三级边框
-
-
- #ebeef5
-
-
-
-
- 四级边框
-
-
- #f2f6fc
-
-
-
-
-
-
- 背景颜色
-
-
-
-
- 背景颜色
-
-
- #f3f4f6
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/countDown/index.vue b/client_mp/pages/componentsC/countDown/index.vue
deleted file mode 100644
index 3b98928..0000000
--- a/client_mp/pages/componentsC/countDown/index.vue
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- 参数配置
-
-
- 调整时间
-
-
-
- 分隔符
-
-
-
- 自定义样式
-
-
-
- 显示天
-
-
-
- 字体大小
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/countTo/index.vue b/client_mp/pages/componentsC/countTo/index.vue
deleted file mode 100644
index e78d3a6..0000000
--- a/client_mp/pages/componentsC/countTo/index.vue
+++ /dev/null
@@ -1,132 +0,0 @@
-
-
-
- 演示效果
-
-
- 如果使用text-align: center对齐,数字滚动期间可能会抖动,见文档说明
-
-
-
-
-
-
- 参数配置
-
- 状态
-
-
-
- 目标值
-
-
-
- 滚动时间
-
-
-
- 显示小数
-
-
-
- 字体加粗
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/gap/index.vue b/client_mp/pages/componentsC/gap/index.vue
deleted file mode 100644
index c998bb7..0000000
--- a/client_mp/pages/componentsC/gap/index.vue
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
- 演示效果
-
-
-
-
-
- 参数配置
-
- 背景颜色
-
-
-
- 高度
-
-
-
- 上下外边距
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/grid/index.vue b/client_mp/pages/componentsC/grid/index.vue
deleted file mode 100644
index b92b47b..0000000
--- a/client_mp/pages/componentsC/grid/index.vue
+++ /dev/null
@@ -1,180 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 图片
-
-
-
- 锁头
-
-
-
-
- 沙漏
-
-
-
- 首页
-
-
-
- 星星
-
-
-
- 音量
-
-
-
-
- 回收站
-
-
-
- 快进
-
-
-
- 购物车
-
-
-
-
-
-
-
- {{ '宫格' + (index + 1) }}
-
-
-
-
-
-
-
- {{ '宫格' + (index + 1) }}
-
-
-
-
-
-
-
- {{ '宫格' + (index + 1) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 参数配置
-
-
- 是否显示边框
-
-
-
- 是否可滑动
-
-
-
- 修改列数
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/layout/index.vue b/client_mp/pages/componentsC/layout/index.vue
deleted file mode 100644
index 1a63861..0000000
--- a/client_mp/pages/componentsC/layout/index.vue
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 参数配置
-
-
- 每个栅格占用栏数(演示共3个栅格)
-
-
-
- 分栏偏移
-
-
-
-
- 水平排列方式(微信小程序无效)
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/link/index.vue b/client_mp/pages/componentsC/link/index.vue
deleted file mode 100644
index dc0928f..0000000
--- a/client_mp/pages/componentsC/link/index.vue
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
- 演示效果
-
- 点此链接,跳转uView官网
-
-
-
-
- 参数配置
-
-
- 下划线
-
-
-
- 自定义样式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/loadmore/index.vue b/client_mp/pages/componentsC/loadmore/index.vue
deleted file mode 100644
index 3df8c5f..0000000
--- a/client_mp/pages/componentsC/loadmore/index.vue
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- 参数配置
-
-
- 模式选择
-
-
-
- 自定义提示语
-
-
-
- 加载中图标样式
-
-
-
- 没有更多时用点替代
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/client_mp/pages/componentsC/mask/index.vue b/client_mp/pages/componentsC/mask/index.vue
deleted file mode 100644
index d0e7750..0000000
--- a/client_mp/pages/componentsC/mask/index.vue
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
- 演示效果
-
-
-
- 请点击弹出遮罩查看效果
-
-
-
-
-
-
-
-
-
-
- 参数配置
-
-
- 状态
-
-
-
- 缩放效果
-
-
-
- 内容填充
-
-
-
- 动画时长(ms)
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/messageInput/index.vue b/client_mp/pages/componentsC/messageInput/index.vue
deleted file mode 100644
index fd2334a..0000000
--- a/client_mp/pages/componentsC/messageInput/index.vue
+++ /dev/null
@@ -1,97 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
-
- 参数配置
-
-
- 模式选择
-
-
-
- 输入长度
-
-
-
-
- 初始值(为满足演示需要,微信小程序切换会有抖动,非性能问题)
-
-
- 初始值
-
-
-
-
- 呼吸灯效果
-
-
-
- 是否加粗
-
-
-
- 点替代输入值
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/numberBox/index.vue b/client_mp/pages/componentsC/numberBox/index.vue
deleted file mode 100644
index e2a677a..0000000
--- a/client_mp/pages/componentsC/numberBox/index.vue
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 参数配置
-
-
- 初始值
-
-
-
- 自定义样式
-
-
-
- 是否禁用
-
-
-
- 步进值
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/popup/index.vue b/client_mp/pages/componentsC/popup/index.vue
deleted file mode 100644
index 2763379..0000000
--- a/client_mp/pages/componentsC/popup/index.vue
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
- 演示效果
-
-
- 唤起弹窗
-
-
-
- 关闭弹窗
-
-
-
- 关闭弹窗
-
-
-
-
-
-
- 参数配置
-
-
- 状态
-
-
-
- 弹出方向
-
-
-
- 关闭按钮
-
-
-
- 关闭按钮位置
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/progress/index.vue b/client_mp/pages/componentsC/progress/index.vue
deleted file mode 100644
index f50f901..0000000
--- a/client_mp/pages/componentsC/progress/index.vue
+++ /dev/null
@@ -1,102 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
- 查找中
-
-
-
-
-
-
- 参数配置
-
-
- 模式选择
-
-
-
- 增减
-
-
-
- 自定义样式(线型时有效)
-
-
-
- 动态条纹(线型时有效)
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/section/index.vue b/client_mp/pages/componentsC/section/index.vue
deleted file mode 100644
index 65902f5..0000000
--- a/client_mp/pages/componentsC/section/index.vue
+++ /dev/null
@@ -1,71 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 参数配置
-
-
- 更换主标题
-
-
-
- 竖条状态
-
-
-
- 是否显示右边部分
-
-
-
- 主标题粗体
-
-
-
- 主标题颜色
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/subsection/index.vue b/client_mp/pages/componentsC/subsection/index.vue
deleted file mode 100644
index 87f9852..0000000
--- a/client_mp/pages/componentsC/subsection/index.vue
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
- 演示效果
-
-
-
-
-
-
- 参数配置
-
-
- 模式选择(为满足演示需要,切换会有抖动,非性能问题)
-
-
-
- Current值
-
-
-
- 活动选项字颜色
-
-
-
- 字体加粗
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/componentsC/test/index.vue b/client_mp/pages/componentsC/test/index.vue
deleted file mode 100644
index 33247b0..0000000
--- a/client_mp/pages/componentsC/test/index.vue
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/client_mp/pages/example/components.config.js b/client_mp/pages/example/components.config.js
deleted file mode 100644
index ebc6f09..0000000
--- a/client_mp/pages/example/components.config.js
+++ /dev/null
@@ -1,389 +0,0 @@
-
-export default [{
- groupName: '基础组件',
- groupName_en: 'Basic components',
- list: [{
- path: '/pages/componentsC/color/index',
- icon: 'color',
- title: 'Color 色彩',
- title_en: 'Color',
- }, {
- path: '/pages/componentsA/icon/index',
- icon: 'icon',
- title: 'Icon 图标',
- title_en: 'Icon',
- },{
- path: '/pages/componentsB/image/index',
- icon: 'image',
- title: 'Image 图片',
- title_en: 'Image',
- }, {
- path: '/pages/componentsC/button/index',
- icon: 'button',
- title: 'Button 按钮',
- title_en: 'Button',
- }, {
- path: '/pages/componentsC/layout/index',
- icon: 'layout',
- title: 'Layout 布局',
- title_en: 'Layout',
- }, {
- path: '/pages/componentsC/cell/index',
- icon: 'cell',
- title: 'Cell 单元格',
- title_en: 'Cell',
- }, {
- path: '/pages/componentsC/badge/index',
- icon: 'badge',
- title: 'Badge 徽标数',
- title_en: 'Badge',
- }, {
- path: '/pages/componentsA/tag/index',
- icon: 'tag',
- title: 'Tag 标签',
- title_en: 'Tag',
- }]
- },
- {
- groupName: '表单组件',
- groupName_en: 'Form components',
- list: [{
- path: '/pages/componentsA/form/index',
- icon: 'form',
- title: 'Form 表单',
- title_en: 'Form',
- }, {
- path: '/pages/componentsA/calendar/index',
- icon: 'calendar',
- title: 'Calendar 日历',
- title_en: 'Calendar',
- }, {
- path: '/pages/componentsA/select/index',
- icon: 'select',
- title: 'Select 列选择器',
- title_en: 'Select',
- }, {
- path: '/pages/componentsA/keyboard/index',
- icon: 'keyboard',
- title: 'Keyboard 键盘',
- title_en: 'Keyboard',
- }, {
- path: '/pages/componentsB/picker/index',
- icon: 'picker',
- title: 'Picker 选择器',
- title_en: 'Picker',
- }, {
- path: '/pages/componentsB/rate/index',
- icon: 'rate',
- title: 'Rate 评分',
- title_en: 'Rate',
- }, {
- path: '/pages/componentsB/search/index',
- icon: 'search',
- title: 'Search 搜索',
- title_en: 'Search',
- }, {
- path: '/pages/componentsC/numberBox/index',
- icon: 'numberBox',
- title: 'NumberBox 步进器',
- title_en: 'NumberBox',
- }, {
- path: '/pages/componentsB/upload/index',
- icon: 'upload',
- title: 'Upload 上传',
- title_en: 'Upload',
- }, {
- path: '/pages/componentsA/verificationCode/index',
- icon: 'verificationCode',
- title: 'VerificationCode 验证码倒计时',
- title_en: 'VerificationCode',
- }, {
- path: '/pages/componentsA/field/index',
- icon: 'field',
- title: 'Field 输入框',
- title_en: 'Field',
- }, {
- path: '/pages/componentsB/checkbox/index',
- icon: 'checkbox',
- title: 'Checkbox 复选框',
- title_en: 'Checkbox',
- }, {
- path: '/pages/componentsB/radio/index',
- icon: 'radio',
- title: 'Radio 单选框',
- title_en: 'Radio',
- }, {
- path: '/pages/componentsB/switch/index',
- icon: 'switch',
- title: 'Switch 开关选择器',
- title_en: 'Switch',
- }, {
- path: '/pages/componentsA/slider/index',
- icon: 'slider',
- title: 'Slider 滑动选择器',
- title_en: 'Slider',
- }]
- }, {
- groupName: '数据组件',
- groupName_en: 'Data components',
- list: [{
- path: '/pages/componentsC/progress/index',
- icon: 'progress',
- title: 'Progress 进度条',
- title_en: 'Progress',
- }, {
- path: '/pages/componentsB/table/index',
- icon: 'table',
- title: 'Table 表格',
- title_en: 'Table',
- }, {
- path: '/pages/componentsC/countDown/index',
- icon: 'countDown',
- title: 'CountDown 倒计时',
- title_en: 'CountDown',
- }, {
- path: '/pages/componentsC/countTo/index',
- icon: 'countTo',
- title: 'CountTo 数字滚动',
- title_en: 'CountTo',
- }]
- }, {
- groupName: '反馈组件',
- groupName_en: 'Feedback components',
- list: [{
- path: '/pages/componentsC/actionSheet/index',
- icon: 'actionSheet',
- title: 'ActionSheet 操作菜单',
- title_en: 'ActionSheet',
- }, {
- path: '/pages/componentsC/alertTips/index',
- icon: 'alertTips',
- title: 'AlertTips 警告提示',
- title_en: 'AlertTips',
- }, {
- path: '/pages/componentsA/toast/index',
- icon: 'toast',
- title: 'Toast 消息提示',
- title_en: 'Toast',
- }, {
- path: '/pages/componentsB/noticeBar/index',
- icon: 'noticeBar',
- title: 'NoticeBar 滚动通知',
- title_en: 'NoticeBar',
- }, {
- path: '/pages/componentsA/topTips/index',
- icon: 'topTips',
- title: 'TopTips 顶部提示',
- title_en: 'TopTips',
- }, {
- path: '/pages/componentsB/swipeAction/index',
- icon: 'swipeAction',
- title: 'SwipeAction 滑动单元格',
- title_en: 'SwipeAction',
- }, {
- path: '/pages/componentsC/collapse/index',
- icon: 'collapse',
- title: 'Collapse 折叠面板',
- title_en: 'Collapse',
- }, {
- path: '/pages/componentsC/popup/index',
- icon: 'popup',
- title: 'Popup 弹出层',
- title_en: 'Popup',
- }, {
- path: '/pages/componentsA/modal/index',
- icon: 'modal',
- title: 'Modal 模态框',
- title_en: 'Modal',
- }, {
- path: '/pages/componentsA/fullScreen/index',
- icon: 'pressingScreen',
- title: 'fullScreen 压窗屏',
- title_en: 'fullScreen',
- }]
- }, {
- groupName: '布局组件',
- groupName_en: 'Layout components',
- list: [{
- path: '/pages/componentsB/line/index',
- icon: 'line',
- title: 'Line 线条',
- title_en: 'Line',
- }, {
- path: '/pages/componentsB/card/index',
- icon: 'card',
- title: 'Card 卡片',
- title_en: 'Card',
- }, {
- path: '/pages/componentsC/mask/index',
- icon: 'mask',
- title: 'Mask 遮罩层',
- title_en: 'Mask',
- },
- // #ifndef MP-TOUTIAO
- {
- path: '/pages/componentsA/noNetwork/index',
- icon: 'noNetwork',
- title: 'NoNetwork 无网络提示',
- title_en: 'NoNetwork',
- },
- // #endif
- {
- path: '/pages/componentsC/grid/index',
- icon: 'grid',
- title: 'Grid 宫格布局',
- title_en: 'Grid',
- }, {
- path: '/pages/componentsB/swiper/index',
- icon: 'swiper',
- title: 'Swiper 轮播图',
- title_en: 'Swiper',
- }, {
- path: '/pages/componentsA/timeLine/index',
- icon: 'timeLine',
- title: 'TimeLine 时间轴',
- title_en: 'TimeLine',
- }, {
- path: '/pages/componentsB/skeleton/index',
- icon: 'skeleton',
- title: 'Skeleton 骨架屏',
- title_en: 'Skeleton',
- }, {
- path: '/pages/componentsB/sticky/index',
- icon: 'sticky',
- title: 'Sticky 吸顶',
- title_en: 'Sticky',
- },
- // #ifndef MP-TOUTIAO
- {
- path: '/pages/componentsB/waterfall/index',
- icon: 'waterfall',
- title: 'Waterfall 瀑布流',
- title_en: 'Waterfall',
- },
- // #endif
- {
- path: '/pages/componentsB/divider/index',
- icon: 'divider',
- title: 'Divider 分割线',
- title_en: 'Divider',
- }]
- }, {
- groupName: '导航组件',
- groupName_en: 'Navigation components',
- list: [{
- path: '/pages/componentsB/dropdown/index',
- icon: 'dropdown',
- title: 'Dropdown 下拉菜单',
- title_en: 'Dropdown',
- },{
- path: '/pages/componentsB/tabbar/index',
- icon: 'tabbar',
- title: 'Tabbar 底部导航栏',
- title_en: 'Tabbar',
- },{
- path: '/pages/componentsA/backTop/index',
- icon: 'backTop',
- title: 'BackTop 返回顶部',
- title_en: 'BackTop',
- },{
- path: '/pages/componentsA/navbar/index',
- icon: 'navbar',
- title: 'Navbar 导航栏',
- title_en: 'Navbar',
- }, {
- path: '/pages/componentsA/tabs/index',
- icon: 'tabs',
- title: 'Tabs 标签',
- title_en: 'Tabs',
- },
- // #ifndef MP-ALIPAY
- {
- path: '/pages/template/order/index',
- icon: 'tabsSwiper',
- title: 'TabsSwiper 全屏选项卡',
- title_en: 'TabsSwiper',
- },
- // #endif
- {
- path: '/pages/componentsC/subsection/index',
- icon: 'subsection',
- title: 'Subsection 分段器',
- title_en: 'Subsection',
- }, {
- path: '/pages/componentsA/indexList/index',
- icon: 'indexList',
- title: 'IndexList 索引列表',
- title_en: 'IndexList',
- }, {
- path: '/pages/componentsB/steps/index',
- icon: 'steps',
- title: 'Steps 步骤条',
- title_en: 'Steps',
- }, {
- path: '/pages/componentsA/empty/index',
- icon: 'empty',
- title: 'Empty 内容为空',
- title_en: 'Empty',
- }, {
- path: '/pages/componentsC/section/index',
- icon: 'section',
- title: 'Section 查看更多',
- title_en: 'Section',
- }]
- }, {
- groupName: '其他组件',
- groupName_en: 'Other components',
- list: [{
- path: '/pages/componentsA/parse/index',
- icon: 'parse',
- title: 'Parse 富文本解析器',
- title_en: 'Parse',
- },{
- path: '/pages/componentsC/messageInput/index',
- icon: 'messageInput',
- title: 'MessageInput 验证码输入',
- title_en: 'MessageInput',
- }, {
- path: '/pages/componentsA/avatarCropper/index',
- icon: 'avatarCropper',
- title: 'AvatarCropper 头像裁剪',
- title_en: 'AvatarCropper',
- }, {
- path: '/pages/componentsC/loadmore/index',
- icon: 'loadmore',
- title: 'Loadmore 加载更多',
- title_en: 'Loadmore',
- }, {
- path: '/pages/componentsB/readMore/index',
- icon: 'readMore',
- title: 'ReadMore 展开阅读更多',
- title_en: 'ReadMore',
- }, {
- path: '/pages/componentsA/lazyLoad/index',
- icon: 'lazyLoad',
- title: 'LazyLoad 懒加载',
- title_en: 'LazyLoad',
- }, {
- path: '/pages/componentsC/gap/index',
- icon: 'gap',
- title: 'Gap 间隔槽',
- title_en: 'Gap',
- }, {
- path: '/pages/componentsA/avatar/index',
- icon: 'avatar',
- title: 'Avatar 头像',
- title_en: 'Avatar',
- }, {
- path: '/pages/componentsC/link/index',
- icon: 'link',
- title: 'Link 超链接',
- title_en: 'Link',
- }, {
- path: '/pages/componentsB/loading/index',
- icon: 'loading',
- title: 'Loading 加载动画',
- title_en: 'Loading',
- }]
- },
-]
diff --git a/client_mp/pages/example/components.vue b/client_mp/pages/example/components.vue
deleted file mode 100644
index c763ee6..0000000
--- a/client_mp/pages/example/components.vue
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/example/js.config.js b/client_mp/pages/example/js.config.js
deleted file mode 100644
index 7365cab..0000000
--- a/client_mp/pages/example/js.config.js
+++ /dev/null
@@ -1,120 +0,0 @@
-export default [
- {
- groupName: '网络',
- groupName_en: 'Network',
- list: [
- {
- path: 'http',
- icon: 'http',
- title: 'Http 请求',
- title_en: 'Http',
- }
- ]
- },
- {
- groupName: '全局变量',
- groupName_en: 'Global variable',
- list: [
- {
- path: 'globalVariable',
- icon: 'globalVariable',
- title: 'GlobalVariable 全局变量',
- title_en: 'GlobalVariable',
- }
- ]
- },
- {
- groupName: '工具库',
- groupName_en: 'Tool library',
- list: [
- {
- path: 'debounce',
- icon: 'debounce',
- title: 'Throttle | Debounce 节流防抖',
- title_en: 'Throttle | Debounce',
- },
- {
- path: 'deepMerge',
- icon: 'deepMerge',
- title: 'DeepMerge 对象深度合并',
- title_en: 'DeepMerge',
- },{
- path: 'deepClone',
- icon: 'deepClone',
- title: 'DeepClone 对象深度克隆',
- title_en: 'DeepClone',
- },
- {
- path: 'timeFormat',
- icon: 'timeFormat',
- title: 'TimeFormat 时间格式化',
- title_en: 'TimeFormat',
- },{
- path: 'timeFrom',
- icon: 'timeFrom',
- title: 'TimeFrom 多久之前',
- title_en: 'TimeFrom',
- },{
- path: 'guid',
- icon: 'guid',
- title: 'Guid 全局唯一id',
- title_en: 'Guid',
- },{
- path: 'route',
- icon: 'route',
- title: 'Route 路由跳转',
- title_en: 'Route',
- },{
- path: 'randomArray',
- icon: 'randomArray',
- title: 'RandomArray 数组乱序',
- title_en: 'RandomArray',
- },{
- path: 'colorSwitch',
- icon: 'colorSwitch',
- title: 'ColorSwitch 颜色转换',
- title_en: 'ColorSwitch',
- },{
- path: 'color',
- icon: 'color',
- title: 'Color 颜色值',
- title_en: 'Color',
- },{
- path: 'queryParams',
- icon: 'queryParams',
- title: 'QueryParams 对象转URL参数',
- title_en: 'QueryParams',
- },{
- path: 'test',
- icon: 'test',
- title: 'Test 规则校验',
- title_en: 'Test',
- },{
- path: 'md5',
- icon: 'md5',
- title: 'Md5 md5加密',
- title_en: 'Md5',
- },{
- path: 'random',
- icon: 'random',
- title: 'Random 随机数值',
- title_en: 'Random',
- },{
- path: 'trim',
- icon: 'trim',
- title: 'Trim 去除空格',
- title_en: 'Trim',
- },{
- path: 'getRect',
- icon: 'getRect',
- title: 'GetRect 节点信息',
- title_en: 'GetRect',
- },{
- path: 'mpShare',
- icon: 'mpShare',
- title: 'MpShare 小程序分享',
- title_en: 'MpShare',
- }
- ]
- }
-]
\ No newline at end of file
diff --git a/client_mp/pages/example/js.vue b/client_mp/pages/example/js.vue
deleted file mode 100644
index e9848b8..0000000
--- a/client_mp/pages/example/js.vue
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/example/template.config.js b/client_mp/pages/example/template.config.js
deleted file mode 100644
index 9a4bdc1..0000000
--- a/client_mp/pages/example/template.config.js
+++ /dev/null
@@ -1,78 +0,0 @@
-export default [
- {
- groupName: '部件',
- groupName_en: 'Parts',
- list: [
- {
- path: 'coupon',
- icon: 'coupon',
- title: 'Coupon 优惠券',
- title_en: 'Coupon',
- }
- ]
- },
- {
- groupName: '页面',
- groupName_en: 'Page',
- list: [
- {
- path: '/pages/template/wxCenter/index',
- icon: 'wxCenter',
- title: 'WxCenter 仿微信个人中心',
- title_en: 'WxCenter',
- },
- // {
- // path: '/pages/template/douyin/index',
- // icon: 'douyin',
- // title: 'Douyin 仿抖音',
- // },
- {
- path: '/pages/template/keyboardPay/index',
- icon: 'keyboardPay',
- title: 'KeyboardPay 自定义键盘支付模板',
- title_en: 'KeyboardPay',
- },
- {
- path: '/pages/template/mallMenu/index1',
- icon: 'mall_menu_1',
- title: 'MallMenu 垂直分类(左右独立)',
- title_en: 'MallMenu 1',
- },{
- path: '/pages/template/mallMenu/index2',
- icon: 'mall_menu_2',
- title: 'MallMenu 垂直分类(左右联动)',
- title_en: 'MallMenu 2',
- },{
- path: 'submitBar',
- icon: 'submitBar',
- title: 'SubmitBar 提交订单栏',
- title_en: 'SubmitBar',
- },{
- path: 'comment',
- icon: 'comment',
- title: 'Comment 评论列表',
- title_en: 'Comment',
- },{
- path: 'order',
- icon: 'order',
- title: 'Order 订单列表',
- title_en: 'Order',
- },{
- path: 'login',
- icon: 'login',
- title: 'Login 登录界面',
- title_en: 'Login',
- },{
- path: 'address',
- icon: 'address',
- title: 'Address 收货地址',
- title_en: 'Address',
- },{
- path: 'citySelect',
- icon: 'citySelect',
- title: 'CitySelect 城市选择',
- title_en: 'CitySelect',
- }
- ]
- }
-]
\ No newline at end of file
diff --git a/client_mp/pages/example/template.vue b/client_mp/pages/example/template.vue
deleted file mode 100644
index 8fb9ef9..0000000
--- a/client_mp/pages/example/template.vue
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/home/home.vue b/client_mp/pages/home/home.vue
index 5072e60..b03ef4c 100644
--- a/client_mp/pages/home/home.vue
+++ b/client_mp/pages/home/home.vue
@@ -1,5 +1,5 @@
-
+
@@ -15,10 +15,10 @@
+ @body-click="taskClick" :index="item.id" padding="10">
- {{item.state}}
+ {{item.state}}
{{item.name}}
@@ -67,17 +67,17 @@
grids: [{
name: '巡查任务',
icon: 'calendar',
- path: '/pages/subtask/my'
+ path: '/pages/subtask/my',
},
{
name: '能力共享',
icon: 'share',
- path: ''
+ path: '',
},
{
name: '手册/资料',
icon: 'file-text',
- path: ''
+ path: '',
}
],
headstyle: {
@@ -97,20 +97,19 @@
},
onShow() {
- this.getMyInspectTask();
+ this.getMyInspectTaskList();
},
methods: {
- getUserInfo() {
- this.$u.api.getUserInfo().then(res => {
-
- }).catch(e => {})
- },
- getMyInspectTask() {
- this.$u.api.getMyInspectTask({
+ getMyInspectTaskList() {
+ this.$u.api.getMyInspectTaskList({
state: '执行中'
}).then(res => {
this.myinspecttaskList = res.data
- }).catch(e => {})
+ }).catch(e => {
+ uni.reLaunch({
+ url:'/pages/login/login'
+ })
+ })
},
openPage(path) {
this.$u.route({
@@ -129,15 +128,27 @@
})
},
clickGrid(val){
- uni.navigateTo({
- url:val.path
- })
+ if(val.path){
+ uni.navigateTo({
+ url:val.path
+ })
+ }else{
+ uni.showToast({
+ title:"暂未开放",
+ icon:"none"
+ })
+ }
+
}
}
}
-
+
diff --git a/client_mp/pages/inspectrecord/index.vue b/client_mp/pages/inspectrecord/index.vue
new file mode 100644
index 0000000..1fac6bd
--- /dev/null
+++ b/client_mp/pages/inspectrecord/index.vue
@@ -0,0 +1,250 @@
+
+
+
+
+
+ {{initData.state}}
+
+
+
+
+ 只看我的
+ 提交结果
+ 查看报告
+
+
+
+
+
+
+
+
+
+
+
+ {{item.item_.sortnum}}.{{item.item_.name}}
+
+ {{item.checker_.name}}--
+ {{item.result}}
+ {{item.result}}
+ {{item.result}}
+
+
+ 检查
+ 详情
+
+
+
+
+
+
+
+
+ 没有更多了
+
+
+
+
+
+
+
+
diff --git a/client_mp/pages/inspectrecord/recorddetail.vue b/client_mp/pages/inspectrecord/recorddetail.vue
new file mode 100644
index 0000000..b3f23e2
--- /dev/null
+++ b/client_mp/pages/inspectrecord/recorddetail.vue
@@ -0,0 +1,89 @@
+
+
+
+
+ 类别:{{form.item_.type}}
+ {{form.item_.sortnum}}.{{form.item_.name}}
+
+
+ {{form.item_.require}}
+
+
+ {{form.result}}
+
+
+ {{form.note}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/client_mp/pages/inspectrecord/recorddo.vue b/client_mp/pages/inspectrecord/recorddo.vue
new file mode 100644
index 0000000..49307f4
--- /dev/null
+++ b/client_mp/pages/inspectrecord/recorddo.vue
@@ -0,0 +1,126 @@
+
+
+
+
+ 类别:{{form.item_.type}}
+ {{form.item_.sortnum}}.{{form.item_.name}}
+
+
+ {{form.item_.require}}
+
+
+
+
+ {{ item }}
+
+
+
+
+
+
+
+
+
+ 提交
+
+
+
+
+
+
+
diff --git a/client_mp/pages/library/color/index.vue b/client_mp/pages/library/color/index.vue
deleted file mode 100644
index 7a9f308..0000000
--- a/client_mp/pages/library/color/index.vue
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
- 演示效果
-
-
- 此处演示为通过JS调用框架内置颜色值,此外还可以通过scss变量调用。
-
-
- 晓镜但愁云鬓改,夜吟应觉月光寒
-
-
-
-
-
- 参数配置
-
-
- 主题
-
-
-
- 常用颜色
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/colorSwitch/index.vue b/client_mp/pages/library/colorSwitch/index.vue
deleted file mode 100644
index f9af787..0000000
--- a/client_mp/pages/library/colorSwitch/index.vue
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
- 演示效果
-
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- GRB转HEX
-
-
-
- HEX转GRB
-
-
-
- 颜色渐变(rgb(21,21,21)-rgb(56,56,56),分10份)
- 执行
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/debounce/index.vue b/client_mp/pages/library/debounce/index.vue
deleted file mode 100644
index 3f93fa0..0000000
--- a/client_mp/pages/library/debounce/index.vue
+++ /dev/null
@@ -1,94 +0,0 @@
-
-
-
- 演示效果
-
-
- 选择节流或者防抖模式,点击按钮,将会执行回调并显示在下方:
-
-
- {{(index >= 1) ? '-' : ''}}回调
-
-
-
-
-
- 点击触发
-
-
- 参数配置
-
-
- 模式
-
-
-
- 时间间隔
-
-
-
- 执行时机
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/deepClone/index.vue b/client_mp/pages/library/deepClone/index.vue
deleted file mode 100644
index 1d639d2..0000000
--- a/client_mp/pages/library/deepClone/index.vue
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- 演示效果
-
-
- 源对象为:"{info: {name: 'mary'}}"
-
-
- {{result}}
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/deepMerge/index.vue b/client_mp/pages/library/deepMerge/index.vue
deleted file mode 100644
index 662fc56..0000000
--- a/client_mp/pages/library/deepMerge/index.vue
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
- 演示效果
-
-
- 源对象1为:"{info: {name: 'mary'}}"
-
-
-
- 源对象2为:"{info: {age: '22'}}"
-
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- 模式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/getRect/index.vue b/client_mp/pages/library/getRect/index.vue
deleted file mode 100644
index 50be09a..0000000
--- a/client_mp/pages/library/getRect/index.vue
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
- 演示效果
-
-
- 第一个节点
- 第2个节点
- 节点信息为
- {{ JSON.stringify(result) }}
-
-
-
- 点我自动滚动到顶部
-
-
-
-
-
- 参数配置
-
- 元素
-
-
-
- 指定元素置顶
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/globalVariable/globalData.vue b/client_mp/pages/library/globalVariable/globalData.vue
deleted file mode 100644
index 9983586..0000000
--- a/client_mp/pages/library/globalVariable/globalData.vue
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
- 演示效果
-
-
- 此处为演示globalData全局变量的使用,需手动更新
-
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- 修改globalData为如下值
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/globalVariable/index.vue b/client_mp/pages/library/globalVariable/index.vue
deleted file mode 100644
index f9ab949..0000000
--- a/client_mp/pages/library/globalVariable/index.vue
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
- 演示效果
-
-
- globalData方案的值为(曲折实现,全局动态响应)
-
-
- {{globalData}}
-
-
-
-
- Vue.prototype方案的值为(非动态响应,微信小程序无效)
-
-
- {{vuePrototype}}
-
-
-
-
- vuex方案的值为(全局动态响应,推荐)
-
-
- {{vuex_demo}}
-
-
-
-
-
- 参数配置
-
-
- 实现方式
-
- globalData
-
-
- Vue.prototype
-
-
- vuex
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/globalVariable/prototype.vue b/client_mp/pages/library/globalVariable/prototype.vue
deleted file mode 100644
index 820cd08..0000000
--- a/client_mp/pages/library/globalVariable/prototype.vue
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
- 演示效果
-
-
- 此处为演示定义在main.js中的"Vue.prototype"全局变量的使用,它不是动态响应的,修改后本页面和上一个页面的值,都不会自动刷新
-
-
- {{vuePrototype}}
-
-
-
-
-
- 参数配置
-
-
- 修改vuePrototype为如下值
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/globalVariable/vuex.vue b/client_mp/pages/library/globalVariable/vuex.vue
deleted file mode 100644
index 0104862..0000000
--- a/client_mp/pages/library/globalVariable/vuex.vue
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
- 演示效果
-
-
- 此处为演示vuex全局变量的使用
-
-
- {{vuex_demo}}
-
-
-
-
-
- 参数配置
-
-
- 修改vuex变量为如下值
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/client_mp/pages/library/guid/index.vue b/client_mp/pages/library/guid/index.vue
deleted file mode 100644
index 8d99a05..0000000
--- a/client_mp/pages/library/guid/index.vue
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
- 演示效果
-
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- 长度
-
-
-
- 首字符为"u"
-
-
-
- 取值基数(进制)
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/http/index.vue b/client_mp/pages/library/http/index.vue
deleted file mode 100644
index 67ee3ab..0000000
--- a/client_mp/pages/library/http/index.vue
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
- 演示效果
-
-
- 请求结果为:
-
-
- {{JSON.stringify(result)}}
-
-
-
-
-
- 参数配置
-
-
- 请求方式
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/md5/index.vue b/client_mp/pages/library/md5/index.vue
deleted file mode 100644
index e9b786a..0000000
--- a/client_mp/pages/library/md5/index.vue
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
- 演示效果
-
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- 源字符串
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/mpShare/index.vue b/client_mp/pages/library/mpShare/index.vue
deleted file mode 100644
index 9ad826d..0000000
--- a/client_mp/pages/library/mpShare/index.vue
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
- 演示效果
-
-
- 只对各家小程序有效,点击右上角的"胶囊",即可弹出分享菜单
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/queryParams/index.vue b/client_mp/pages/library/queryParams/index.vue
deleted file mode 100644
index 806d2a2..0000000
--- a/client_mp/pages/library/queryParams/index.vue
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
- 演示效果
-
- 源对象:{{JSON.stringify(params)}}
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- 是否带问号
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/random/index.vue b/client_mp/pages/library/random/index.vue
deleted file mode 100644
index a3fe3d1..0000000
--- a/client_mp/pages/library/random/index.vue
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
- 演示效果
-
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- 操作
-
-
- 执行
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/randomArray/index.vue b/client_mp/pages/library/randomArray/index.vue
deleted file mode 100644
index f1c953d..0000000
--- a/client_mp/pages/library/randomArray/index.vue
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
- 演示效果
-
-
- 源数组为:[1, 2, 3, 4, 5]
-
-
- {{`[${result.join(', ')}]`}}
-
-
-
-
-
- 参数配置
-
-
- 操作
- 执行
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/route/index.vue b/client_mp/pages/library/route/index.vue
deleted file mode 100644
index 85bdf43..0000000
--- a/client_mp/pages/library/route/index.vue
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
- 演示效果
-
- 点击跳转
-
-
-
-
- 参数配置
-
-
- 类型
-
-
-
- 携带参数(针对type=navigateTo)
-
-
-
- 窗口动画(App且type=navigateTo||navigateBack时有效)
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/route/routeTo.vue b/client_mp/pages/library/route/routeTo.vue
deleted file mode 100644
index acccaf3..0000000
--- a/client_mp/pages/library/route/routeTo.vue
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
- 演示效果
-
-
- 收到的参数为:{{paramsStr}}
-
-
- 返回
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/test/index.vue b/client_mp/pages/library/test/index.vue
deleted file mode 100644
index e9a13cd..0000000
--- a/client_mp/pages/library/test/index.vue
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
- 演示效果
-
-
-
- 这里仅对部分验证规则进行演示,目前总的验证规则有如下:
-
-
-
- 邮箱号
- 手机号
- URL
- 普通日期
-
-
- 十进制数
- 身份证号
- 车牌号
- 金额
-
-
- 汉字
- 字母
- 字母|数字
- 包含值
-
-
- 数值范围
- 长度范围
-
-
-
-
-
-
-
- 参数配置
-
-
- 邮箱
-
-
-
- 手机号
-
-
-
- 中文
-
-
-
- 整数
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/timeFormat/index.vue b/client_mp/pages/library/timeFormat/index.vue
deleted file mode 100644
index 78fdc0d..0000000
--- a/client_mp/pages/library/timeFormat/index.vue
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
- 演示效果
-
- 输入时间:{{timestamp}}
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- 格式
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/timeFrom/index.vue b/client_mp/pages/library/timeFrom/index.vue
deleted file mode 100644
index 9453999..0000000
--- a/client_mp/pages/library/timeFrom/index.vue
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
- 演示效果
-
-
-
- 根据当前时间,返回类似"刚刚,5分钟前,8小时前,3天前"等字样
-
-
- {{result}}
-
-
-
-
-
- 参数配置
-
-
- 时间
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/library/trim/index.vue b/client_mp/pages/library/trim/index.vue
deleted file mode 100644
index cbd4e05..0000000
--- a/client_mp/pages/library/trim/index.vue
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
- 演示效果
-
-
- 源字符串:{{`"${string}"`}}
-
-
- {{`"${result}"`}}
-
-
-
-
-
- 参数配置
-
-
- 模式选择
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/login/login.vue b/client_mp/pages/login/login.vue
index 8830949..a2a48c0 100644
--- a/client_mp/pages/login/login.vue
+++ b/client_mp/pages/login/login.vue
@@ -20,7 +20,7 @@
-
+
diff --git a/client_mp/pages/login/login_password.vue b/client_mp/pages/login/login_password.vue
index 9952015..4710526 100644
--- a/client_mp/pages/login/login_password.vue
+++ b/client_mp/pages/login/login_password.vue
@@ -72,7 +72,6 @@ export default {
if (valid) {
this.$u.api.login(this.loginForm).then(
res=>{
- console.log(res.data)
this.$u.vuex('vuex_token', res.data.access)
this.$u.api.getUserInfo().then(res=>{
this.$u.vuex('vuex_user', res.data)
diff --git a/client_mp/pages/subtask/my.vue b/client_mp/pages/subtask/my.vue
index 9f5b6fd..8fd6e66 100644
--- a/client_mp/pages/subtask/my.vue
+++ b/client_mp/pages/subtask/my.vue
@@ -5,7 +5,7 @@
@body-click="taskClick" :index="item.id">
- {{item.state}}
+ {{item.state}}
{{item.name}}
@@ -40,18 +40,27 @@
}
},
onShow() {
- this.getMyInspectTask();
+ this.getMyInspectTaskList();
},
methods: {
- getMyInspectTask() {
- this.$u.api.getMyInspectTask({}).then(res => {
+ getMyInspectTaskList() {
+ this.$u.api.getMyInspectTaskList({}).then(res => {
this.myinspecttaskList = res.data
}).catch(e => {})
},
+ taskClick(index) {
+ uni.navigateTo({
+ url:"/pages/subtask/subtaskdetail?id="+index
+ })
+ },
}
}
-
+
+
diff --git a/client_mp/pages/template/address/addSite.vue b/client_mp/pages/template/address/addSite.vue
deleted file mode 100644
index c31340e..0000000
--- a/client_mp/pages/template/address/addSite.vue
+++ /dev/null
@@ -1,173 +0,0 @@
-
-
-
-
- 收货人
-
-
-
- 手机号码
-
-
-
- 所在地区
-
-
-
- 详细地址
-
-
-
-
-
-
- 标签
-
- 家
- 公司
- 学校
-
-
-
-
-
- 设置默认地址
- 提醒:每次下单会默认推荐该地址
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/address/index.vue b/client_mp/pages/template/address/index.vue
deleted file mode 100644
index bbfe196..0000000
--- a/client_mp/pages/template/address/index.vue
+++ /dev/null
@@ -1,139 +0,0 @@
-
-
-
-
- {{ res.name }}
- {{ res.phone }}
-
- {{ item.tagText }}
-
-
-
- 广东省深圳市宝安区 自由路66号
-
-
-
-
-
- 新建收货地址
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/citySelect/index.vue b/client_mp/pages/template/citySelect/index.vue
deleted file mode 100644
index 9577dd2..0000000
--- a/client_mp/pages/template/citySelect/index.vue
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
- 演示效果
-
-
- {{ input ? input : 'Picker值' }}
-
-
-
- 参数配置
-
- 状态
- 打开Picker
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/citySelect/u-city-select.vue b/client_mp/pages/template/citySelect/u-city-select.vue
deleted file mode 100644
index bc3fdc6..0000000
--- a/client_mp/pages/template/citySelect/u-city-select.vue
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/comment/index.vue b/client_mp/pages/template/comment/index.vue
deleted file mode 100644
index 34b856f..0000000
--- a/client_mp/pages/template/comment/index.vue
+++ /dev/null
@@ -1,207 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/comment/reply.vue b/client_mp/pages/template/comment/reply.vue
deleted file mode 100644
index cb8fd6a..0000000
--- a/client_mp/pages/template/comment/reply.vue
+++ /dev/null
@@ -1,228 +0,0 @@
-
-
-
-
- 全部回复({{ comment.allReply }})
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/coupon/index.vue b/client_mp/pages/template/coupon/index.vue
deleted file mode 100644
index debc82c..0000000
--- a/client_mp/pages/template/coupon/index.vue
+++ /dev/null
@@ -1,374 +0,0 @@
-
-
-
-
-
-
- ¥
- 8
-
- 抵用券
-
-
- 【洗牙】8元无门槛红包
- 今日到期
-
-
- 立即使用
-
-
-
-
-
- 满8.1元可用、限最新版本客户端使用
-
- 使用规则
-
-
-
-
-
-
-
- ¥
- 100
-
- 满149元可用
-
-
-
-
- 限品类东券
- 仅可购买个人护理部分商品
-
-
- 2020.01.01-2020.01.31
- 立即使用
-
-
-
-
-
- 可赠送
-
-
-
-
-
-
-
-
- 袜子精保护协会
-
- 进店
-
-
-
-
-
-
- ¥
- 3
- 满88减3
-
- 店铺优惠券
- 2019.11.28-2020.1.24
-
-
-
- 去使用
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/douyin/index.nvue b/client_mp/pages/template/douyin/index.nvue
deleted file mode 100644
index ba2d2fe..0000000
--- a/client_mp/pages/template/douyin/index.nvue
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
diff --git a/client_mp/pages/template/keyboardPay/index.vue b/client_mp/pages/template/keyboardPay/index.vue
deleted file mode 100644
index 568bedf..0000000
--- a/client_mp/pages/template/keyboardPay/index.vue
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
-
-
- 发送1.00元红包
-
-
-
-
-
- 1.00
- 元
-
-
-
-
-
-
-
- 支付键盘
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/client_mp/pages/template/login/code.vue b/client_mp/pages/template/login/code.vue
deleted file mode 100644
index d8a81f4..0000000
--- a/client_mp/pages/template/login/code.vue
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
-
- 输入验证码
- 验证码已发送至 +150****9320
-
- 验证码错误,请重新输入
-
- 收不到验证码点这里
- {{ second }}秒后重新获取验证码
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/login/index.vue b/client_mp/pages/template/login/index.vue
deleted file mode 100644
index d73cfea..0000000
--- a/client_mp/pages/template/login/index.vue
+++ /dev/null
@@ -1,130 +0,0 @@
-
-
-
-
- 欢迎登录美团
-
- 未注册的手机号验证后自动创建美团账号
-
-
- 密码登录
- 遇到问题
-
-
-
-
-
-
- 微信
-
-
-
- QQ
-
-
-
- 登录代表同意
- 美团点评用户协议、隐私政策,
- 并授权使用您的美团点评账号信息(如昵称、头像、收获地址)以便您统一管理
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/mallMenu/index1.vue b/client_mp/pages/template/mallMenu/index1.vue
deleted file mode 100644
index a42dc20..0000000
--- a/client_mp/pages/template/mallMenu/index1.vue
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-
-
-
- 搜索uView
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/mallMenu/index2.vue b/client_mp/pages/template/mallMenu/index2.vue
deleted file mode 100644
index b8d0bf4..0000000
--- a/client_mp/pages/template/mallMenu/index2.vue
+++ /dev/null
@@ -1,291 +0,0 @@
-
-
-
-
-
- 搜索
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/order/index.vue b/client_mp/pages/template/order/index.vue
deleted file mode 100644
index dffd2c7..0000000
--- a/client_mp/pages/template/order/index.vue
+++ /dev/null
@@ -1,506 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ res.store }}
-
-
- {{ res.deal }}
-
-
-
-
- {{ item.title }}
- {{ item.type }}
- 发货时间 {{ item.deliveryTime }}
-
-
-
- ¥{{ priceInt(item.price) }}
- .{{ priceDecimal(item.price) }}
-
- x{{ item.number }}
-
-
-
- 共{{ totalNum(res.goodsList) }}件商品 合计:
-
- ¥{{ priceInt(totalPrice(res.goodsList)) }}.
- {{ priceDecimal(totalPrice(res.goodsList)) }}
-
-
-
-
- 查看物流
- 卖了换钱
- 评价
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ res.store }}
-
-
- {{ res.deal }}
-
-
-
-
- {{ item.title }}
- {{ item.type }}
- 发货时间 {{ item.deliveryTime }}
-
-
-
- ¥{{ priceInt(item.price) }}
- .{{ priceDecimal(item.price) }}
-
- x{{ item.number }}
-
-
-
- 共{{ totalNum(res.goodsList) }}件商品 合计:
-
- ¥{{ priceInt(totalPrice(res.goodsList)) }}.
- {{ priceDecimal(totalPrice(res.goodsList)) }}
-
-
-
-
- 查看物流
- 卖了换钱
- 评价
-
-
-
-
-
-
-
-
-
-
-
-
-
- 您还没有相关的订单
- 可以去看看有那些想买的
-
- 随便逛逛
-
-
-
-
-
-
-
-
-
-
-
-
- {{ res.store }}
-
-
- {{ res.deal }}
-
-
-
-
- {{ item.title }}
- {{ item.type }}
- 发货时间 {{ item.deliveryTime }}
-
-
-
- ¥{{ priceInt(item.price) }}
- .{{ priceDecimal(item.price) }}
-
- x{{ item.number }}
-
-
-
- 共{{ totalNum(res.goodsList) }}件商品 合计:
-
- ¥{{ priceInt(totalPrice(res.goodsList)) }}.
- {{ priceDecimal(totalPrice(res.goodsList)) }}
-
-
-
-
- 查看物流
- 卖了换钱
- 评价
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/submitBar/index.vue b/client_mp/pages/template/submitBar/index.vue
deleted file mode 100644
index 000542f..0000000
--- a/client_mp/pages/template/submitBar/index.vue
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
- 客服
-
-
-
- 店铺
-
-
-
-
- 购物车
-
-
-
- 加入购物车
- 立即购买
-
-
-
-
-
-
-
diff --git a/client_mp/pages/template/wxCenter/index.vue b/client_mp/pages/template/wxCenter/index.vue
deleted file mode 100644
index deeca72..0000000
--- a/client_mp/pages/template/wxCenter/index.vue
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- uView ui
- 微信号:helang_uView
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/client_mp/store/index.js b/client_mp/store/index.js
index 1a0ca68..1d46705 100644
--- a/client_mp/store/index.js
+++ b/client_mp/store/index.js
@@ -31,8 +31,16 @@ const store = new Vuex.Store({
state: {
// 如果上面从本地获取的lifeData对象下有对应的属性,就赋值给state中对应的变量
// 加上vuex_前缀,是防止变量名冲突,也让人一目了然
- vuex_user: lifeData.vuex_user ? lifeData.vuex_user : {name: '明月'},
+ vuex_user: lifeData.vuex_user ? lifeData.vuex_user : {},
vuex_token: lifeData.vuex_token ? lifeData.vuex_token : '',
+ // vuex_host: 'http://127.0.0.1:8000',
+ // vuex_api: 'http://127.0.0.1:8000/api',
+ // vuex_apifile: 'http://127.0.0.1:8000/api/file/',
+
+ vuex_host: 'http://testsearch.ctc.ac.cn',
+ vuex_api: 'http://testsearch.ctc.ac.cn:8000/api',
+ vuex_apifile: 'http://testsearch.ctc.ac.cn:8000/api/file/',
+
// 如果vuex_version无需保存到本地永久存储,无需lifeData.vuex_version方式
// vuex_version: '1.0.1',
// vuex_demo: '绛紫',
diff --git a/client_mp/unpackage/res/icons/1024x1024.png b/client_mp/unpackage/res/icons/1024x1024.png
deleted file mode 100644
index 5ca19cc..0000000
Binary files a/client_mp/unpackage/res/icons/1024x1024.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/120x120.png b/client_mp/unpackage/res/icons/120x120.png
deleted file mode 100644
index 3daabc3..0000000
Binary files a/client_mp/unpackage/res/icons/120x120.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/144x144.png b/client_mp/unpackage/res/icons/144x144.png
deleted file mode 100644
index c828ba9..0000000
Binary files a/client_mp/unpackage/res/icons/144x144.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/152x152.png b/client_mp/unpackage/res/icons/152x152.png
deleted file mode 100644
index 5ce9f11..0000000
Binary files a/client_mp/unpackage/res/icons/152x152.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/167x167.png b/client_mp/unpackage/res/icons/167x167.png
deleted file mode 100644
index cf32dcf..0000000
Binary files a/client_mp/unpackage/res/icons/167x167.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/180x180.png b/client_mp/unpackage/res/icons/180x180.png
deleted file mode 100644
index 273d159..0000000
Binary files a/client_mp/unpackage/res/icons/180x180.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/192x192.png b/client_mp/unpackage/res/icons/192x192.png
deleted file mode 100644
index d9bf5d6..0000000
Binary files a/client_mp/unpackage/res/icons/192x192.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/20x20.png b/client_mp/unpackage/res/icons/20x20.png
deleted file mode 100644
index 70df0c7..0000000
Binary files a/client_mp/unpackage/res/icons/20x20.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/29x29.png b/client_mp/unpackage/res/icons/29x29.png
deleted file mode 100644
index 5090390..0000000
Binary files a/client_mp/unpackage/res/icons/29x29.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/40x40.png b/client_mp/unpackage/res/icons/40x40.png
deleted file mode 100644
index dc06ed3..0000000
Binary files a/client_mp/unpackage/res/icons/40x40.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/58x58.png b/client_mp/unpackage/res/icons/58x58.png
deleted file mode 100644
index ca1c5b8..0000000
Binary files a/client_mp/unpackage/res/icons/58x58.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/60x60.png b/client_mp/unpackage/res/icons/60x60.png
deleted file mode 100644
index ba3f87b..0000000
Binary files a/client_mp/unpackage/res/icons/60x60.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/72x72.png b/client_mp/unpackage/res/icons/72x72.png
deleted file mode 100644
index e305010..0000000
Binary files a/client_mp/unpackage/res/icons/72x72.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/76x76.png b/client_mp/unpackage/res/icons/76x76.png
deleted file mode 100644
index b6da91b..0000000
Binary files a/client_mp/unpackage/res/icons/76x76.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/80x80.png b/client_mp/unpackage/res/icons/80x80.png
deleted file mode 100644
index a92970d..0000000
Binary files a/client_mp/unpackage/res/icons/80x80.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/87x87.png b/client_mp/unpackage/res/icons/87x87.png
deleted file mode 100644
index aafbe4f..0000000
Binary files a/client_mp/unpackage/res/icons/87x87.png and /dev/null differ
diff --git a/client_mp/unpackage/res/icons/96x96.png b/client_mp/unpackage/res/icons/96x96.png
deleted file mode 100644
index 2e81fc3..0000000
Binary files a/client_mp/unpackage/res/icons/96x96.png and /dev/null differ
diff --git a/client_mp/unpackage/resources/__UNI__01C03DB/www/__uniappchooselocation.js b/client_mp/unpackage/resources/__UNI__01C03DB/www/__uniappchooselocation.js
deleted file mode 100644
index 9bbff37..0000000
--- a/client_mp/unpackage/resources/__UNI__01C03DB/www/__uniappchooselocation.js
+++ /dev/null
@@ -1 +0,0 @@
-!function(e){var t={};function A(a){if(t[a])return t[a].exports;var i=t[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,A),i.l=!0,i.exports}A.m=e,A.c=t,A.d=function(e,t,a){A.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},A.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},A.t=function(e,t){if(1&t&&(e=A(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(A.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)A.d(a,i,function(t){return e[t]}.bind(null,i));return a},A.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return A.d(t,"a",t),t},A.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},A.p="",A(A.s=40)}([function(e,t){e.exports={}},function(e,t,A){"use strict";function a(e,t,A,a,i,n,o,s){var r,c="function"==typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=A,c._compiled=!0),a&&(c.functional=!0),n&&(c._scopeId="data-v-"+n),o?(r=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},c._ssrRegister=r):i&&(r=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),r)if(c.functional){c._injectStyles=r;var l=c.render;c.render=function(e,t){return r.call(t),l(e,t)}}else{var d=c.beforeCreate;c.beforeCreate=d?[].concat(d,r):[r]}return{exports:e,options:c}}A.d(t,"a",function(){return a})},function(e,t,A){"use strict";var a;Object.defineProperty(t,"__esModule",{value:!0}),t.weexPlus=t.default=void 0,a="function"==typeof getUni?getUni:function(){var e=function(e){return"function"==typeof e},t=/^\$|^on|^create|Sync$|Manager$|^pause/,A=["os","getCurrentSubNVue","getSubNVueById","stopRecord","stopVoice","stopBackgroundAudio","stopPullDownRefresh","hideKeyboard","hideToast","hideLoading","showNavigationBarLoading","hideNavigationBarLoading","canIUse","navigateBack","closeSocket","pageScrollTo","drawCanvas"],a=function(e){return!(t.test(e)&&"createBLEConnection"!==e||~A.indexOf(e))},n=function(t){return function(){for(var A=arguments.length,a=Array(A>1?A-1:0),i=1;i0&&void 0!==arguments[0]?arguments[0]:{};return e(n.success)||e(n.fail)||e(n.complete)?t.apply(void 0,[n].concat(a)):new Promise(function(e,A){t.apply(void 0,[Object.assign({},n,{success:e,fail:A})].concat(a)),Promise.prototype.finally=function(e){var t=this.constructor;return this.then(function(A){return t.resolve(e()).then(function(){return A})},function(A){return t.resolve(e()).then(function(){throw A})})}}).then(function(e){return[null,e]}).catch(function(e){return[e]})}},o=[],s=void 0;function r(e){o.forEach(function(t){return t({origin:s,data:e})})}var c=i.webview.currentWebview().id,l=new BroadcastChannel("UNI-APP-SUBNVUE");function d(e){e.$processed=!0;var t=i.webview.currentWebview().id===e.id,A="uniNView"===e.__uniapp_origin_type&&e.__uniapp_origin_id,a=e.id;if(e.postMessage=function(e){A?l.postMessage({data:e,to:t?A:a}):m({type:"UniAppSubNVue",data:e})},e.onMessage=function(e){o.push(e)},e.__uniapp_mask_id){s=e.__uniapp_host;var n=e.__uniapp_mask,r=i.webview.getWebviewById(e.__uniapp_mask_id);r=r.parent()||r;var c=e.show,d=e.hide,u=e.close,g=function(){r.setStyle({mask:"none"})};e.show=function(){r.setStyle({mask:n});for(var t=arguments.length,A=Array(t),a=0;a1&&void 0!==arguments[1]?arguments[1]:Q,A=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"application/x-www-form-urlencoded";return"object"===(void 0===e?"undefined":T(e))?"POST"===t.toUpperCase()&&"application/json"===A.toLowerCase()?JSON.stringify(e):Object.keys(e).map(function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])}).join("&"):e},G=weex.requireModule("plusstorage"),U="__TYPE",R=weex.requireModule("clipboard"),V=function(){if("function"==typeof getUniEmitter)return getUniEmitter;var e={$on:function(){console.warn("uni.$on failed")},$off:function(){console.warn("uni.$off failed")},$once:function(){console.warn("uni.$once failed")},$emit:function(){console.warn("uni.$emit failed")}};return function(){return e}}();function F(e,t,A){return e[t].apply(e,A)}var Y=Object.freeze({loadFontFace:function(t){var A=t.family,a=t.source,i=(t.desc,t.success),n=(t.fail,t.complete);P.addRule("fontFace",{fontFamily:A,src:a.replace(/"/g,"'")});var o={errMsg:"loadFontFace:ok",status:"loaded"};e(i)&&i(o),e(n)&&n(o)},ready:O,request:function(t){var A=t.url,a=t.data,i=t.header,n=t.method,o=void 0===n?"GET":n,s=t.dataType,r=void 0===s?"json":s,c=(t.responseType,t.success),l=t.fail,d=t.complete,u=!1,g=!1,f={};if(i)for(var p in i)g||"content-type"!==p.toLowerCase()?f[p]=i[p]:(g=!0,f["Content-Type"]=i[p]);return o===Q&&a&&(A=A+(~A.indexOf("?")?"&"===A.substr(-1)||"?"===A.substr(-1)?"":"&":"?")+D(a)),N.fetch({url:A,method:o,headers:f,type:"json"===r?"json":"text",body:o!==Q?D(a,o,f["Content-Type"]):""},function(t){var A=t.status,a=(t.ok,t.statusText,t.data),i=t.headers,n={};!A||-1===A||u?(n.errMsg="request:fail",e(l)&&l(n)):(n.data=a,n.statusCode=A,n.header=i,e(c)&&c(n)),e(d)&&d(n)}),{abort:function(){u=!0}}},getStorage:function(t){var A=t.key,a=(t.data,t.success),i=t.fail,n=t.complete;G.getItem(A+U,function(t){if("success"===t.result){var o=t.data;G.getItem(A,function(t){if("success"===t.result){var A=t.data;o&&A?("String"!==o&&(A=JSON.parse(A)),e(a)&&a({errMsg:"getStorage:ok",data:A})):(t.errMsg="setStorage:fail",e(i)&&i(t))}else t.errMsg="setStorage:fail",e(i)&&i(t);e(n)&&n(t)})}else t.errMsg="setStorage:fail",e(i)&&i(t),e(n)&&n(t)})},setStorage:function(t){var A=t.key,a=t.data,i=t.success,n=t.fail,o=t.complete,s="String";"object"===(void 0===a?"undefined":T(a))&&(s="Object",a=JSON.stringify(a)),G.setItem(A,a,function(t){"success"===t.result?G.setItem(A+U,s,function(t){"success"===t.result?e(i)&&i({errMsg:"setStorage:ok"}):(t.errMsg="setStorage:fail",e(n)&&n(t))}):(t.errMsg="setStorage:fail",e(n)&&n(t)),e(o)&&o(t)})},removeStorage:function(t){var A=t.key,a=(t.data,t.success),i=t.fail,n=t.complete;G.removeItem(A,function(t){"success"===t.result?e(a)&&a({errMsg:"removeStorage:ok"}):(t.errMsg="removeStorage:fail",e(i)&&i(t)),e(n)&&n(t)}),G.removeItem(A+U)},clearStorage:function(e){e.key,e.data,e.success,e.fail,e.complete},getClipboardData:function(t){var A=t.success,a=(t.fail,t.complete);R.getString(function(t){var i={errMsg:"getClipboardData:ok",data:t.data};e(A)&&A(i),e(a)&&a(i)})},setClipboardData:function(t){var A=t.data,a=t.success,i=(t.fail,t.complete),n={errMsg:"setClipboardData:ok"};R.setString(A),e(a)&&a(n),e(i)&&i(n)},onSubNVueMessage:r,getSubNVueById:u,getCurrentSubNVue:function(){return u(i.webview.currentWebview().id)},$on:function(){return F(V(),"$on",[].concat(Array.prototype.slice.call(arguments)))},$off:function(){return F(V(),"$off",[].concat(Array.prototype.slice.call(arguments)))},$once:function(){return F(V(),"$once",[].concat(Array.prototype.slice.call(arguments)))},$emit:function(){return F(V(),"$emit",[].concat(Array.prototype.slice.call(arguments)))}}),H={os:{nvue:!0}},Z={};return"undefined"!=typeof Proxy?Z=new Proxy({},{get:function(e,t){if("os"===t)return{nvue:!0};if("postMessage"===t)return m;if("requireNativePlugin"===t)return k;if("onNavigationBarButtonTap"===t)return C;if("onNavigationBarSearchInputChanged"===t)return L;if("onNavigationBarSearchInputConfirmed"===t)return I;if("onNavigationBarSearchInputClicked"===t)return E;var A=Y[t];return A||(A=b(t)),a(t)?n(A):A}}):(Object.keys(H).forEach(function(e){Z[e]=H[e]}),Z.postMessage=m,Z.requireNativePlugin=k,Z.onNavigationBarButtonTap=C,Z.onNavigationBarSearchInputChanged=L,Z.onNavigationBarSearchInputConfirmed=I,Z.onNavigationBarSearchInputClicked=E,Object.keys({uploadFile:!0,downloadFile:!0,chooseImage:!0,previewImage:!0,getImageInfo:!0,saveImageToPhotosAlbum:!0,chooseVideo:!0,saveVideoToPhotosAlbum:!0,saveFile:!0,getSavedFileList:!0,getSavedFileInfo:!0,removeSavedFile:!0,openDocument:!0,setStorage:!0,getStorage:!0,getStorageInfo:!0,removeStorage:!0,clearStorage:!0,getLocation:!0,chooseLocation:!0,openLocation:!0,getSystemInfo:!0,getNetworkType:!0,makePhoneCall:!0,scanCode:!0,setScreenBrightness:!0,getScreenBrightness:!0,setKeepScreenOn:!0,vibrateLong:!0,vibrateShort:!0,addPhoneContact:!0,showToast:!0,showLoading:!0,hideToast:!0,hideLoading:!0,showModal:!0,showActionSheet:!0,setNavigationBarTitle:!0,setNavigationBarColor:!0,navigateTo:!0,redirectTo:!0,reLaunch:!0,switchTab:!0,navigateBack:!0,getProvider:!0,login:!0,getUserInfo:!0,share:!0,requestPayment:!0,subscribePush:!0,unsubscribePush:!0,onPush:!0,offPush:!0}).forEach(function(e){var t=Y[e];t||(t=b(e)),a(e)?Z[e]=n(t):Z[e]=t})),Z};var i=new WeexPlus(weex);t.weexPlus=i;var n=a(weex,i,BroadcastChannel);t.default=n},function(e,t,A){Vue.prototype.__$appStyle__={},Vue.prototype.__merge_style&&Vue.prototype.__merge_style(A(4).default,Vue.prototype.__$appStyle__)},function(e,t,A){"use strict";A.r(t);var a=A(0),i=A.n(a);for(var n in a)"default"!==n&&function(e){A.d(t,e,function(){return a[e]})}(n);t.default=i.a},function(e,t,A){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var A={onLoad:function(){var t=this,A=e.webview.currentWebview().extras||{},a=A.from,i=(A.callback,A.runtime),n=A.data,o=void 0===n?{}:n,s=A.useGlobalEvent;this.__from=a,this.__runtime=i,this.__page=e.webview.currentWebview().id,this.__useGlobalEvent=s,this.data=JSON.parse(JSON.stringify(o)),e.key.addEventListener("backbutton",function(){"function"==typeof t.onClose?t.onClose():e.webview.currentWebview().close("auto")});var r=this,c=function(e){var t=e.data&&e.data.__message;t&&r.__onMessageCallback&&r.__onMessageCallback(t.data)};this.__useGlobalEvent?weex.requireModule("globalEvent").addEventListener("plusMessage",c):new BroadcastChannel(this.__page).onmessage=c},methods:{postMessage:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a={__message:{__page:this.__page,data:t,keep:A}},i=this.__from;if("v8"===this.__runtime){if(this.__useGlobalEvent)e.webview.postMessageToUniNView(a,i);else new BroadcastChannel(i).postMessage(a)}else{var n=e.webview.getWebviewById(i);n&&n.evalJS("__plusMessage&&__plusMessage(".concat(JSON.stringify({data:a}),")"))}},onMessage:function(e){this.__onMessageCallback=e}}};t.default=A}).call(this,A(2).weexPlus)},function(e,t,A){"use strict";var a=A(29),i=A(11),n=A(1);var o=Object(n.a)(i.default,a.a,a.b,!1,null,null,"8d0eedfe");(function(){this.options.style||(this.options.style={}),Vue.prototype.__merge_style&&Vue.prototype.__$appStyle__&&Vue.prototype.__merge_style(Vue.prototype.__$appStyle__,this.options.style),Vue.prototype.__merge_style?Vue.prototype.__merge_style(A(35).default,this.options.style):Object.assign(this.options.style,A(35).default)}).call(o),t.default=o.exports},,,,,function(e,t,A){"use strict";var a=A(12),i=A.n(a);t.default=i.a},function(e,t,A){"use strict";(function(e,a){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i,n=(i=A(5))&&i.__esModule?i:{default:i};weex.requireModule("dom").addRule("fontFace",{fontFamily:"unichooselocation",src:"url('data:font/truetype;charset=utf-8;base64,AAEAAAALAIAAAwAwR1NVQrD+s+0AAAE4AAAAQk9TLzI8gE4kAAABfAAAAFZjbWFw4nGd6QAAAegAAAGyZ2x5Zn61L/EAAAOoAAACJGhlYWQXJ/zZAAAA4AAAADZoaGVhB94DhgAAALwAAAAkaG10eBQAAAAAAAHUAAAAFGxvY2EBUAGyAAADnAAAAAxtYXhwARMAZgAAARgAAAAgbmFtZWs+cdAAAAXMAAAC2XBvc3SV1XYLAAAIqAAAAE4AAQAAA4D/gABcBAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAUAAQAAAAEAAFP+qyxfDzz1AAsEAAAAAADaBFxuAAAAANoEXG4AAP+gBAADYAAAAAgAAgAAAAAAAAABAAAABQBaAAQAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKAB4ALAABREZMVAAIAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAAAAQQAAZAABQAIAokCzAAAAI8CiQLMAAAB6wAyAQgAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA5grsMgOA/4AAXAOAAIAAAAABAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAFAAAAAwAAACwAAAAEAAABcgABAAAAAABsAAMAAQAAACwAAwAKAAABcgAEAEAAAAAKAAgAAgAC5grmHOZR7DL//wAA5grmHOZR7DL//wAAAAAAAAAAAAEACgAKAAoACgAAAAQAAwACAAEAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAEAAAAAAAAAABAAA5goAAOYKAAAABAAA5hwAAOYcAAAAAwAA5lEAAOZRAAAAAgAA7DIAAOwyAAAAAQAAAAAAAAB+AKAA0gESAAQAAP+gA+ADYAAAAAkAMQBZAAABIx4BMjY0JiIGBSMuASc1NCYiBh0BDgEHIyIGFBY7AR4BFxUUFjI2PQE+ATczMjY0JgE1NCYiBh0BLgEnMzI2NCYrAT4BNxUUFjI2PQEeARcjIgYUFjsBDgECAFABLUQtLUQtAg8iD9OcEhwSnNMPIg4SEg4iD9OcEhwSnNMPIg4SEv5SEhwSga8OPg4SEg4+Dq+BEhwSga8OPg4SEg4+Dq8BgCItLUQtLQKc0w8iDhISDiIP05wSHBKc0w8iDhISDiIP05wSHBL+gj4OEhIOPg6vgRIcEoGvDj4OEhIOPg6vgRIcEoGvAAEAAAAAA4ECgQAQAAABPgEeAQcBDgEvASY0NhYfAQM2DCIbAgz+TA0kDfcMGiIN1wJyDQIZIg3+IQ4BDf4NIhoBDd0AAQAAAAADAgKCAB0AAAE3PgEuAgYPAScmIgYUHwEHBhQWMj8BFxYyNjQnAjy4CAYGEBcWCLe3DSIaDLi4DBkjDbe3DSMZDAGAtwgWFxAGBgi4uAwaIg23tw0jGQy4uAwZIw0AAAIAAP/fA6EDHgAVACYAACUnPgE3LgEnDgEHHgEXMjY3FxYyNjQlBiIuAjQ+AjIeAhQOAQOX2CcsAQTCkpLCAwPCkj5uLdkJGRH+ijV0Z08rK09ndGdPLCxPE9MtckGSwgQEwpKSwgMoJdQIEhi3FixOaHNnTywsT2dzaE4AAAAAAAASAN4AAQAAAAAAAAAVAAAAAQAAAAAAAQARABUAAQAAAAAAAgAHACYAAQAAAAAAAwARAC0AAQAAAAAABAARAD4AAQAAAAAABQALAE8AAQAAAAAABgARAFoAAQAAAAAACgArAGsAAQAAAAAACwATAJYAAwABBAkAAAAqAKkAAwABBAkAAQAiANMAAwABBAkAAgAOAPUAAwABBAkAAwAiAQMAAwABBAkABAAiASUAAwABBAkABQAWAUcAAwABBAkABgAiAV0AAwABBAkACgBWAX8AAwABBAkACwAmAdUKQ3JlYXRlZCBieSBpY29uZm9udAp1bmljaG9vc2Vsb2NhdGlvblJlZ3VsYXJ1bmljaG9vc2Vsb2NhdGlvbnVuaWNob29zZWxvY2F0aW9uVmVyc2lvbiAxLjB1bmljaG9vc2Vsb2NhdGlvbkdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAAoAQwByAGUAYQB0AGUAZAAgAGIAeQAgAGkAYwBvAG4AZgBvAG4AdAAKAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgBSAGUAZwB1AGwAYQByAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgB1AG4AaQBjAGgAbwBvAHMAZQBsAG8AYwBhAHQAaQBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAQIBAwEEAQUBBgAKbXlsb2NhdGlvbgZ4dWFuemUFY2xvc2UGc291c3VvAAAAAA==')"});var o={en:{ok:"OK",cancel:"Cancel",search_tips:"Search for a place",no_found:"No results found"},cn:{ok:"完成",cancel:"取消",search_tips:"搜索地点",no_found:"对不起,没有搜索到相关数据"}},s=weex.requireModule("mapSearch"),r={mixins:[n.default],data:function(){return{resource:{},userKeyword:"",showLocation:!0,latitude:39.908692,longitude:116.397477,nearList:[],nearSelectedIndex:-1,nearLoading:!1,nearLoadingEnd:!1,noNearData:!1,isUserLocation:!1,statusBarHeight:20,mapHeight:250,markers:[{id:"location",latitude:39.908692,longitude:116.397477,zIndex:"1",iconPath:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAABICAMAAACORiZjAAAByFBMVEUAAAD/PyL/PyL/PyL/PyL/PyL/PyL/PyL/PyL/PiL/PyL/PyL/PyP/PyL/PyL/PyL/PyL/PiL/PyL8PiP/PyL4OyP/PyL3OyX9Pyb0RUP0RkPzOiXsPj3YLi7TKSnQJiX0RkTgMCj0QjvkNC3vPDPwOy/9PyXsNSTyRUTgNDPdMjHrPTzuQD7iNTTxQ0HTJyTZKyf1RULlNjDZKyTfLSLeLSX0Qzz3Qzv8PSTMJCTmOjnPJSXLIiLzRkXWLCvgNDPZLyzVKijRJSTtPzvcMS7jNjPZLCnyREHpOzjiNDDtPzvzQz/VKSXkNTDsPDXyQjz2RT7pMyTxOinjMST5QjTmOjnPJSLdLyr0RD//YF7/////R0b/Tk3/XVv/WFb/VVP/S0v/Pz//W1n/UVD/REP/Xlz/Ojr/QUH/Skn/U1L/ODf7VlX5UU/oOzrqNzf/+/v5UlHvQUD2TEv0SUj3Tk3/2dn8W1r6TEv7R0b7REPvPTzzPDvwNjXkMjLnMDDjLS3dKir/xcX/vr7/qqn/pqX/mZn/fn7/ZWT/8PD/4eH/3t3/zs7/ra3/kpL/iIj/e3r5PDz4NjbxMTHsMTDlLCz/9vb/6ej/ubjhOGVRAAAAWXRSTlMABQ4TFgoIHhApI0RAGhgzJi89Ozg2LVEg4s5c/v366tmZiYl2X0pE/vn08eTe1sWvqqiOgXVlUE399/b08u3n4tzZ1dTKyMTDvLmzqqKal35taFxH6sC3oms+ongAAAOtSURBVEjHjZV3W9pQGMXJzQACQRARxVF3HdVW26od7q111NqhdbRSbQVElnvvbV1tv25Jgpr3kpCcP+/7/J5z8p57QScr4l46jSJohEhKEGlANKGBYBA1NFDpyklPz3FV5tWwHKnGEbShprIuFPAujEW14A2E6nqqWYshEcYYqnNC3mEgbyh9wMgZGCUbZHZFFobjtODLKWQpRMgyhrxiiQtwK/6SqpczY/QdvqlhJflcZpZk4hiryzecQIH0IitFY0xaBWDkqCEr9CLIDsDIJqywswbpNlB/ZEpVkZ4kPZKEqwmOTakrXGCk6IdwFYExDfI+SX4ISBeExjQp0m/jUMyIeuLVBo2Xma0kIRpVhyc1Kpxn42hxdd2BuOnv3Z2d3YO4Y29LCitcQiItcxxH5kcEncRhmc5UiofowuJxqPO5kZjm9rFROC9JWAXqC8HBgciI1AWcRbqj+fgX0emDg+MRif5OglmgJdlIEvzCJ8D5xQjQORhOlJlTKR4qmwD6B6FtOJ012yyMjrHMwuNTCM1jUG2SHDQPoWMMciZxdBR6PQOOtyF0ikEmEfrom5FqH0J7YOh+LUAE1bbolmrqj5SZOwTDxXJTdBFRqCrsBtoHRnAW7hRXThYE3VA7koVjo2CfUK4O2WdHodx7c7FsZ25sNDtotxp4SF++OIrpcHf+6Ojk7BA/X2wwOfRIeLj5wVGNClYJF4K/sY4SrVBJhj323hHXG/ymScEu091PH0HaS5e0MEslGeLuBCt9fqYWKLNXNIpZGcuXfqlqqaHWLhrFrLpWvqpqpU1ixFs9Ll1WY5ZLo19ECUb3X+VXg/y5wEj4qtYVlXCtRdIvErtyZi0nDJc1aLZxCPtrZ3P9PxLIX2Vy8P8zQAxla1xVZlYba6NbYAAi7KIwSxnKKjDHtoAHfOb/qSD/Z1OKEA4XbXHUr8ozq/XOZKOFxgkx4Mv177Jaz4fhQFnWdr8c4283pVhBRSDg4+zLeOYyu9CcCsIBK5T2fF0mXK7JkYaAEaAoY9Mazqw1FdnBRcWFuA/ZGDOd/R7eH7my3m1MA208k60I3ibHozUps/bICe+PQllbUmjrBaxIqaynG5JwT5UrgmW9ubpjrt5kJMOKlMvavIM2o08cVqRcVvONyNw0Y088YVmvPIJeqVUEy9rkmU31imBZ1x7PNV6RelkeD16Relmfbm81VQTLevs2A74iDWXpXzznwwEj9YCszcbCcOqiSY4jYTh1Jx1B04o+/wH6/wOSPFj1xgAAAABJRU5ErkJggg==",width:26,height:36}],showSearch:!1,searchList:[],searchSelectedIndex:-1,searchLoading:!1,searchEnd:!1,noSearchData:!1}},computed:{disableOK:function(){return this.nearSelectedIndex<0&&this.searchSelectedIndex<0}},onLoad:function(){this.resource=e.os.language.toLowerCase().indexOf("zh")>=0?o.cn:o.en,this.statusBarHeight=e.navigator.getStatusbarHeight(),this.mapHeight=e.screen.resolutionHeight/2;var t=this.data;this.userKeyword=t.keyword||"",this._searchInputTimer=null,this._searchPageIndex=1,this._searchKeyword="",this._nearPageIndex=1,this._hasUserLocation=!1,this._userLatitude=0,this._userLongitude=0},onReady:function(){this.mapContext=this.$refs.map1,this.data.latitude&&this.data.longitude?(this._hasUserLocation=!0,this.moveToCenter({latitude:this.data.latitude,longitude:this.data.longitude})):this.getUserLocation()},onUnload:function(){this.clearSearchTimer()},methods:{cancelClick:function(){this.postMessage({event:"cancel"})},doneClick:function(){if(!this.disableOK){var e=this.showSearch&&this.searchSelectedIndex>=0?this.searchList[this.searchSelectedIndex]:this.nearList[this.nearSelectedIndex],t={name:e.name,address:e.address,latitude:e.location.latitude,longitude:e.location.longitude};this.postMessage({event:"selected",detail:t})}},getUserLocation:function(){var t=this;e.geolocation.getCurrentPosition(function(e){var A=e.coordsType,a=e.coords;"wgs84"===A.toLowerCase()?t.wgs84togcjo2(a,function(e){t.getUserLocationSuccess(e)}):t.getUserLocationSuccess(a)},function(e){t._hasUserLocation=!0,console.log(a("Gelocation Error: code - "+e.code+"; message - "+e.message," at template\\__uniappchooselocation.nvue:235"))},{geocode:!1})},getUserLocationSuccess:function(e){this._userLatitude=e.latitude,this._userLongitude=e.longitude,this._hasUserLocation=!0,this.moveToCenter({latitude:e.latitude,longitude:e.longitude})},searchclick:function(t){this.showSearch=t,!1===t&&e.key.hideSoftKeybord()},showSearchView:function(){this.searchList=[],this.showSearch=!0},hideSearchView:function(){this.showSearch=!1,e.key.hideSoftKeybord(),this.noSearchData=!1,this.searchSelectedIndex=-1},onregionchange:function(e){var t=this,A=e.detail,a=A.type||e.type;"drag"===(A.causedBy||e.causedBy)&&"end"===a&&this.mapContext.getCenterLocation(function(e){t.moveToCenter({latitude:e.latitude,longitude:e.longitude})})},onItemClick:function(e,t){t.stopPropagation(),this.nearSelectedIndex!==e&&(this.nearSelectedIndex=e),this.updateMarker(this.nearList[e].location)},moveToCenter:function(e){this.latitude===e.latitude&&this.longitude===e.longitude||(this.latitude=e.latitude,this.longitude=e.longitude,this.updateCenter(e),this.isUserLocation=this._userLatitude===e.latitude&&this._userLongitude===e.longitude)},updateCenter:function(e){this.nearSelectedIndex=-1,this.nearList=[],this.updateMarker(e),this._hasUserLocation&&(this._nearPageIndex=1,this.nearLoadingEnd=!1,this.reverseGeocode(e),this.searchNearByPoint(e))},searchNear:function(){this.nearLoadingEnd||this.searchNearByPoint({latitude:this.latitude,longitude:this.longitude})},searchNearByPoint:function(e){var t=this;this.noNearData=!1,this.nearLoading=!0,s.poiSearchNearBy({point:{latitude:e.latitude,longitude:e.longitude},key:this.userKeyword,index:this._nearPageIndex,radius:1e3},function(e){t.nearLoading=!1,t._nearPageIndex=e.pageIndex+1,t.nearLoadingEnd=e.pageIndex===e.pageNumber,e.poiList&&e.poiList.length?(t.replaceEscape(e.poiList),t.nearList=t.nearList.concat(e.poiList)):t.noNearData=0===t.nearList.length})},updateMarker:function(e){this.mapContext.translateMarker({markerId:"location",destination:{latitude:e.latitude,longitude:e.longitude},duration:0},function(e){})},reverseGeocode:function(e){var t=this;s.reverseGeocode({point:e},function(A){"success"===A.type&&t._nearPageIndex<=2&&t.nearList.splice(0,0,{code:A.code,location:e,name:"地图位置",address:A.address||""})})},onsearchinput:function(e){var t=this,A=e.detail.value.replace(/^\s+|\s+$/g,"");this.clearSearchTimer(),this._searchInputTimer=setTimeout(function(){clearTimeout(t._searchInputTimer),t._searchPageIndex=1,t.searchEnd=!1,t._searchKeyword=A,t.searchList=[],t.search()},300)},clearSearchTimer:function(){this._searchInputTimer&&clearTimeout(this._searchInputTimer)},search:function(){var e=this;0===this._searchKeyword.length||this._searchEnd||this.searchLoading||(this.searchLoading=!0,this.noSearchData=!1,s.poiSearchNearBy({point:{latitude:this.latitude,longitude:this.longitude},key:this._searchKeyword,index:this._searchPageIndex,radius:5e4},function(t){e.searchLoading=!1,e._searchPageIndex=t.pageIndex+1,e.searchEnd=t.pageIndex===t.pageNumber,t.poiList&&t.poiList.length?(e.replaceEscape(t.poiList),e.searchList=e.searchList.concat(t.poiList)):e.noSearchData=0===e.searchList.length}))},onSearchListTouchStart:function(){e.key.hideSoftKeybord()},onSearchItemClick:function(e,t){t.stopPropagation(),this.searchSelectedIndex!==e&&(this.searchSelectedIndex=e)},replaceEscape:function(e){for(var t=0;t1){var n=a.pop();i=a.join("---COMMA---"),0===n.indexOf(" at ")?i+=n:i+="---COMMA---"+n}else i=a[0];return i}},function(e,t,A){"use strict";var a=function(){var e=this,t=e.$createElement,A=e._self._c||t;return A("scroll-view",{staticStyle:{flexDirection:"column"},attrs:{scrollY:!0,enableBackToTop:!0,bubble:"true"}},[A("view",{staticClass:["page","flex-c"]},[A("view",{staticClass:["flex-r","map-view"]},[A("map",{ref:"map1",staticClass:["map","flex-fill"],style:"height:"+e.mapHeight+"px",attrs:{showLocation:e.showLocation,longitude:e.longitude,latitude:e.latitude,markers:e.markers},on:{regionchange:e.onregionchange}}),A("view",{staticClass:["map-location","flex-c","a-i-c","j-c-c"],on:{click:function(t){e.getUserLocation()}}},[A("u-text",{staticClass:["unichooselocation-icons","map-location-text"],class:{"map-location-text-active":e.isUserLocation}},[e._v("")])]),A("view",{staticClass:["nav-cover"]},[A("view",{staticClass:["statusbar"],style:"height:"+e.statusBarHeight+"px"}),A("view",{staticClass:["title-view","flex-r"]},[A("view",{staticClass:["btn-cancel"],on:{click:e.cancelClick}},[A("u-text",{staticClass:["unichooselocation-icons","btn-cancel-text"]},[e._v("")])]),A("view",{staticClass:["flex-fill"]}),A("view",{staticClass:["btn-done","flex-r","a-i-c","j-c-c"],class:{"btn-done-disabled":e.disableOK},on:{click:e.doneClick}},[A("u-text",{staticClass:["text-done"],class:{"text-done-disabled":e.disableOK}},[e._v(e._s(e.resource.ok))])])])])],1),A("view",{staticClass:["flex-c","result-area"],class:{"searching-area":e.showSearch}},[A("view",{staticClass:["search-bar"]},[A("view",{staticClass:["search-area","flex-r","a-i-c"],on:{click:e.showSearchView}},[A("u-text",{staticClass:["search-icon","unichooselocation-icons"]},[e._v("")]),A("u-text",{staticClass:["search-text"]},[e._v(e._s(e.resource.search_tips))])])]),e.noNearData?e._e():A("list",{staticClass:["flex-fill","list-view"],attrs:{loadmoreoffset:"5",scrollY:!0},on:{loadmore:function(t){e.searchNear()}}},[e._l(e.nearList,function(t,a){return A("cell",{key:t.uid,appendAsTree:!0,attrs:{append:"tree"}},[A("view",{staticClass:["list-item"],on:{click:function(t){e.onItemClick(a,t)}}},[A("view",{staticClass:["flex-r"]},[A("view",{staticClass:["list-text-area","flex-fill","flex-c"]},[A("u-text",{staticClass:["list-name"]},[e._v(e._s(t.name))]),t.distance?A("u-text",{staticClass:["list-address"]},[e._v(e._s(t.distance<100?"100m 内":t.distance+"m")+" | "+e._s(t.address))]):e._e(),t.distance?e._e():A("u-text",{staticClass:["list-address"]},[e._v(e._s(t.address))])]),a===e.nearSelectedIndex?A("view",{staticClass:["list-icon-area","flex-r","a-i-c","j-c-c"]},[A("u-text",{staticClass:["unichooselocation-icons","list-selected-icon"]},[e._v("")])]):e._e()]),A("view",{staticClass:["list-line"]})])])}),e.nearLoading?A("cell",{appendAsTree:!0,attrs:{append:"tree"}},[A("view",{staticClass:["loading-view","flex-c","a-i-c","j-c-c"]},[A("loading-indicator",{staticClass:["loading-icon"],attrs:{animating:!0,arrow:"false"}})])]):e._e()],2),e.noNearData?A("view",{staticClass:["flex-fill","flex-r","a-i-c","j-c-c"]},[A("u-text",{staticClass:["no-data"]},[e._v(e._s(e.resource.no_found))])]):e._e(),e.showSearch?A("view",{staticClass:["search-view","flex-c"]},[A("view",{staticClass:["search-bar","flex-r","a-i-c"]},[A("view",{staticClass:["search-area","flex-fill","flex-r"]},[A("u-input",{staticClass:["search-input","flex-fill"],attrs:{focus:!0,placeholder:e.resource.search_tips},on:{input:e.onsearchinput}})],1),A("u-text",{staticClass:["search-cancel"],on:{click:e.hideSearchView}},[e._v(e._s(e.resource.cancel))])]),e.noSearchData?e._e():A("list",{staticClass:["flex-fill","list-view"],attrs:{enableBackToTop:!0,scrollY:!0},on:{loadmore:function(t){e.search()},touchstart:e.onSearchListTouchStart}},[e._l(e.searchList,function(t,a){return A("cell",{key:t.uid,appendAsTree:!0,attrs:{append:"tree"}},[A("view",{staticClass:["list-item"],on:{click:function(t){e.onSearchItemClick(a,t)}}},[A("view",{staticClass:["flex-r"]},[A("view",{staticClass:["list-text-area","flex-fill","flex-c"]},[A("u-text",{staticClass:["list-name"]},[e._v(e._s(t.name))]),t.distance?A("u-text",{staticClass:["list-address"]},[e._v(e._s(t.distance<100?"100m 内":t.distance+"m")+" | "+e._s(t.address))]):e._e(),t.distance?e._e():A("u-text",{staticClass:["list-address"]},[e._v(e._s(t.address))])]),a===e.searchSelectedIndex?A("view",{staticClass:["list-icon-area","flex-r","a-i-c","j-c-c"]},[A("u-text",{staticClass:["unichooselocation-icons","list-selected-icon"]},[e._v("")])]):e._e()]),A("view",{staticClass:["list-line"]})])])}),e.searchLoading?A("cell",{appendAsTree:!0,attrs:{append:"tree"}},[A("view",{staticClass:["loading-view","flex-c","a-i-c","j-c-c"]},[A("loading-indicator",{staticClass:["loading-icon"],attrs:{animating:!0}})])]):e._e()],2),e.noSearchData?A("view",{staticClass:["flex-fill","flex-r","j-c-c"]},[A("u-text",{staticClass:["no-data","no-data-search"]},[e._v(e._s(e.resource.no_found))])]):e._e()]):e._e()])])])},i=[];A.d(t,"a",function(){return a}),A.d(t,"b",function(){return i})},,,,,,function(e,t,A){"use strict";A.r(t);var a=A(13),i=A.n(a);for(var n in a)"default"!==n&&function(e){A.d(t,e,function(){return a[e]})}(n);t.default=i.a},,,,,function(e,t,A){"use strict";A.r(t);A(3);var a=A(6);a.default.mpType="page",a.default.route="template/__uniappchooselocation",a.default.el="#root",new Vue(a.default)}]);
\ No newline at end of file
diff --git a/client_mp/unpackage/resources/__UNI__01C03DB/www/__uniappes6.js b/client_mp/unpackage/resources/__UNI__01C03DB/www/__uniappes6.js
deleted file mode 100644
index d4018e8..0000000
--- a/client_mp/unpackage/resources/__UNI__01C03DB/www/__uniappes6.js
+++ /dev/null
@@ -1 +0,0 @@
-!function(t){"use strict";!function(t){var r={};function n(e){if(r[e])return r[e].exports;var o=r[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=r,n.d=function(t,r,e){n.o(t,r)||Object.defineProperty(t,r,{enumerable:!0,get:e})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,r){if(1&r&&(t=n(t)),8&r)return t;if(4&r&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(n.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&r&&"string"!=typeof t)for(var o in t)n.d(e,o,function(r){return t[r]}.bind(null,o));return e},n.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(r,"a",r),r},n.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},n.p="",n(n.s=0)}([function(t,r,n){n(1),n(54),n(61),n(66),n(68),n(69),n(70),n(71),n(73),n(74),n(76),n(84),n(85),n(86),n(95),n(96),n(98),n(99),n(100),n(102),n(103),n(104),n(105),n(106),n(107),n(109),n(110),n(111),n(112),n(121),n(124),n(125),n(127),n(129),n(130),n(131),n(132),n(133),n(135),n(137),n(140),n(141),n(143),n(145),n(146),n(147),n(148),n(150),n(151),n(152),n(153),n(154),n(156),n(157),n(159),n(160),n(161),n(162),n(163),n(164),n(165),n(166),n(167),n(168),n(170),n(171),n(172),n(174),n(178),n(179),n(180),n(181),n(187),n(189),n(192),n(193),n(194),n(195),n(196),n(197),n(198),n(199),n(201),n(202),n(203),n(206),n(207),n(208),n(209),n(210),n(211),n(212),n(213),n(214),n(215),n(216),t.exports=n(217)},function(r,n,e){var o=e(2),i=e(6),u=e(45),c=e(14),a=e(46),f=e(39),s=e(47),l=e(48),p=e(51),g=e(49),v=e(52),h=g("isConcatSpreadable"),d=v>=51||!i(function(){var t=[];return t[h]=!1,t.concat()[0]!==t}),x=p("concat"),y=function(r){if(!c(r))return!1;var n=r[h];return n!==t?!!n:u(r)};o({target:"Array",proto:!0,forced:!d||!x},{concat:function(t){var r,n,e,o,i,u=a(this),c=l(u,0),p=0;for(r=-1,e=arguments.length;r9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n=9007199254740991)throw TypeError("Maximum allowed index exceeded");s(c,p++,i)}return c.length=p,c}})},function(r,n,e){var o=e(3),i=e(4).f,u=e(18),c=e(21),a=e(25),f=e(32),s=e(44);r.exports=function(r,n){var e,l,p,g,v,h=r.target,d=r.global,x=r.stat;if(e=d?o:x?o[h]||a(h,{}):(o[h]||{}).prototype)for(l in n){if(g=n[l],p=r.noTargetGet?(v=i(e,l))&&v.value:e[l],!s(d?l:h+(x?".":"#")+l,r.forced)&&p!==t){if(typeof g==typeof p)continue;f(g,p)}(r.sham||p&&p.sham)&&u(g,"sham",!0),c(e,l,g,r)}}},function(t,r){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof global&&global)||Function("return this")()},function(t,r,n){var e=n(5),o=n(7),i=n(8),u=n(9),c=n(13),a=n(15),f=n(16),s=Object.getOwnPropertyDescriptor;r.f=e?s:function(t,r){if(t=u(t),r=c(r,!0),f)try{return s(t,r)}catch(t){}if(a(t,r))return i(!o.f.call(t,r),t[r])}},function(t,r,n){var e=n(6);t.exports=!e(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,r){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,r,n){var e={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!e.call({1:2},1);r.f=i?function(t){var r=o(this,t);return!!r&&r.enumerable}:e},function(t,r){t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},function(t,r,n){var e=n(10),o=n(12);t.exports=function(t){return e(o(t))}},function(t,r,n){var e=n(6),o=n(11),i="".split;t.exports=e(function(){return!Object("z").propertyIsEnumerable(0)})?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,r){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(r,n){r.exports=function(r){if(r==t)throw TypeError("Can't call method on "+r);return r}},function(t,r,n){var e=n(14);t.exports=function(t,r){if(!e(t))return t;var n,o;if(r&&"function"==typeof(n=t.toString)&&!e(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!e(o=n.call(t)))return o;if(!r&&"function"==typeof(n=t.toString)&&!e(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,r){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,r){var n={}.hasOwnProperty;t.exports=function(t,r){return n.call(t,r)}},function(t,r,n){var e=n(5),o=n(6),i=n(17);t.exports=!e&&!o(function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a})},function(t,r,n){var e=n(3),o=n(14),i=e.document,u=o(i)&&o(i.createElement);t.exports=function(t){return u?i.createElement(t):{}}},function(t,r,n){var e=n(5),o=n(19),i=n(8);t.exports=e?function(t,r,n){return o.f(t,r,i(1,n))}:function(t,r,n){return t[r]=n,t}},function(t,r,n){var e=n(5),o=n(16),i=n(20),u=n(13),c=Object.defineProperty;r.f=e?c:function(t,r,n){if(i(t),r=u(r,!0),i(n),o)try{return c(t,r,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[r]=n.value),t}},function(t,r,n){var e=n(14);t.exports=function(t){if(!e(t))throw TypeError(String(t)+" is not an object");return t}},function(t,r,n){var e=n(3),o=n(22),i=n(18),u=n(15),c=n(25),a=n(26),f=n(27),s=f.get,l=f.enforce,p=String(a).split("toString");o("inspectSource",function(t){return a.call(t)}),(t.exports=function(t,r,n,o){var a=!!o&&!!o.unsafe,f=!!o&&!!o.enumerable,s=!!o&&!!o.noTargetGet;"function"==typeof n&&("string"!=typeof r||u(n,"name")||i(n,"name",r),l(n).source=p.join("string"==typeof r?r:"")),t!==e?(a?!s&&t[r]&&(f=!0):delete t[r],f?t[r]=n:i(t,r,n)):f?t[r]=n:c(r,n)})(Function.prototype,"toString",function(){return"function"==typeof this&&s(this).source||a.call(this)})},function(r,n,e){var o=e(23),i=e(24);(r.exports=function(r,n){return i[r]||(i[r]=n!==t?n:{})})("versions",[]).push({version:"3.3.6",mode:o?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,r){t.exports=!1},function(t,r,n){var e=n(3),o=n(25),i=e["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,r,n){var e=n(3),o=n(18);t.exports=function(t,r){try{o(e,t,r)}catch(n){e[t]=r}return r}},function(t,r,n){var e=n(22);t.exports=e("native-function-to-string",Function.toString)},function(t,r,n){var e,o,i,u=n(28),c=n(3),a=n(14),f=n(18),s=n(15),l=n(29),p=n(31),g=c.WeakMap;if(u){var v=new g,h=v.get,d=v.has,x=v.set;e=function(t,r){return x.call(v,t,r),r},o=function(t){return h.call(v,t)||{}},i=function(t){return d.call(v,t)}}else{var y=l("state");p[y]=!0,e=function(t,r){return f(t,y,r),r},o=function(t){return s(t,y)?t[y]:{}},i=function(t){return s(t,y)}}t.exports={set:e,get:o,has:i,enforce:function(t){return i(t)?o(t):e(t,{})},getterFor:function(t){return function(r){var n;if(!a(r)||(n=o(r)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,r,n){var e=n(3),o=n(26),i=e.WeakMap;t.exports="function"==typeof i&&/native code/.test(o.call(i))},function(t,r,n){var e=n(22),o=n(30),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(r,n){var e=0,o=Math.random();r.exports=function(r){return"Symbol("+String(r===t?"":r)+")_"+(++e+o).toString(36)}},function(t,r){t.exports={}},function(t,r,n){var e=n(15),o=n(33),i=n(4),u=n(19);t.exports=function(t,r){for(var n=o(r),c=u.f,a=i.f,f=0;fa;)e(c,n=r[a++])&&(~i(f,n)||f.push(n));return f}},function(t,r,n){var e=n(9),o=n(39),i=n(41),u=function(t){return function(r,n,u){var c,a=e(r),f=o(a.length),s=i(u,f);if(t&&n!=n){for(;f>s;)if((c=a[s++])!=c)return!0}else for(;f>s;s++)if((t||s in a)&&a[s]===n)return t||s||0;return!t&&-1}};t.exports={includes:u(!0),indexOf:u(!1)}},function(t,r,n){var e=n(40),o=Math.min;t.exports=function(t){return t>0?o(e(t),9007199254740991):0}},function(t,r){var n=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:n)(t)}},function(t,r,n){var e=n(40),o=Math.max,i=Math.min;t.exports=function(t,r){var n=e(t);return n<0?o(n+r,0):i(n,r)}},function(t,r){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,r){r.f=Object.getOwnPropertySymbols},function(t,r,n){var e=n(6),o=/#|\.prototype\./,i=function(t,r){var n=c[u(t)];return n==f||n!=a&&("function"==typeof r?e(r):!!r)},u=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},c=i.data={},a=i.NATIVE="N",f=i.POLYFILL="P";t.exports=i},function(t,r,n){var e=n(11);t.exports=Array.isArray||function(t){return"Array"==e(t)}},function(t,r,n){var e=n(12);t.exports=function(t){return Object(e(t))}},function(t,r,n){var e=n(13),o=n(19),i=n(8);t.exports=function(t,r,n){var u=e(r);u in t?o.f(t,u,i(0,n)):t[u]=n}},function(r,n,e){var o=e(14),i=e(45),u=e(49)("species");r.exports=function(r,n){var e;return i(r)&&("function"!=typeof(e=r.constructor)||e!==Array&&!i(e.prototype)?o(e)&&null===(e=e[u])&&(e=t):e=t),new(e===t?Array:e)(0===n?0:n)}},function(t,r,n){var e=n(3),o=n(22),i=n(30),u=n(50),c=e.Symbol,a=o("wks");t.exports=function(t){return a[t]||(a[t]=u&&c[t]||(u?c:i)("Symbol."+t))}},function(t,r,n){var e=n(6);t.exports=!!Object.getOwnPropertySymbols&&!e(function(){return!String(Symbol())})},function(t,r,n){var e=n(6),o=n(49),i=n(52),u=o("species");t.exports=function(t){return i>=51||!e(function(){var r=[];return(r.constructor={})[u]=function(){return{foo:1}},1!==r[t](Boolean).foo})}},function(t,r,n){var e,o,i=n(3),u=n(53),c=i.process,a=c&&c.versions,f=a&&a.v8;f?o=(e=f.split("."))[0]+e[1]:u&&(!(e=u.match(/Edge\/(\d+)/))||e[1]>=74)&&(e=u.match(/Chrome\/(\d+)/))&&(o=e[1]),t.exports=o&&+o},function(t,r,n){var e=n(34);t.exports=e("navigator","userAgent")||""},function(t,r,n){var e=n(2),o=n(55),i=n(56);e({target:"Array",proto:!0},{copyWithin:o}),i("copyWithin")},function(r,n,e){var o=e(46),i=e(41),u=e(39),c=Math.min;r.exports=[].copyWithin||function(r,n){var e=o(this),a=u(e.length),f=i(r,a),s=i(n,a),l=arguments.length>2?arguments[2]:t,p=c((l===t?a:i(l,a))-s,a-f),g=1;for(s0;)s in e?e[f]=e[s]:delete e[f],f+=g,s+=g;return e}},function(r,n,e){var o=e(49),i=e(57),u=e(18),c=o("unscopables"),a=Array.prototype;a[c]==t&&u(a,c,i(null)),r.exports=function(t){a[c][t]=!0}},function(r,n,e){var o=e(20),i=e(58),u=e(42),c=e(31),a=e(60),f=e(17),s=e(29)("IE_PROTO"),l=function(){},p=function(){var t,r=f("iframe"),n=u.length;for(r.style.display="none",a.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write("
- View
-
-
-
-
-
-
-
-
-
-
-