34 changed files with 3763 additions and 21086 deletions
Unified View
Diff Options
-
14index.html
-
27main.js
-
32manifest.json
-
56pages/client/index.vue
-
4pages/login/index.vue
-
7pages/mall/index.vue
-
7pages/mine/index.vue
-
8pages/trade/index.vue
-
46store/global.js
-
7store/index.js
-
15unpackage/dist/dev/app-plus/__uniappautomator.js
-
2182unpackage/dist/dev/app-plus/__uniappchooselocation.js
-
1unpackage/dist/dev/app-plus/__uniappes6.js
-
1171unpackage/dist/dev/app-plus/__uniappopenlocation.js
-
1897unpackage/dist/dev/app-plus/__uniapppicker.js
-
12154unpackage/dist/dev/app-plus/__uniappquill.js
-
1678unpackage/dist/dev/app-plus/__uniappquillimageresize.js
-
1263unpackage/dist/dev/app-plus/__uniappscan.js
-
24unpackage/dist/dev/app-plus/__uniappview.html
-
16unpackage/dist/dev/app-plus/app-config-service.js
-
155unpackage/dist/dev/app-plus/app-config.js
-
2326unpackage/dist/dev/app-plus/app-service.js
-
1597unpackage/dist/dev/app-plus/app-view.js
-
46unpackage/dist/dev/app-plus/app.css
-
2unpackage/dist/dev/app-plus/manifest.json
-
23unpackage/dist/dev/app-plus/pages/client/index.css
-
0unpackage/dist/dev/app-plus/pages/login/index.css
-
23unpackage/dist/dev/app-plus/pages/mall/index.css
-
23unpackage/dist/dev/app-plus/pages/mine/index.css
-
23unpackage/dist/dev/app-plus/pages/trade/index.css
-
9unpackage/dist/dev/app-plus/uni-app-view.umd.js
-
1unpackage/dist/dev/app-plus/view.css
-
6unpackage/dist/dev/app-plus/view.umd.min.js
-
6utils/http/index.js
@ -1,14 +0,0 @@ |
|||||
<!DOCTYPE html> |
|
||||
<html lang="en"> |
|
||||
<head> |
|
||||
<meta charset="UTF-8" /> |
|
||||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> |
|
||||
<title></title> |
|
||||
<!--preload-links--> |
|
||||
<!--app-context--> |
|
||||
</head> |
|
||||
<body> |
|
||||
<div id="app"><!--app-html--></div> |
|
||||
<script type="module" src="/main.js"></script> |
|
||||
</body> |
|
||||
</html> |
|
||||
@ -1,20 +1,11 @@ |
|||||
import App from './App' |
import App from './App' |
||||
import pubFn from './common/js/publicFn.js' |
import pubFn from './common/js/publicFn.js' |
||||
|
|
||||
// import Vue from 'vue'
|
|
||||
// Vue.config.productionTip = false
|
|
||||
// App.mpType = 'app'
|
|
||||
// const app = new Vue({
|
|
||||
// ...App
|
|
||||
// })
|
|
||||
// app.$mount()
|
|
||||
|
|
||||
|
|
||||
import { createSSRApp } from 'vue' |
|
||||
export function createApp() { |
|
||||
const app = createSSRApp(App) |
|
||||
app.provide('$pubFn',pubFn) |
|
||||
return { |
|
||||
app |
|
||||
} |
|
||||
} |
|
||||
|
import store from "./store"; |
||||
|
import Vue from 'vue' |
||||
|
Vue.config.productionTip = false |
||||
|
Vue.prototype.$store = store; |
||||
|
App.mpType = 'app' |
||||
|
const app = new Vue({ |
||||
|
...App |
||||
|
}) |
||||
|
app.$mount() |
||||
@ -1,46 +0,0 @@ |
|||||
// 自定义一个简单的状态管理工具,不允许直接调用storage
|
|
||||
// 后续可以换vuex
|
|
||||
import {reactive,readonly} from 'vue' |
|
||||
let userInfoString = uni.getStorageSync('userInfo') || '{}' |
|
||||
let userInfoStore = JSON.parse(userInfoString) |
|
||||
const userInfo = reactive({ |
|
||||
userId:userInfoStore.userId, |
|
||||
name:userInfoStore.name, |
|
||||
userType:userInfoStore.userType |
|
||||
}) |
|
||||
let globalInfoString = uni.getStorageSync('userInfo') || '{}' |
|
||||
let globalInfoStore = JSON.parse(globalInfoString) |
|
||||
const globalInfo = reactive({ |
|
||||
token:globalInfoStore['Qn_token'], |
|
||||
loginToken:globalInfoStore['loginToken'] |
|
||||
}) |
|
||||
|
|
||||
export const userAction = { |
|
||||
getUserInfo:() => { |
|
||||
return readonly(userInfo) |
|
||||
}, |
|
||||
setUserInfo:(newValue) =>{ |
|
||||
let keys = Object.keys(newValue) |
|
||||
keys.forEach(key => { |
|
||||
if(userInfo.hasOwnProperty(key)) { |
|
||||
userInfo[key] = newValue[key] |
|
||||
} |
|
||||
}) |
|
||||
uni.setStorageSync('userInfo',JSON.stringify(userInfo)) |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
export const globalAction = { |
|
||||
getGlobalInfo:() => { |
|
||||
return readonly(globalInfo) |
|
||||
}, |
|
||||
setGlobalInfo:(newValue) =>{ |
|
||||
let keys = Object.keys(newValue) |
|
||||
keys.forEach(key => { |
|
||||
if(globalInfo.hasOwnProperty(key)) { |
|
||||
globalInfo[key] = newValue[key] |
|
||||
} |
|
||||
}) |
|
||||
uni.setStorageSync('globalInfo',JSON.stringify(globalInfo)) |
|
||||
} |
|
||||
} |
|
||||
@ -0,0 +1,7 @@ |
|||||
|
import Vue from 'vue' |
||||
|
import Vuex from 'vuex' |
||||
|
Vue.use(Vuex) |
||||
|
const store = new Vuex.Store({ |
||||
|
state: {} |
||||
|
}) |
||||
|
export default store |
||||
15
unpackage/dist/dev/app-plus/__uniappautomator.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
2182
unpackage/dist/dev/app-plus/__uniappchooselocation.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1
unpackage/dist/dev/app-plus/__uniappes6.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1171
unpackage/dist/dev/app-plus/__uniappopenlocation.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1897
unpackage/dist/dev/app-plus/__uniapppicker.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
12154
unpackage/dist/dev/app-plus/__uniappquill.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1678
unpackage/dist/dev/app-plus/__uniappquillimageresize.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1263
unpackage/dist/dev/app-plus/__uniappscan.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,17 +1,25 @@ |
|||||
<!DOCTYPE html> |
<!DOCTYPE html> |
||||
<html lang="en"> |
|
||||
|
<html lang="zh-CN"> |
||||
|
|
||||
<head> |
<head> |
||||
<meta charset="UTF-8" /> |
<meta charset="UTF-8" /> |
||||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /> |
|
||||
|
<script> |
||||
|
var __UniViewStartTime__ = Date.now(); |
||||
|
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || |
||||
|
CSS.supports('top: constant(a)')) |
||||
|
document.write( |
||||
|
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + |
||||
|
(coverSupport ? ', viewport-fit=cover' : '') + '" />') |
||||
|
</script> |
||||
<title>View</title> |
<title>View</title> |
||||
<link rel="stylesheet" href="app.css" /> |
|
||||
<script>var __uniConfig = {"globalStyle":{}}</script> |
|
||||
|
<link rel="stylesheet" href="view.css" /> |
||||
</head> |
</head> |
||||
|
|
||||
<body> |
<body> |
||||
<div id="app"></div> |
<div id="app"></div> |
||||
<script src="uni-app-view.umd.js"></script> |
|
||||
|
|
||||
|
|
||||
|
|
||||
|
<script src="__uniappes6.js"></script> |
||||
|
<script src="view.umd.min.js"></script> |
||||
|
<script src="app-view.js"></script> |
||||
</body> |
</body> |
||||
|
|
||||
</html> |
</html> |
||||
@ -1,10 +1,8 @@ |
|||||
|
|
||||
;(function(){ |
|
||||
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[]; |
|
||||
const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","navigationBar":{"backgroundColor":"#F8F8F8","titleText":"uni-app","titleColor":"#000000"}},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"uniapp-demo","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"compilerVersion":"3.2.16","entryPagePath":"pages/client/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"tabBar":{"position":"bottom","color":"#888","selectedColor":"#007AFF","borderStyle":"white","blurEffect":"none","fontSize":"10px","iconWidth":"24px","spacing":"3px","height":"50px","backgroundColor":"#f9f9f9","list":[{"pagePath":"pages/client/index","iconPath":"/static/imgs/tabbar/store-gray.png","selectedIconPath":"/static/imgs/tabbar/store-blue.png","text":"客户"},{"pagePath":"pages/trade/index","iconPath":"/static/imgs/tabbar/store-gray.png","selectedIconPath":"/static/imgs/tabbar/store-blue.png","text":"交易"},{"pagePath":"pages/mall/index","iconPath":"/static/imgs/tabbar/store-gray.png","selectedIconPath":"/static/imgs/tabbar/store-blue.png","text":"纸商城"},{"pagePath":"pages/mine/index","iconPath":"/static/imgs/tabbar/store-gray.png","selectedIconPath":"/static/imgs/tabbar/store-blue.png","text":"我的"}],"selectedIndex":0,"shown":true},"locales":{}}; |
|
||||
const __uniRoutes = [{"path":"pages/client/index","meta":{"isQuit":true,"isEntry":true,"isTabBar":true,"tabBarIndex":0,"navigationBar":{"titleText":"客户"}}},{"path":"pages/trade/index","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"navigationBar":{"titleText":"交易"}}},{"path":"pages/mall/index","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":2,"navigationBar":{"titleText":"商城"}}},{"path":"pages/mine/index","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":3,"navigationBar":{"titleText":"我的"}}},{"path":"pages/login/index","meta":{"enablePullDownRefresh":false,"navigationBar":{"titleText":"登录"}}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute)); |
|
||||
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); |
|
||||
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); |
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:u,window:u,document:u,frames:u,self:u,location:u,navigator:u,localStorage:u,history:u,Caches:u,screen:u,alert:u,confirm:u,prompt:u,fetch:u,XMLHttpRequest:u,WebSocket:u,webkit:u,print:u}}}}); |
|
||||
})(); |
|
||||
|
|
||||
|
var isReady=false;var onReadyCallbacks=[]; |
||||
|
var isServiceReady=false;var onServiceReadyCallbacks=[]; |
||||
|
var __uniConfig = {"pages":["pages/client/index","pages/trade/index","pages/mall/index","pages/mine/index","pages/login/index"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#888","selectedColor":"#007AFF","borderStyle":"white","backgroundColor":"#f9f9f9","list":[{"pagePath":"pages/client/index","iconPath":"static/imgs/tabbar/store-gray.png","selectedIconPath":"static/imgs/tabbar/store-blue.png","text":"客户"},{"pagePath":"pages/trade/index","iconPath":"static/imgs/tabbar/store-gray.png","selectedIconPath":"static/imgs/tabbar/store-blue.png","text":"交易"},{"pagePath":"pages/mall/index","iconPath":"static/imgs/tabbar/store-gray.png","selectedIconPath":"static/imgs/tabbar/store-blue.png","text":"纸商城"},{"pagePath":"pages/mine/index","iconPath":"static/imgs/tabbar/store-gray.png","selectedIconPath":"static/imgs/tabbar/store-blue.png","text":"我的"}]},"networkTimeout":{"request":6000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"uniapp-demo","compilerVersion":"3.2.16","entryPagePath":"pages/client/index"}; |
||||
|
var __uniRoutes = [{"path":"/pages/client/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"客户"}},{"path":"/pages/trade/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"交易"}},{"path":"/pages/mall/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"商城"}},{"path":"/pages/mine/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的"}},{"path":"/pages/login/index","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false}}]; |
||||
|
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); |
||||
|
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); |
||||
|
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}}); |
||||
@ -1 +1,154 @@ |
|||||
(function(){})(); |
|
||||
|
/******/ (function(modules) { // webpackBootstrap
|
||||
|
/******/ // install a JSONP callback for chunk loading
|
||||
|
/******/ function webpackJsonpCallback(data) { |
||||
|
/******/ var chunkIds = data[0]; |
||||
|
/******/ var moreModules = data[1]; |
||||
|
/******/ var executeModules = data[2]; |
||||
|
/******/ |
||||
|
/******/ // add "moreModules" to the modules object,
|
||||
|
/******/ // then flag all "chunkIds" as loaded and fire callback
|
||||
|
/******/ var moduleId, chunkId, i = 0, resolves = []; |
||||
|
/******/ for(;i < chunkIds.length; i++) { |
||||
|
/******/ chunkId = chunkIds[i]; |
||||
|
/******/ if(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) { |
||||
|
/******/ resolves.push(installedChunks[chunkId][0]); |
||||
|
/******/ } |
||||
|
/******/ installedChunks[chunkId] = 0; |
||||
|
/******/ } |
||||
|
/******/ for(moduleId in moreModules) { |
||||
|
/******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) { |
||||
|
/******/ modules[moduleId] = moreModules[moduleId]; |
||||
|
/******/ } |
||||
|
/******/ } |
||||
|
/******/ if(parentJsonpFunction) parentJsonpFunction(data); |
||||
|
/******/ |
||||
|
/******/ while(resolves.length) { |
||||
|
/******/ resolves.shift()(); |
||||
|
/******/ } |
||||
|
/******/ |
||||
|
/******/ // add entry modules from loaded chunk to deferred list
|
||||
|
/******/ deferredModules.push.apply(deferredModules, executeModules || []); |
||||
|
/******/ |
||||
|
/******/ // run deferred modules when all chunks ready
|
||||
|
/******/ return checkDeferredModules(); |
||||
|
/******/ }; |
||||
|
/******/ function checkDeferredModules() { |
||||
|
/******/ var result; |
||||
|
/******/ for(var i = 0; i < deferredModules.length; i++) { |
||||
|
/******/ var deferredModule = deferredModules[i]; |
||||
|
/******/ var fulfilled = true; |
||||
|
/******/ for(var j = 1; j < deferredModule.length; j++) { |
||||
|
/******/ var depId = deferredModule[j]; |
||||
|
/******/ if(installedChunks[depId] !== 0) fulfilled = false; |
||||
|
/******/ } |
||||
|
/******/ if(fulfilled) { |
||||
|
/******/ deferredModules.splice(i--, 1); |
||||
|
/******/ result = __webpack_require__(__webpack_require__.s = deferredModule[0]); |
||||
|
/******/ } |
||||
|
/******/ } |
||||
|
/******/ |
||||
|
/******/ return result; |
||||
|
/******/ } |
||||
|
/******/ |
||||
|
/******/ // The module cache
|
||||
|
/******/ var installedModules = {}; |
||||
|
/******/ |
||||
|
/******/ // object to store loaded and loading chunks
|
||||
|
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
||||
|
/******/ // Promise = chunk loading, 0 = chunk loaded
|
||||
|
/******/ var installedChunks = { |
||||
|
/******/ "app-config": 0 |
||||
|
/******/ }; |
||||
|
/******/ |
||||
|
/******/ var deferredModules = []; |
||||
|
/******/ |
||||
|
/******/ // The require function
|
||||
|
/******/ function __webpack_require__(moduleId) { |
||||
|
/******/ |
||||
|
/******/ // Check if module is in cache
|
||||
|
/******/ if(installedModules[moduleId]) { |
||||
|
/******/ return installedModules[moduleId].exports; |
||||
|
/******/ } |
||||
|
/******/ // Create a new module (and put it into the cache)
|
||||
|
/******/ var module = installedModules[moduleId] = { |
||||
|
/******/ i: moduleId, |
||||
|
/******/ l: false, |
||||
|
/******/ exports: {} |
||||
|
/******/ }; |
||||
|
/******/ |
||||
|
/******/ // Execute the module function
|
||||
|
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); |
||||
|
/******/ |
||||
|
/******/ // Flag the module as loaded
|
||||
|
/******/ module.l = true; |
||||
|
/******/ |
||||
|
/******/ // Return the exports of the module
|
||||
|
/******/ return module.exports; |
||||
|
/******/ } |
||||
|
/******/ |
||||
|
/******/ |
||||
|
/******/ // expose the modules object (__webpack_modules__)
|
||||
|
/******/ __webpack_require__.m = modules; |
||||
|
/******/ |
||||
|
/******/ // expose the module cache
|
||||
|
/******/ __webpack_require__.c = installedModules; |
||||
|
/******/ |
||||
|
/******/ // define getter function for harmony exports
|
||||
|
/******/ __webpack_require__.d = function(exports, name, getter) { |
||||
|
/******/ if(!__webpack_require__.o(exports, name)) { |
||||
|
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); |
||||
|
/******/ } |
||||
|
/******/ }; |
||||
|
/******/ |
||||
|
/******/ // define __esModule on exports
|
||||
|
/******/ __webpack_require__.r = function(exports) { |
||||
|
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { |
||||
|
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); |
||||
|
/******/ } |
||||
|
/******/ Object.defineProperty(exports, '__esModule', { value: true }); |
||||
|
/******/ }; |
||||
|
/******/ |
||||
|
/******/ // create a fake namespace object
|
||||
|
/******/ // mode & 1: value is a module id, require it
|
||||
|
/******/ // mode & 2: merge all properties of value into the ns
|
||||
|
/******/ // mode & 4: return value when already ns object
|
||||
|
/******/ // mode & 8|1: behave like require
|
||||
|
/******/ __webpack_require__.t = function(value, mode) { |
||||
|
/******/ if(mode & 1) value = __webpack_require__(value); |
||||
|
/******/ if(mode & 8) return value; |
||||
|
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; |
||||
|
/******/ var ns = Object.create(null); |
||||
|
/******/ __webpack_require__.r(ns); |
||||
|
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); |
||||
|
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); |
||||
|
/******/ return ns; |
||||
|
/******/ }; |
||||
|
/******/ |
||||
|
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
|
/******/ __webpack_require__.n = function(module) { |
||||
|
/******/ var getter = module && module.__esModule ? |
||||
|
/******/ function getDefault() { return module['default']; } : |
||||
|
/******/ function getModuleExports() { return module; }; |
||||
|
/******/ __webpack_require__.d(getter, 'a', getter); |
||||
|
/******/ return getter; |
||||
|
/******/ }; |
||||
|
/******/ |
||||
|
/******/ // Object.prototype.hasOwnProperty.call
|
||||
|
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; |
||||
|
/******/ |
||||
|
/******/ // __webpack_public_path__
|
||||
|
/******/ __webpack_require__.p = "/"; |
||||
|
/******/ |
||||
|
/******/ var jsonpArray = this["webpackJsonp"] = this["webpackJsonp"] || []; |
||||
|
/******/ var oldJsonpFunction = jsonpArray.push.bind(jsonpArray); |
||||
|
/******/ jsonpArray.push = webpackJsonpCallback; |
||||
|
/******/ jsonpArray = jsonpArray.slice(); |
||||
|
/******/ for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]); |
||||
|
/******/ var parentJsonpFunction = oldJsonpFunction; |
||||
|
/******/ |
||||
|
/******/ |
||||
|
/******/ // run deferred modules from other chunks
|
||||
|
/******/ checkDeferredModules(); |
||||
|
/******/ }) |
||||
|
/************************************************************************/ |
||||
|
/******/ ([]); |
||||
2326
unpackage/dist/dev/app-plus/app-service.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1597
unpackage/dist/dev/app-plus/app-view.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
46
unpackage/dist/dev/app-plus/app.css
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1 +1 @@ |
|||||
{"@platforms":["android","iPhone","iPad"],"name":"uniapp-demo","version":{"name":"1.0.0","code":"100"},"description":"","developer":{"name":"","email":"","url":""},"permissions":{"Contacts":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"light","background":"#F8F8F8"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"google":{"permissions":["\u003cuses-feature android:name\u003d\"android.hardware.camera\"/\u003e","\u003cuses-feature android:name\u003d\"android.hardware.camera.autofocus\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.ACCESS_NETWORK_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.ACCESS_WIFI_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.CAMERA\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.CHANGE_NETWORK_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.CHANGE_WIFI_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.FLASHLIGHT\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.GET_ACCOUNTS\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.READ_CONTACTS\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.READ_LOGS\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.READ_PHONE_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.VIBRATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.WAKE_LOCK\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.WRITE_CONTACTS\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.WRITE_SETTINGS\"/\u003e"]},"apple":{},"plugins":{"maps":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"arguments":"{\"name\":\"\",\"path\":\"\",\"query\":\"\"}","allowsInlineMediaPlayback":true,"safearea":{"background":"#f9f9f9","bottom":{"offset":"auto"}},"uni-app":{"control":"uni-v3","vueVersion":"3","compilerVersion":"3.2.16","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"position":"bottom","color":"#888","selectedColor":"#007AFF","borderStyle":"rgba(255,255,255,0.4)","blurEffect":"none","fontSize":"10px","iconWidth":"24px","spacing":"3px","height":"50px","backgroundColor":"#f9f9f9","list":[{"pagePath":"pages/client/index","iconPath":"/static/imgs/tabbar/store-gray.png","selectedIconPath":"/static/imgs/tabbar/store-blue.png","text":"客户"},{"pagePath":"pages/trade/index","iconPath":"/static/imgs/tabbar/store-gray.png","selectedIconPath":"/static/imgs/tabbar/store-blue.png","text":"交易"},{"pagePath":"pages/mall/index","iconPath":"/static/imgs/tabbar/store-gray.png","selectedIconPath":"/static/imgs/tabbar/store-blue.png","text":"纸商城"},{"pagePath":"pages/mine/index","iconPath":"/static/imgs/tabbar/store-gray.png","selectedIconPath":"/static/imgs/tabbar/store-blue.png","text":"我的"}],"selectedIndex":0,"shown":true,"child":["lauchwebview"],"selected":0}},"launch_path":"__uniappview.html","id":"__UNI__temp__"} |
|
||||
|
{"@platforms":["android","iPhone","iPad"],"name":"uniapp-demo","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"google":{"permissions":["\u003cuses-feature android:name\u003d\"android.hardware.camera\"/\u003e","\u003cuses-feature android:name\u003d\"android.hardware.camera.autofocus\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.ACCESS_NETWORK_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.ACCESS_WIFI_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.CAMERA\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.CHANGE_NETWORK_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.CHANGE_WIFI_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.FLASHLIGHT\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.READ_LOGS\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.READ_PHONE_STATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.VIBRATE\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.WAKE_LOCK\"/\u003e","\u003cuses-permission android:name\u003d\"android.permission.WRITE_SETTINGS\"/\u003e"]},"apple":{},"plugins":{"maps":{},"payment":{"weixin":{"__platform__":["ios","android"],"appid":"","UniversalLinks":""}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":true},"arguments":"{\"name\":\"\",\"path\":\"\",\"query\":\"\",\"id\":0}","allowsInlineMediaPlayback":true,"safearea":{"background":"#f9f9f9","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.2.16","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#888","selectedColor":"#007AFF","borderStyle":"rgba(255,255,255,0.4)","backgroundColor":"#f9f9f9","list":[{"pagePath":"pages/client/index","iconPath":"static/imgs/tabbar/store-gray.png","selectedIconPath":"static/imgs/tabbar/store-blue.png","text":"客户"},{"pagePath":"pages/trade/index","iconPath":"static/imgs/tabbar/store-gray.png","selectedIconPath":"static/imgs/tabbar/store-blue.png","text":"交易"},{"pagePath":"pages/mall/index","iconPath":"static/imgs/tabbar/store-gray.png","selectedIconPath":"static/imgs/tabbar/store-blue.png","text":"纸商城"},{"pagePath":"pages/mine/index","iconPath":"static/imgs/tabbar/store-gray.png","selectedIconPath":"static/imgs/tabbar/store-blue.png","text":"我的"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"},"id":"__UNI__temp__"} |
||||
@ -1,23 +0,0 @@ |
|||||
|
|
||||
.content { |
|
||||
display: flex; |
|
||||
flex-direction: column; |
|
||||
align-items: center; |
|
||||
justify-content: center; |
|
||||
} |
|
||||
.logo { |
|
||||
height: 6.25rem; |
|
||||
width: 6.25rem; |
|
||||
margin-top: 6.25rem; |
|
||||
margin-left: auto; |
|
||||
margin-right: auto; |
|
||||
margin-bottom: 1.5625rem; |
|
||||
} |
|
||||
.text-area { |
|
||||
display: flex; |
|
||||
justify-content: center; |
|
||||
} |
|
||||
.title { |
|
||||
font-size: 1.125rem; |
|
||||
color: #8f8f94; |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
|
|
||||
.content { |
|
||||
display: flex; |
|
||||
flex-direction: column; |
|
||||
align-items: center; |
|
||||
justify-content: center; |
|
||||
} |
|
||||
.logo { |
|
||||
height: 6.25rem; |
|
||||
width: 6.25rem; |
|
||||
margin-top: 6.25rem; |
|
||||
margin-left: auto; |
|
||||
margin-right: auto; |
|
||||
margin-bottom: 1.5625rem; |
|
||||
} |
|
||||
.text-area { |
|
||||
display: flex; |
|
||||
justify-content: center; |
|
||||
} |
|
||||
.title { |
|
||||
font-size: 1.125rem; |
|
||||
color: #8f8f94; |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
|
|
||||
.content { |
|
||||
display: flex; |
|
||||
flex-direction: column; |
|
||||
align-items: center; |
|
||||
justify-content: center; |
|
||||
} |
|
||||
.logo { |
|
||||
height: 6.25rem; |
|
||||
width: 6.25rem; |
|
||||
margin-top: 6.25rem; |
|
||||
margin-left: auto; |
|
||||
margin-right: auto; |
|
||||
margin-bottom: 1.5625rem; |
|
||||
} |
|
||||
.text-area { |
|
||||
display: flex; |
|
||||
justify-content: center; |
|
||||
} |
|
||||
.title { |
|
||||
font-size: 1.125rem; |
|
||||
color: #8f8f94; |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
|
|
||||
.content { |
|
||||
display: flex; |
|
||||
flex-direction: column; |
|
||||
align-items: center; |
|
||||
justify-content: center; |
|
||||
} |
|
||||
.logo { |
|
||||
height: 6.25rem; |
|
||||
width: 6.25rem; |
|
||||
margin-top: 6.25rem; |
|
||||
margin-left: auto; |
|
||||
margin-right: auto; |
|
||||
margin-bottom: 1.5625rem; |
|
||||
} |
|
||||
.text-area { |
|
||||
display: flex; |
|
||||
justify-content: center; |
|
||||
} |
|
||||
.title { |
|
||||
font-size: 1.125rem; |
|
||||
color: #8f8f94; |
|
||||
} |
|
||||
9
unpackage/dist/dev/app-plus/uni-app-view.umd.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1
unpackage/dist/dev/app-plus/view.css
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
6
unpackage/dist/dev/app-plus/view.umd.min.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
Write
Preview
Loading…
Cancel
Save