Repository: hzlshen/vue-project
Branch: master
Commit: 74108e477990
Files: 72
Total size: 375.8 KB
Directory structure:
gitextract_7zminbyu/
├── .babelrc
├── .editorconfig
├── .gitignore
├── .postcssrc.js
├── README.md
├── build/
│ ├── build.js
│ ├── check-versions.js
│ ├── utils.js
│ ├── vue-loader.conf.js
│ ├── webpack.base.conf.js
│ ├── webpack.dev.conf.js
│ └── webpack.prod.conf.js
├── config/
│ ├── dev.env.js
│ ├── index.js
│ └── prod.env.js
├── index.html
├── package.json
├── src/
│ ├── App.vue
│ ├── axios/
│ │ ├── api.js
│ │ ├── fetch.js
│ │ └── url.js
│ ├── components/
│ │ ├── btnList/
│ │ │ └── btnList.vue
│ │ ├── filterBox/
│ │ │ ├── batchAudit.vue
│ │ │ ├── batchDelete.vue
│ │ │ ├── batchDifferences.vue
│ │ │ ├── batchStatement.vue
│ │ │ └── batchUnAudit.vue
│ │ ├── getWebSocket/
│ │ │ └── getWebSocket.vue
│ │ ├── head/
│ │ │ └── head.vue
│ │ ├── search/
│ │ │ └── Search.vue
│ │ ├── sidebar/
│ │ │ └── sidebar.vue
│ │ ├── tabs/
│ │ │ └── Tabs.vue
│ │ ├── tags/
│ │ │ └── tags.vue
│ │ ├── template/
│ │ │ ├── hzlDialog.vue
│ │ │ ├── hzlInput.vue
│ │ │ ├── hzlPage.vue
│ │ │ ├── hzlSelect.vue
│ │ │ ├── hzlTable.vue
│ │ │ └── index.js
│ │ └── templateOne.vue
│ ├── i18n/
│ │ ├── index.js
│ │ └── lan/
│ │ ├── en.js
│ │ └── zh.js
│ ├── main.js
│ ├── page/
│ │ ├── chart/
│ │ │ └── chart.vue
│ │ ├── home/
│ │ │ └── home.vue
│ │ ├── inquiry/
│ │ │ ├── BankFlow.vue
│ │ │ ├── OrderReceivable.vue
│ │ │ ├── SystemStatement.vue
│ │ │ ├── TransactionFlow.vue
│ │ │ └── children/
│ │ │ ├── orderAdd.vue
│ │ │ └── orderDetail.vue
│ │ ├── login/
│ │ │ └── login.vue
│ │ ├── reportForms/
│ │ │ ├── OrderSummary.vue
│ │ │ └── ReceivablesBalance.vue
│ │ ├── set/
│ │ │ ├── structure.vue
│ │ │ └── updatePWD.vue
│ │ ├── upload/
│ │ │ └── upload.vue
│ │ ├── verifyPlatform/
│ │ │ ├── VerifyBankStatement.vue
│ │ │ ├── VerifyReceivables.vue
│ │ │ └── verifyAutomate.vue
│ │ └── verifyRecord/
│ │ ├── VerifyBankStatementRecord.vue
│ │ └── VerifyReceivablesRecord.vue
│ ├── router/
│ │ └── index.js
│ ├── store/
│ │ ├── index.js
│ │ └── modules/
│ │ ├── actions.js
│ │ ├── mutation-type.js
│ │ └── mutations.js
│ └── style/
│ └── main.css
└── static/
├── .gitkeep
└── data/
├── localData.json
└── tableCols.json
================================================
FILE CONTENTS
================================================
================================================
FILE: .babelrc
================================================
{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": ["transform-vue-jsx", "transform-runtime"]
}
================================================
FILE: .editorconfig
================================================
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
================================================
FILE: .gitignore
================================================
.DS_Store
node_modules/
/dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
================================================
FILE: .postcssrc.js
================================================
// https://github.com/michael-ciniawsky/postcss-load-config
module.exports = {
"plugins": {
"postcss-import": {},
"postcss-url": {},
// to edit target browsers: use "browserslist" field in package.json
"autoprefixer": {}
}
}
================================================
FILE: README.md
================================================
#基于vue-cli构建的财务后台管理系统(`vue2`+`vuex`+`axios`+`vue-router`+`element-ui`+`echarts`+`websocket`+`vue-i18n`)
[](https://github.com/996icu/996.ICU/blob/master/LICENSE)[](https://996.icu)
-------
### 本项目可以学到:
1、学会使用vue-cli2.0构建项目.
2、基于(pomise)封装axios的get、post等http请求.
3、学会使用vue-router实现页面跳转带参.
4、学会使用vuex状态管理.
5、配套element-ui(主要对table的操作多)
6、对elementui进行二次封装组件,提高复用性
7、略微涉及echarts作图标分析
8、使用websocket监听ele进度条状态
9、使用vue-i18n实现国际化--中英文切换
10、使用Ngprogress做加载,类似github loading bar
#### 安装
#### 项目地址:
(`git clone`)
```shell
git clone https://github.com/hzlshen/vue-project.git
```
#### 通过`npm`安装本地服务第三方依赖模块(需要已安装[Node.js](https://nodejs.org/))
```
npm install
```
#### 启动服务(http://localhost:8080)
```
npm run dev
```
#### 发布代码
```
npm run build
```
#### 开发
#### 目录结构
.
├── README.md
├── build // 构建服务和webpack配置
├── config // 项目不同环境的配置
├── dist // 项目build目录
├── index.html // 项目入口文件
├── package.json // 项目配置文件
├── src // 生产目录
│ ├── assets // css js 和图片资源
│ ├── axios // ajax url 放置
│ ├── components // 各种组件
│ ├── images // 图片文件夹
│ ├── i18n // 国际化文件夹
│ ├── page // 各种页面
│ ├── router // 页面路由
│ ├── store // vuex状态管理器
│ ├── style // 样式文件
│ └── main.js // Webpack 预编译入口
###项目截图


================================================
FILE: build/build.js
================================================
'use strict'
require('./check-versions')()
process.env.NODE_ENV = 'production'
const ora = require('ora')
const rm = require('rimraf')
const path = require('path')
const chalk = require('chalk')
const webpack = require('webpack')
const config = require('../config')
const webpackConfig = require('./webpack.prod.conf')
const spinner = ora('building for production...')
spinner.start()
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
if (err) throw err
webpack(webpackConfig, (err, stats) => {
spinner.stop()
if (err) throw err
process.stdout.write(stats.toString({
colors: true,
modules: false,
children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
chunks: false,
chunkModules: false
}) + '\n\n')
if (stats.hasErrors()) {
console.log(chalk.red(' Build failed with errors.\n'))
process.exit(1)
}
console.log(chalk.cyan(' Build complete.\n'))
console.log(chalk.yellow(
' Tip: built files are meant to be served over an HTTP server.\n' +
' Opening index.html over file:// won\'t work.\n'
))
})
})
================================================
FILE: build/check-versions.js
================================================
'use strict'
const chalk = require('chalk')
const semver = require('semver')
const packageConfig = require('../package.json')
const shell = require('shelljs')
function exec (cmd) {
return require('child_process').execSync(cmd).toString().trim()
}
const versionRequirements = [
{
name: 'node',
currentVersion: semver.clean(process.version),
versionRequirement: packageConfig.engines.node
}
]
if (shell.which('npm')) {
versionRequirements.push({
name: 'npm',
currentVersion: exec('npm --version'),
versionRequirement: packageConfig.engines.npm
})
}
module.exports = function () {
const warnings = []
for (let i = 0; i < versionRequirements.length; i++) {
const mod = versionRequirements[i]
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
warnings.push(mod.name + ': ' +
chalk.red(mod.currentVersion) + ' should be ' +
chalk.green(mod.versionRequirement)
)
}
}
if (warnings.length) {
console.log('')
console.log(chalk.yellow('To use this template, you must update following to modules:'))
console.log()
for (let i = 0; i < warnings.length; i++) {
const warning = warnings[i]
console.log(' ' + warning)
}
console.log()
process.exit(1)
}
}
================================================
FILE: build/utils.js
================================================
'use strict'
const path = require('path')
const config = require('../config')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const packageConfig = require('../package.json')
exports.assetsPath = function (_path) {
const assetsSubDirectory = process.env.NODE_ENV === 'production'
? config.build.assetsSubDirectory
: config.dev.assetsSubDirectory
return path.posix.join(assetsSubDirectory, _path)
}
exports.cssLoaders = function (options) {
options = options || {}
const cssLoader = {
loader: 'css-loader',
options: {
sourceMap: options.sourceMap
}
}
const postcssLoader = {
loader: 'postcss-loader',
options: {
sourceMap: options.sourceMap
}
}
// generate loader string to be used with extract text plugin
function generateLoaders (loader, loaderOptions) {
const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]
if (loader) {
loaders.push({
loader: loader + '-loader',
options: Object.assign({}, loaderOptions, {
sourceMap: options.sourceMap
})
})
}
// Extract CSS when that option is specified
// (which is the case during production build)
if (options.extract) {
return ExtractTextPlugin.extract({
use: loaders,
fallback: 'vue-style-loader'
})
} else {
return ['vue-style-loader'].concat(loaders)
}
}
// https://vue-loader.vuejs.org/en/configurations/extract-css.html
return {
css: generateLoaders(),
postcss: generateLoaders(),
less: generateLoaders('less'),
sass: generateLoaders('sass', { indentedSyntax: true }),
scss: generateLoaders('sass'),
stylus: generateLoaders('stylus'),
styl: generateLoaders('stylus')
}
}
// Generate loaders for standalone style files (outside of .vue)
exports.styleLoaders = function (options) {
const output = []
const loaders = exports.cssLoaders(options)
for (const extension in loaders) {
const loader = loaders[extension]
output.push({
test: new RegExp('\\.' + extension + '$'),
use: loader
})
}
return output
}
exports.createNotifierCallback = () => {
const notifier = require('node-notifier')
return (severity, errors) => {
if (severity !== 'error') return
const error = errors[0]
const filename = error.file && error.file.split('!').pop()
notifier.notify({
title: packageConfig.name,
message: severity + ': ' + error.name,
subtitle: filename || '',
icon: path.join(__dirname, 'logo.png')
})
}
}
================================================
FILE: build/vue-loader.conf.js
================================================
'use strict'
const utils = require('./utils')
const config = require('../config')
const isProduction = process.env.NODE_ENV === 'production'
const sourceMapEnabled = isProduction
? config.build.productionSourceMap
: config.dev.cssSourceMap
module.exports = {
loaders: utils.cssLoaders({
sourceMap: sourceMapEnabled,
extract: isProduction
}),
cssSourceMap: sourceMapEnabled,
cacheBusting: config.dev.cacheBusting,
transformToRequire: {
video: ['src', 'poster'],
source: 'src',
img: 'src',
image: 'xlink:href'
}
}
================================================
FILE: build/webpack.base.conf.js
================================================
'use strict'
const path = require('path')
const utils = require('./utils')
const config = require('../config')
const vueLoaderConfig = require('./vue-loader.conf')
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
module.exports = {
context: path.resolve(__dirname, '../'),
entry: {
app: './src/main.js'
},
output: {
path: config.build.assetsRoot,
filename: '[name].js',
publicPath: process.env.NODE_ENV === 'production'
? config.build.assetsPublicPath
: config.dev.assetsPublicPath
},
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
}
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: vueLoaderConfig
},
{
test: /\.js$/,
loader: 'babel-loader',
include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('media/[name].[hash:7].[ext]')
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
}
}
]
},
node: {
// prevent webpack from injecting useless setImmediate polyfill because Vue
// source contains it (although only uses it if it's native).
setImmediate: false,
// prevent webpack from injecting mocks to Node native modules
// that does not make sense for the client
dgram: 'empty',
fs: 'empty',
net: 'empty',
tls: 'empty',
child_process: 'empty'
}
}
================================================
FILE: build/webpack.dev.conf.js
================================================
'use strict'
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const path = require('path')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
const portfinder = require('portfinder')
const HOST = process.env.HOST
const PORT = process.env.PORT && Number(process.env.PORT)
const devWebpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
},
// cheap-module-eval-source-map is faster for development
devtool: config.dev.devtool,
// these devServer options should be customized in /config/index.js
devServer: {
clientLogLevel: 'warning',
historyApiFallback: {
rewrites: [
{ from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
],
},
hot: true,
contentBase: false, // since we use CopyWebpackPlugin.
compress: true,
host: HOST || config.dev.host,
port: PORT || config.dev.port,
open: config.dev.autoOpenBrowser,
overlay: config.dev.errorOverlay
? { warnings: false, errors: true }
: false,
publicPath: config.dev.assetsPublicPath,
proxy: config.dev.proxyTable,
quiet: true, // necessary for FriendlyErrorsPlugin
watchOptions: {
poll: config.dev.poll,
}
},
plugins: [
new webpack.DefinePlugin({
'process.env': require('../config/dev.env')
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
new webpack.NoEmitOnErrorsPlugin(),
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.dev.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
module.exports = new Promise((resolve, reject) => {
portfinder.basePort = process.env.PORT || config.dev.port
portfinder.getPort((err, port) => {
if (err) {
reject(err)
} else {
// publish the new Port, necessary for e2e tests
process.env.PORT = port
// add port to devServer config
devWebpackConfig.devServer.port = port
// Add FriendlyErrorsPlugin
devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
compilationSuccessInfo: {
messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
},
onErrors: config.dev.notifyOnErrors
? utils.createNotifierCallback()
: undefined
}))
resolve(devWebpackConfig)
}
})
})
================================================
FILE: build/webpack.prod.conf.js
================================================
'use strict'
const path = require('path')
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const env = require('../config/prod.env')
const webpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({
sourceMap: config.build.productionSourceMap,
extract: true,
usePostCSS: true
})
},
devtool: config.build.productionSourceMap ? config.build.devtool : false,
output: {
path: config.build.assetsRoot,
filename: utils.assetsPath('js/[name].[chunkhash].js'),
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
},
plugins: [
// http://vuejs.github.io/vue-loader/en/workflow/production.html
new webpack.DefinePlugin({
'process.env': env
}),
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false
}
},
sourceMap: config.build.productionSourceMap,
parallel: true
}),
// extract css into its own file
new ExtractTextPlugin({
filename: utils.assetsPath('css/[name].[contenthash].css'),
// Setting the following option to `false` will not extract CSS from codesplit chunks.
// Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
// It's currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well when it's `false`,
// increasing file size: https://github.com/vuejs-templates/webpack/issues/1110
allChunks: true,
}),
// Compress extracted CSS. We are using this plugin so that possible
// duplicated CSS from different components can be deduped.
new OptimizeCSSPlugin({
cssProcessorOptions: config.build.productionSourceMap
? { safe: true, map: { inline: false } }
: { safe: true }
}),
// generate dist index.html with correct asset hash for caching.
// you can customize output by editing /index.html
// see https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),
// keep module.id stable when vendor modules does not change
new webpack.HashedModuleIdsPlugin(),
// enable scope hoisting
new webpack.optimize.ModuleConcatenationPlugin(),
// split vendor js into its own file
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks (module) {
// any required modules inside node_modules are extracted to vendor
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, '../node_modules')
) === 0
)
}
}),
// extract webpack runtime and module manifest to its own file in order to
// prevent vendor hash from being updated whenever app bundle is updated
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
minChunks: Infinity
}),
// This instance extracts shared chunks from code splitted chunks and bundles them
// in a separate chunk, similar to the vendor chunk
// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
new webpack.optimize.CommonsChunkPlugin({
name: 'app',
async: 'vendor-async',
children: true,
minChunks: 3
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.build.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
if (config.build.productionGzip) {
const CompressionWebpackPlugin = require('compression-webpack-plugin')
webpackConfig.plugins.push(
new CompressionWebpackPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: new RegExp(
'\\.(' +
config.build.productionGzipExtensions.join('|') +
')$'
),
threshold: 10240,
minRatio: 0.8
})
)
}
if (config.build.bundleAnalyzerReport) {
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
webpackConfig.plugins.push(new BundleAnalyzerPlugin())
}
module.exports = webpackConfig
================================================
FILE: config/dev.env.js
================================================
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"'
})
================================================
FILE: config/index.js
================================================
'use strict'
// Template version: 1.3.1
// see http://vuejs-templates.github.io/webpack for documentation.
const path = require('path')
module.exports = {
dev: {
// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {},
// Various Dev Server settings
host: 'localhost', // can be overwritten by process.env.HOST
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser: false,
errorOverlay: true,
notifyOnErrors: true,
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
/**
* Source Maps
*/
// https://webpack.js.org/configuration/devtool/#development
devtool: 'cheap-module-eval-source-map',
// If you have problems debugging vue-files in devtools,
// set this to false - it *may* help
// https://vue-loader.vuejs.org/en/options.html#cachebusting
cacheBusting: true,
cssSourceMap: true
},
build: {
// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: '/',
/**
* Source Maps
*/
productionSourceMap: true,
// https://webpack.js.org/configuration/devtool/#production
devtool: '#source-map',
// Gzip off by default as many popular static hosts such as
// Surge or Netlify already gzip all static assets for you.
// Before setting to `true`, make sure to:
// npm install --save-dev compression-webpack-plugin
productionGzip: false,
productionGzipExtensions: ['js', 'css'],
// Run the build command with an extra argument to
// View the bundle analyzer report after build finishes:
// `npm run build --report`
// Set to `true` or `false` to always turn it on or off
bundleAnalyzerReport: process.env.npm_config_report
}
}
================================================
FILE: config/prod.env.js
================================================
'use strict'
module.exports = {
NODE_ENV: '"production"'
}
================================================
FILE: index.html
================================================
Vue+Element后台管理系统
================================================
FILE: package.json
================================================
{
"name": "my-project",
"version": "1.0.0",
"description": "A Vue.js project",
"author": "liuzhu",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"build": "node build/build.js"
},
"dependencies": {
"axios": "^0.18.0",
"echarts": "^4.1.0",
"element-ui": "^2.4.11",
"moment": "^2.22.2",
"normalize.css": "^8.0.1",
"nprogress": "^0.2.0",
"url-parse": "^1.4.4",
"vue": "^2.5.21",
"vue-i18n": "^8.7.0",
"vue-router": "^3.0.2",
"vuex": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.22.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"node-notifier": "^5.3.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"portfinder": "^1.0.20",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.1.6",
"postcss-url": "^7.2.1",
"rimraf": "^2.6.3",
"semver": "^5.6.0",
"shelljs": "^0.7.6",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^0.5.8",
"vue-loader": "^13.7.3",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.21",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.2.1"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}
================================================
FILE: src/App.vue
================================================
================================================
FILE: src/axios/api.js
================================================
/**
* Created by 不动的推动者 on 2018/4/30.
*/
/*****
* 获取数据get + 对应路由名称
* 向后台传数据 store + 对应路由名称
* 驼峰命名
* *****/
import { fetch } from "./fetch"; //引用fetch.js
import api from './url'; //引用url.js
//查看用户
export const lookOption = (username,password,captcha) => fetch({//lookOption是你要调用接口的名字,issuer,userId是传进来的参数
//api.Hallowmas 引用url.js里面的数据
url: api.Hallowmas,
method: 'get',//请求方法
params:{
// username,password,captcha//参数
}
});
//获取公司
export const getCompany = (date,audit) => fetch({
url:'',
method:'',
params:{
date,
audit
}
});
//订单应收获取数据
export const getOrderReceivable = ()=>fetch({
url: api.commonLick,
method: 'get',
params: {
}
});
//cols title
export const getCols = ()=>fetch({
url: api.cols,
method: 'get',
params: {
}
});
//审核 批量审核audit
export const audit = (data)=>fetch({
url: '',
methods: 'get',
params: {
data: data
}
})
//获取验证码
export const getcaptchas = () => fetch('', {},'POST'); //简写
//有新接口的时候像上面那样再来一次
// //修改昵称接口
// export function userID(name){
// return fetch({
// url:api.myself_name,
// method:"put",
// data:{
// nickname:name
// }
// })
// }
//
//
// //取消转发赞踩接口
// export function cancelForward(articleId,type){
// return fetch({
// url:api.detail_article+articleId+"/forwarded_impress",
// method:"delete",
// params:{
// type:type
// }
// })
// }
//导入
export const leadingIn = () => fetch('',{},'POST')
================================================
FILE: src/axios/fetch.js
================================================
/**
* Created by 不动的推动者 on 2018/4/30.
*/
import axios from 'axios';//引入axios
export function fetch(options){
return new Promise((resolve, reject) => {
const instance = axios.create({
//instance创建一个axios实例,可以自定义配置。
//所有的请求都会带上这些配置,比如全局都要用的身份信息等。
headers: {
'Content-Type': 'application/json',
// 'token_in_header': global_.token,//token从全局变量那里传过来
},
timeout:30 * 1000 // 30秒超时
});
instance(options)
.then(response => { //then 请求成功之后进行什么操作
resolve(response);//把请求到的数据发到引用请求的地方
})
.catch(error => {
console.log('请求异常信息:'+error);
reject(error);
});
});
}
================================================
FILE: src/axios/url.js
================================================
/**
* Created by 不动的推动者 on 2018/4/30.
*/
export default {
//接口代理配置
Hallowmas:'http://jsonplaceholder.typicode.com/users',
commonLick:'../static/data/localData.json',
cols:'../static/data/tableCols.json',
ws:'ws://baidu.com'
}
//区分环境或者区分服务器
// let service = 'dev';
// // // let service = 'prod';
// let api = '';
// if (service === 'dev') {
// /**dev开发**/
// api = 'data/localData.json';
// } else if (service === 'prod') {
// /**prod部署**/
// api = '/proxy/client';
// }
//
// export default {
// /**个人中心start**/
// //1 获取c端个人信息 POST /wx/getClientInfo
// getClientInfo: `${api}/wx/getClientInfo`,
// //2 获取手机注册验证码 POST /wx/getClientRegisterCode
// getClientRegisterCode: `${api}/wx/getClientRegisterCode`,
// //3 绑定手机号 POST /wx/clientBindMobile
// clientBindMobile: `${api}/wx/clientBindMobile`,
// /**个人中心end**/
//
// }
================================================
FILE: src/components/btnList/btnList.vue
================================================
导入
导出
审核
批量审核
反审核
批量反审核
差异对帐
批量差异对帐
新增
接口获取
删除
批量删除
================================================
FILE: src/components/filterBox/batchAudit.vue
================================================
================================================
FILE: src/components/filterBox/batchDelete.vue
================================================
================================================
FILE: src/components/filterBox/batchDifferences.vue
================================================
================================================
FILE: src/components/filterBox/batchStatement.vue
================================================
================================================
FILE: src/components/filterBox/batchUnAudit.vue
================================================
================================================
FILE: src/components/getWebSocket/getWebSocket.vue
================================================
================================================
FILE: src/components/head/head.vue
================================================
================================================
FILE: src/components/search/Search.vue
================================================
================================================
FILE: src/components/sidebar/sidebar.vue
================================================
================================================
FILE: src/components/tabs/Tabs.vue
================================================
================================================
FILE: src/components/tags/tags.vue
================================================
================================================
FILE: src/components/template/hzlDialog.vue
================================================
这是一段信息
================================================
FILE: src/components/template/hzlInput.vue
================================================
================================================
FILE: src/components/template/hzlPage.vue
================================================
================================================
FILE: src/components/template/hzlSelect.vue
================================================
================================================
FILE: src/components/template/hzlTable.vue
================================================
================================================
FILE: src/components/template/index.js
================================================
import Vue from 'vue'
import hzlInput from './hzlInput.vue'
import hzlSelect from './hzlSelect.vue'
import hzlPage from './hzlPage.vue'
import hzlTable from './hzlTable.vue'
import hzlDialog from './hzlDialog.vue'
Vue.component('hzl-input',hzlInput);
Vue.component('hzl-select',hzlSelect);
Vue.component('hzl-page',hzlPage);
Vue.component('hzl-table',hzlTable);
Vue.component('hzl-dialog',hzlDialog);
================================================
FILE: src/components/templateOne.vue
================================================
================================================
FILE: src/i18n/index.js
================================================
import Vue from "vue";
import VueI18n from "vue-i18n";
Vue.use(VueI18n); // 全局挂载
export const i18n = new VueI18n({
locale: localStorage.getItem("locale") || "en", // 从localStorage中获取 默认英文
messages: {
zh: require("./lan/zh"), // 中文语言包
en: require("./lan/en") // 英文语言包
}
});
export default i18n;
================================================
FILE: src/i18n/lan/en.js
================================================
export const h = {
system: "Background management system",
full: "full-screen display",
account: "myAccount",
invoice: "invoice",
reconciliation: "Statement",
record: "recording",
report: "report",
setting: "Settings",
login: "login",
tips: "Username and password are filled in casually",
administrator: "administrator",
placeUser: "please enter user name",
palcePass: "Please enter your password",
palceCode: "please enter verification code",
accounts: "accounts",
password: "password",
code: "Verification code"
}
================================================
FILE: src/i18n/lan/zh.js
================================================
export const h = {
system: "Vue后台管理系统",
full: "全屏显示",
account: "我的账户",
invoice: "原始单据",
reconciliation: "财务对账",
record: "对账记录",
report: "月结报表",
setting: "系统设置",
login: "登录",
tips: "用户名和密码随便填",
administrator: "管理员",
placeUser: "请输入用户名",
palcePass: "请输入密码",
palceCode: "请输入验证码",
accounts: "账号",
password: "密码",
code: "验证码"
}
================================================
FILE: src/main.js
================================================
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
/**
* Created by 不动的推动者 on 2018/5/2.
*/
//
import Vue from 'vue'
import App from './App'
import router from './router'
import store from './store/index'
import 'normalize.css'
import Axios from 'axios'
import Elementui from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import moment from 'moment'
import echarts from 'echarts'
import './components/template/index'
import { i18n } from './i18n/index' //国际化
Vue.use(Elementui);
Vue.use(moment);
Vue.config.productionTip = false;
Vue.prototype.$http = Axios;
Vue.prototype.$echarts = echarts
import NProgress from 'nprogress' // Progress 进度条
import 'nprogress/nprogress.css'// Progress 进度条样式
router.beforeEach((to, from, next) => {
NProgress.start()
const user = localStorage.getItem('lz_userName');
const pass = localStorage.getItem('lz_passNumber');
if (!user && !pass && to.path !== '/login') { // 检查路径用户是否即将进入我们的 chart 路径
next('/login');
}else{
localStorage.setItem('lz_userName', user);
localStorage.setItem('lz_passNumber', pass);
next()
}
})
router.afterEach(() => {
NProgress.done() // 结束Progress
})
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
store,//使用store
i18n, //使用国际化
components: { App },
template: ''
})
================================================
FILE: src/page/chart/chart.vue
================================================
================================================
FILE: src/page/home/home.vue
================================================
================================================
FILE: src/page/inquiry/BankFlow.vue
================================================
================================================
FILE: src/page/inquiry/OrderReceivable.vue
================================================
================================================
FILE: src/page/inquiry/SystemStatement.vue
================================================
================================================
FILE: src/page/inquiry/TransactionFlow.vue
================================================
================================================
FILE: src/page/inquiry/children/orderAdd.vue
================================================
订单新增
单据类型:
单据编号:
平台:
销售公司:
业务日期:
对账金额:
平台订单号:
销售部门:
对账状态:
已对账金额:
未对账金额:
销售员:
退款状态:
已退款金额:
未退款金额:
单据状态:
是否差异处理:
差异处理金额:
差异处理原因:
备注:
订单总金额:
订单初始支付金:
订单货到应收:
运费:
订单优惠抵扣:
优惠券名称:
订单状态:
支付状态:
支付方式:
取消理由:
是否有拆单:
所属订单类型:
团购验证码:
接单人:
操作人:
订货人:
订货人电话:
下单时间:
门店:
收货人:
收货人电话:
收货人地址:
配送方式:
配送员名称:
配送员手机:
配送时间:
所属城市:
配送站:
发票内容:
创建人:
修改人:
审核人:
创建日期:
修改日期:
审核日期:
新增
删除
删除
================================================
FILE: src/page/inquiry/children/orderDetail.vue
================================================
订单新增
单据类型:
单据编号:
平台:
销售公司:
业务日期:
对账金额:
平台订单号:
销售部门:
对账状态:
已对账金额:
未对账金额:
销售员:
退款状态:
已退款金额:
未退款金额:
单据状态:
是否差异处理:
差异处理金额:
差异处理原因:
备注:
订单总金额:
订单初始支付金:
订单货到应收:
运费:
订单优惠抵扣:
优惠券名称:
订单状态:
支付状态:
支付方式:
取消理由:
是否有拆单:
所属订单类型:
团购验证码:
接单人:
操作人:
订货人:
订货人电话:
下单时间:
门店:
收货人:
收货人电话:
收货人地址:
配送方式:
配送员名称:
配送员手机:
配送时间:
所属城市:
配送站:
发票内容:
创建人:
修改人:
审核人:
创建日期:
修改日期:
审核日期:
新增
删除
删除
================================================
FILE: src/page/login/login.vue
================================================
================================================
FILE: src/page/reportForms/OrderSummary.vue
================================================
================================================
FILE: src/page/reportForms/ReceivablesBalance.vue
================================================
收款对账余额表
条件查询
导出
订单应收未对账
订单明细
交易流水未对账
流水明细
================================================
FILE: src/page/set/structure.vue
================================================
================================================
FILE: src/page/set/updatePWD.vue
================================================
================================================
FILE: src/page/upload/upload.vue
================================================
选取文件
上传到服务器
只能上传jpg/png文件,且不超过500kb
================================================
FILE: src/page/verifyPlatform/VerifyBankStatement.vue
================================================
银行对账
================================================
FILE: src/page/verifyPlatform/VerifyReceivables.vue
================================================
收款对账
================================================
FILE: src/page/verifyPlatform/verifyAutomate.vue
================================================
自动对账
收款对账
退款对账
参数选择
规则选择
上移
下移
执行对账
退出
================================================
FILE: src/page/verifyRecord/VerifyBankStatementRecord.vue
================================================
对账记录银行对账
================================================
FILE: src/page/verifyRecord/VerifyReceivablesRecord.vue
================================================
================================================
FILE: src/router/index.js
================================================
/**
* Created by 不动的推动者 on 2018/5/2.
*/
//
import Vue from 'vue'
import Router from 'vue-router'
const Login = resolve => require(['../page/login/login'], resolve)
const Home = resolve => require(['../page/home/home'], resolve)
const Chart = resolve => require(['../page/chart/chart'], resolve)
const OrderReceivable = resolve => require(['../page/inquiry/OrderReceivable'], resolve)
const TransactionFlow = resolve => require(['../page/inquiry/TransactionFlow'], resolve)
const SystemStatement = resolve => require(['../page/inquiry/SystemStatement'], resolve)
const orderDetail = resolve => require(['../page/inquiry/children/orderDetail'],resolve)
const orderAdd = resolve => require(['../page/inquiry/children/orderAdd'],resolve)
const BankFlow = resolve => require(['../page/inquiry/BankFlow'], resolve)
const VerifyReceivables = resolve => require(['../page/verifyPlatform/VerifyReceivables'], resolve)
const VerifyBankStatement = resolve => require(['../page/verifyPlatform/VerifyBankStatement'], resolve)
const VerifyReceivablesRecord = resolve => require(['../page/verifyRecord/VerifyReceivablesRecord'], resolve)
const VerifyBankStatementRecord = resolve => require(['../page/verifyRecord/VerifyBankStatementRecord'], resolve)
const OrderSummary = resolve => require(['../page/reportForms/OrderSummary'], resolve)
const ReceivablesBalance = resolve => require(['../page/reportForms/ReceivablesBalance'], resolve)
const Upload = resolve => require(['../page/upload/upload'], resolve)
const Structure = resolve => require(['../page/set/structure'], resolve)
const UpdatePWD = resolve => require(['../page/set/updatePWD'], resolve)
const VerifyAutomate = resolve => require(['../page/verifyPlatform/verifyAutomate'], resolve)
Vue.use(Router);
export default new Router({
routes: [
{
path: '',
redirect: '/login'
},
{
path:'/home',
component: Home,
meta: { title: '自述文件' },
children: [
{ //我的账户
path: '/chart',
component: Chart,
meta: { title: '我的账户' }
},
/**
* inquiry 单据查询
* **/
{//订单应收
path: '/orderReceivable',
component: OrderReceivable,
meta: { title: '应收单据' },
},
{//交易流水
path: '/transactionFlow',
component: TransactionFlow,
meta: { title: '交易流水' }
},
{//系统对账单
path: '/systemStatement',
component: SystemStatement,
meta: { title: '系统对账单' }
},
{//银行流水
path: '/bankFlow',
component: BankFlow,
meta: { title: '银行流水' }
},
{
path: '/orderDetail/:id',
component: orderDetail,
name: 'orderDetail',
meta: { title: '订单详情' }
},
{
path: '/orderAdd',
component: orderAdd,
meta: { title: '订单新增' }
},
/**
* verifyPlatform 对账平台
* **/
{
path: '/verifyAutomate',
component: VerifyAutomate,
meta: { title: '自动对账' }
},
{//对账平台
path: '/verifyReceivables',
component: VerifyReceivables,
meta: { title: '收款对账' }
},
{//银行对账
path: '/verifyBankStatement',
component: VerifyBankStatement,
meta: { title: '银行对账' }
},
/**
* verifyRecord 对账记录
* **/
{//银行对账单记录
path: '/verifyReceivablesRecord',
component: VerifyReceivablesRecord,
meta: { title: '收款对账记录' }
},
{//银行对账单记录
path: '/verifyBankStatementRecord',
component: VerifyBankStatementRecord,
meta: { title: '银行对账记录' }
},
/**
* reportForms报表
* **/
{//订单执行汇总表
path: '/orderSummary',
component: OrderSummary,
meta: { title: '订单执行汇总表' }
},
{//收款对账余额表
path: '/receivablesBalance',
component: ReceivablesBalance,
meta: { title: '收款对账余额表' }
},
{
path: '/Upload',
component: Upload,
meta: {title: '文件上传'}
},
/**
* 设置
* */
{
path: '/Structure',
component: Structure,
meta: { title: '组织架构'}
},
//修改密码
{
path: '/UpdatePWD',
component: UpdatePWD,
meta: { title: '修改密码'}
}
]
},
{
path: '/login',
component: Login,
meta: { title: '登陆' }
}
]
})
================================================
FILE: src/store/index.js
================================================
/**
* Created by 不动的推动者 on 2018/4/21.
*/
//分离vuex方便维护
// # 我们组装模块并导出 store 的地方
import Vue from 'vue'
import Vuex from 'vuex'
import actions from './modules/actions'
import mutations from './modules/mutations'
Vue.use(Vuex);
const state = {//存储状态
show: false,
author: 'Wise Wrong',
messages: 2,
userInfo:null, //用户信息
collapse:false,//折叠面板
companyValue:null, //选中的厂商
tags:null,//保存的
company:null, //公司
orderListUUid: null,//订单应收单条数据
verifyStatus: 'Whole', //Tabs 切换的状态 默认是全部
dialogFromAudit: false,//批量审核框
dialogFromUnAudit: false,//批量反审核
dialogFromDifferences: false,//批量差异对帐
dialogFromDelete: false,//批量删除
dialogFromStatement: false,//报表通用弹出框
dialoggetWebSocket:false, //websocket
}
export default new Vuex.Store({
state,
actions,
mutations
})
================================================
FILE: src/store/modules/actions.js
================================================
/**
* Created by 不动的推动者 on 2018/5/2.
*/
import {
COLLAPSE,
COMPANY,
VERIFY_STATUS
}from './mutation-type'
export default {
getCollapse({commit}){
commit('COLLAPSE');
},
getCompanyValue({commit},companyValue) { // 提交到mutations中处理
commit('COMPANY',companyValue)
},
getVerifyStatus({commit},verifyStatus){ //获取
commit('VERIFY_STATUS',verifyStatus)
},
storeOrderListUUid({commit},orderListInfo){ //存储
commit('ORDER_LIST_INFO',orderListInfo)
},
dialogFromAudit({commit}){ //批量审核
commit('DIALOG_FROM_AUDIT')
},
dialogFromUnAudit({commit}){ //批量反深恶黑
commit('DIALOG_FROM_UN_AUDIT')
},
dialogFromDifferences({commit}){ //批量差异对帐
commit('DIALOG_FROM_DIFFERENCES')
},
dialogFromDelete({commit}){ //批量删除
commit('DIALOG_FROM_DELETE')
},
dialogFromStatement({commit}){//报表通用弹出层
commit('DIALOG_FROM_STATEMENT')
},
dialoggetWebSocket({commit}){//websocket
commit('DIALOGGET_WEB_SOCKET')
},
}
================================================
FILE: src/store/modules/mutation-type.js
================================================
/**
* Created by 不动的推动者 on 2018/5/2.
*/
//
export const COLLAPSE = 'COLLAPSE' //左侧边栏隐藏状态
export const COMPANY = 'COMPANY' //公司
export const VERIFY_STATUS = 'VERIFY_STATUS' //
export const ORDER_LIST_INFO = 'ORDER_LIST_INFO' //
export const DIALOG_FROM_AUDIT = 'DIALOG_FROM_AUDIT' //批量审核框
export const DIALOG_FROM_UN_AUDIT = 'DIALOG_FROM_UN_AUDIT' //批量反审核框
export const DIALOG_FROM_DIFFERENCES = 'DIALOG_FROM_DIFFERENCES' //批量差异对帐
export const DIALOG_FROM_DELETE = 'DIALOG_FROM_DELETE' //批量删除
export const DIALOG_FROM_STATEMENT = 'DIALOG_FROM_STATEMENT' //报表通用弹出层
export const DIALOGGET_WEB_SOCKET = 'DIALOGGET_WEB_SOCKET' //websocket
================================================
FILE: src/store/modules/mutations.js
================================================
/**
* Created by 不动的推动者 on 2018/5/2.
*/
import {
COLLAPSE,
COMPANY,
VERIFY_STATUS,
DIALOG_FROM_AUDIT,
DIALOG_FROM_UN_AUDIT,
DIALOG_FROM_DIFFERENCES,
DIALOG_FROM_DELETE,
DIALOG_FROM_STATEMENT
}from './mutation-type'
export default {
//侧边栏
['COLLAPSE'](state) {
state.collapse = !state.collapse
},
//将选择的公司
['COMPANY'](state,obj) {
state.companyValue = obj;
},
['VERIFY_STATUS'](state,obj){
state.verifyStatus = obj;
},
['ORDER_LIST_INFO'](state,obj){
state.orderListUUid = obj;
},
['DIALOG_FROM_AUDIT'](state){
state.dialogFromAudit = !state.dialogFromAudit;
},
['DIALOG_FROM_UN_AUDIT'](state){
state.dialogFromUnAudit = !state.dialogFromUnAudit
},
['DIALOG_FROM_DIFFERENCES'](state){
state.dialogFromDifferences = !state.dialogFromDifferences
},
['DIALOG_FROM_DELETE'](state){
state.dialogFromDelete = !state.dialogFromDelete
},
['DIALOG_FROM_STATEMENT'](state){
state.dialogFromStatement = !state.dialogFromStatement;
console.log(state.dialogFromStatement);
},
['DIALOGGET_WEB_SOCKET'](state) { //websocket
state.dialoggetWebSocket = !state.dialoggetWebSocket;
},
}
================================================
FILE: src/style/main.css
================================================
body{
font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
}
#app{
height: 100vh;
width: 100vw;
}
ul{
margin: 0;
padding: 0;
}
/*element-ui局部样式修改*/
.el-tabs--border-card>.el-tabs__content{
padding-top: 0;
}
/*Element-ui弹出层样式调整*/
.el-dialog__header{
padding: 15px 20px 10px;
}
.el-dialog__body{
padding: 0 20px;
border-top: 1px solid #eaeefb;
border-bottom: 1px solid #eaeefb;
}
.el-dialog__body .el-button--small{
padding: 5px 8px;
}
.el-dialog__body{
min-height: 160px;
}
.left-search-body{
border-right: 1px solid #eaeefb;
min-height: 160px;
padding-top: 10px;
padding-right: 10px;
}
.right-search-body{
-webkit-flex:1;
flex: 1;
padding:10px;
}
.btn-list .el-dropdown .el-button{
/*background: #d0e9ff;*/
/*border:none;*/
/*color: #333;*/
/*font-size: 13px;*/
/*padding: 5px 6px;*/
}
.el-dialog .el-input{
width: 220px;
}
.el-dialog .el-date-editor{
width: 220px;
}
.el-dialog__body{
padding-top:20px;
}
.el-dialog .el-form-item{
margin-bottom: 15px;
}
.el-dialog .el-form{
display: -webkit-flex;
display: flex;
flex-wrap: wrap;
}
.head_title{
margin: 0;
padding:12px 0;
}
.container .el-row{
/*background: #d0e9ff;*/
height:40px;
padding:5px 0;
}
.container table .el-button{
width: 50%;
padding: 0;
}
.container .el-dropdown{
padding:0 8px;
}
.container .el-tabs{
padding-left: 0;
padding-right: 0;
}
.verify-automate .el-form-item__label{
flex: 1;
font-size: 13px;
}
/*****HOME*****/
#Home{
height: 100%;
overflow: hidden;
width: 100%;
}
.wrapper{
height: 100%;
width: 100%;
overflow: hidden;
}
/*main内容*/
.main{
background: #f6f6f6;
position: absolute;
top: 60px;
left: 160px;
right: 0;
bottom: 0;
overflow-y: auto;
-webkit-transition: left .3s ease-in-out;
-o-transition: left .3s ease-in-out;
transition: left .3s ease-in-out;
}
.container{
padding: 10px 20px 0 20px;
}
.pagination{
margin-top: 10px;
}
.verify-automate .el-dialog__body{
min-height: 35px;
}
.verify-automate .el-dialog__footer{
padding: 10px 20px 10px;
}
/*标题*/
.container h2{
margin:10px 0;
}
/*设置边框角度和阴影*/
.container>div{
background: #fff;
border-radius: 10px;
box-shadow: 0 1px 3px rgba(26,26,26,.1);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding:0 20px 10px;
}
/*路由跳转动画*/
.move-enter-active,
.move-leave-active {
transition: opacity .5s;
}
.move-enter,
.move-leave {
opacity: 0;
}
/*****HEADER 头部*****/
header{
display: flex;
position: relative;
width: 100%;
height: 60px;
line-height:60px;
font-size: 22px;
color: #fff;
background-color: #24292e;
-webkit-transition: all .3s ;
-moz-transition: all .3s ;
transition:all .3s ;
}
.collapse-btn{
float: left;
height: 100%;
padding:0 20px;
cursor: pointer;
}
.top-nav{
display: flex;
-webkit-box-flex:1;
flex:1;
justify-content: flex-end;
}
.top-nav>div{
cursor: pointer;
margin-right: 40px;
}
/*厂商*/
.company{
margin-left: 15px;
}
/*消息*/
.news{
position: relative;
}
.msg{
background-color: #d76662;
border-radius: 50%;
position: absolute;
top: 50%;
right: 0;
height: 8px;
width: 8px;
margin-top: -10px;
margin-right: -5px;
}
/*退出or设置*/
.head .el-dropdown{
color: #fff;
font-size: 20px;
}
/*****SIDEBAR左侧边栏*****/
#sidebar-left{
display: inline-block;
height: 100%;
}
#sidebar-left>ul{
height: 100%;
}
.el-menu-vertical-demo:not(.el-menu--collapse) {
width: 160px;
min-height: 400px;
}
.content-collapse{
left:64px;
}
/*****HEAD_SEARCH 搜索*****/
.head_search{
align-items: center;
display: -webkit-flex;
display: flex;
}
.head_search .head_title{
-webkit-flex: 1;
flex: 1;
margin: 0;
padding: 0;
}
.search{
cursor: pointer;
}
.search-contain{
display: -webkit-flex;
display: flex;
}
.search .el-button{
padding-bottom: 5px;
}
/*****TAGS 顶部标签 *****/
.tags{
display: -webkit-flex;
display: flex;
align-items: center;
background: #fff;
height: 30px;
}
.tags .tag-box{
-webkit-flex: 1;
flex: 1;
}
.tags ul{
align-content: center;
display: -webkit-flex;
display: flex;
padding-top: 2px;
}
.tags li{
align-items: center;
border-radius: 4px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
border: 1px solid rgba(64,158,255,.2);
/* background-color: #7CBCE8; */
cursor: pointer;
display: -webkit-flex;
display: flex;
font-size: 12px;
height: 26px;
list-style: none;
line-height: 26px;
margin:0 6px;
padding: 0 6px;
white-space: nowrap;
-webkit-transition: all .5s ease-in;
-moz-transition: all .5s ease-in;
transition: all .5s ease-in;
}
.tags li a{
display: block;
color: #24292e;
text-decoration: none;
}
/*关闭标签按钮*/
.tag-close-box .el-dropdown span{
color: #24292e;
cursor: pointer;
font-size: 14px;
margin-right: 10px;
}
/*选中状态*/
.tags li.active{
background: #24292e;
}
.tags li.active a{
color: #fff;
}
/*删除*/
.tag_delete{
border-radius: 50%;
color: #fff;
display: inline-block;
height: 16px;
line-height: 16px;
width: 16px;
margin-left: 3px;
text-align: center;
-webkit-transition: all .2s ease-in;
-moz-transition: all .2s ease-in;
transition: all .2s ease-in;
}
.tag_delete:hover{
background: #24292e;
color: #fff;
}
.tags .active .tag_delete:hover {
background: #fff;
color: #24292e;
}
/*****CHART系统首页*****/
/*****INQUIRY单据查询*****/
/*orderReceivable订单应收*/
/*修改订单应收页面element-ui td样式*/
.bill{
height: 100%;
/*padding:30px;*/
background: #fff;
}
.el-row{
margin-bottom: 15px;
}
table .cell{
text-align: center;
}
table .el-button+.el-button{
padding:5px 0 ;
margin-left: 0;
}
.el-table td{
padding:4px 0;
}
/*订单新增or订单修改*/
.order-detail .el-tabs,.order-add .el-tabs{
min-height:334px;
}
.order-detail .el-tabs .btn-wrap,.order-add .el-tabs .btn-wrap{
margin:10px 0;
}
.order-detail .el-row,.order-add .el-row{
margin-bottom: 20px;
}
.order-detail .grid-content,.order-add .grid-content {
display: -ms-flexbox;
display:-webkit-flex;
display: flex;
align-items: center;
border-radius: 4px;
min-height: 36px;
}
.order-detail .grid-content>span,.order-add .grid-content>span{
display: block;
font-size:13px;
margin-right: 10px;
min-width:90px;
text-align: right;
}
.order-detail .grid-content .el-input,.order-add .grid-content .el-input{
-webkit-flex:1;
-ms-flex:1;
flex: 1;
max-width:194px;
}
/*右侧栏*/
.el-submenu__title i{
color: #fff!important;
}
.el-menu-item i{
color: #fff!important;
}
================================================
FILE: static/.gitkeep
================================================
================================================
FILE: static/data/localData.json
================================================
{
"total": 24,
"rows": [
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43c5153-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233729036300004",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 69,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43c5153-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 69,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 69,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "京东商城",
"billNo": "2018030519235636",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43c5153-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233729036300004",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 69,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43c5153-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 69,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 69,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "京东商城",
"billNo": "2018030519235636",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"uuid": "9adcd2c3-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "805528222000021",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 116,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "9adcd2c3-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 116,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 116,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "外卖渠道,京东到家",
"billNo": "2018030519235635",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"uuid": "9adcd2c3-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "805528222000021",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 116,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "9adcd2c3-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 116,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 116,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "外卖渠道,京东到家",
"billNo": "2018030519235635",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "9a1ed546-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "71812499281",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 79,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "9a1ed546-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 79,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 79,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "电商平台,京东商城",
"billNo": "2018030519235634",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "9a1ed546-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "71812499281",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 79,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "9a1ed546-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 79,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 79,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "电商平台,京东商城",
"billNo": "2018030519235634",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "9adcc9b0-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "805528163000021",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 74,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "9adcc9b0-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 74,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 74,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "外卖渠道,京东到家",
"billNo": "2018030519235633",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "9adcc9b0-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "805528163000021",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 74,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "9adcc9b0-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 74,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 74,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "外卖渠道,京东到家",
"billNo": "2018030519235633",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43c476b-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233647071100004",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 10,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43c476b-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 10,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 10,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "微信订单",
"billNo": "2018030519235632",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43c476b-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233647071100004",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 10,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43c476b-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 10,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 10,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "微信订单",
"billNo": "2018030519235632",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43c4263-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233633047600003",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 79,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43c4263-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 79,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 79,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "天猫普通订单",
"billNo": "2018030519235631",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43c4263-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233633047600003",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 79,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43c4263-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 79,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 79,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "天猫普通订单",
"billNo": "2018030519235631",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43c3d53-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233613099200001",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 69,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43c3d53-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 69,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 69,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "饿了么,普通订单",
"billNo": "2018030519235630",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43c3d53-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233613099200001",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 69,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43c3d53-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 69,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 69,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "饿了么,普通订单",
"billNo": "2018030519235630",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43b5077-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233554094700001",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 128,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43b5077-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 128,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 128,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "幸福,有赞普通订单",
"billNo": "2018030519235629",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43b5077-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233554094700001",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 128,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43b5077-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 128,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 128,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "幸福,有赞普通订单",
"billNo": "2018030519235629",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "d5f0fbe4-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "XF2018030523361414",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 180,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "d5f0fbe4-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 180,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 180,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "幸福官网,PC官网",
"billNo": "2018030519235628",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "d5f0fbe4-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "XF2018030523361414",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 180,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "d5f0fbe4-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 180,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 180,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "幸福官网,PC官网",
"billNo": "2018030519235628",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43b555f-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233557032100002",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 29,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43b555f-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 29,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 29,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "淘宝,普通订单",
"billNo": "2018030519235627",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43b555f-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233557032100002",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 29,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43b555f-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 29,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 29,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "淘宝,普通订单",
"billNo": "2018030519235627",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43b465f-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233529037600008",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 79,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43b465f-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 79,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 79,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "加油,有赞普通订单",
"billNo": "2018030519235626",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43b465f-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233529037600008",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 79,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43b465f-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 79,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 79,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "加油,有赞普通订单",
"billNo": "2018030519235626",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43b4148-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233525018300003",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 228,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43b4148-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 228,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 228,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "幸福微商城,有赞普通订单",
"billNo": "2018030519235624",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
},
{
"creatorId": null,
"creator": "管理员",
"createTime": "2018-04-18T21:01:03.000+0000",
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": "2018-05-03T10:52:06.000+0000",
"pageNumber": 1,
"pageSize": 10,
"uuid": "c43b3901-434d-11e8-a166-44a8421bb841",
"customer": null,
"customerId": null,
"batchId": "20180400092",
"orderNo": "E20180305233519006700004",
"businessDate": "2018-03-04T16:00:00.000+0000",
"status": "Audited",
"orderTotalAmount": 20,
"orderReceivedAmount": null,
"orderUncollectedAmount": null,
"salesCompany": null,
"salesDepartment": null,
"salesman": null,
"auditor": null,
"auditTime": null,
"companyId": "34898ffd-3bd3-11e8-bc22-fcaa1468c9f5",
"company": null,
"remarks": null,
"totalSize": null,
"orderReceivableSupList": [
{
"creatorId": null,
"creator": null,
"createTime": null,
"operator": null,
"updaterId": null,
"updater": null,
"updateTime": null,
"seq": 0,
"params": null,
"examineId": null,
"examiner": null,
"examineTime": null,
"pageNumber": 1,
"pageSize": 10,
"orderNo": null,
"orderId": null,
"batchId": null,
"companyId": null,
"remarks": null,
"index": null,
"billNo": null,
"uuid": "c43b3901-434d-11e8-a166-44a8421bb841",
"collectionContent": null,
"collectionDate": null,
"transNo": null,
"unitPrice": null,
"number": null,
"unit": null,
"amount": null,
"platformCoupon": null,
"companyCoupon": null,
"voucher": null,
"integral": null,
"commission": null,
"serviceCharge": null,
"insurance": null,
"customerPaymentAmount": null,
"commodityNum": null,
"commodityName": null,
"freight": null,
"sendArea": null,
"sendStation": null,
"platform": null,
"haveOtherOrder": null,
"orderTypeBelong": null,
"orderSource": null,
"orderPickUpEmp": null,
"orderOperator": null,
"orderer": null,
"ordererPhone": null,
"receiver": null,
"receiverPhone": null,
"receiverAddress": null,
"delivery": null,
"deliveryTime": null,
"deliveryman": null,
"deliverymanPhone": null,
"store": null,
"payType": null,
"payState": null,
"couponName": null,
"orderStatus": null,
"invoiceContent": null,
"groupPurchaseVerificationCode": null,
"cancelReason": null,
"firstCommodityClass": null,
"secondCommodityClass": null,
"specification": null,
"productName": null,
"groupSKU": null,
"productNum": null,
"commodityOfficialPrice": null,
"commodityReceivablePrice": null,
"commodityVoucherNumber": null,
"paymentNumber": null,
"map": {
"insurance": null,
"serviceCharge": null,
"voucher": null,
"integral": null,
"freight": null,
"platformCoupon": null,
"commission": null,
"customerPaymentAmount": null,
"companyCoupon": null
},
"sku": null,
"skunum": null
}
],
"reconciliationPlanInfoList": null,
"receivableRelationInfoList": null,
"settleAmount": 0,
"unsettleAmount": 20,
"settleStatus": "UnSettled",
"settlementStatus": null,
"settlementMoney": null,
"unsettlementMoney": null,
"settlementdMoney": null,
"cashCoupon": null,
"integral": null,
"commission": null,
"charge": null,
"freight": null,
"orderType": "0",
"totalAmount": 20,
"platformCoupon": null,
"companyCoupon": null,
"sellerPayment": null,
"platform": "幸福微商城,有赞普通订单",
"billNo": "2018030519235622",
"differenceProcessingStatus": "N",
"differenceProcessingAmount": 0,
"differenceProcessingRamarks": null,
"insurance": null
}
]
}
================================================
FILE: static/data/tableCols.json
================================================
[
{
"prop": "",
"label": "",
"width": "60",
"type":"selection"
},
{
"prop": "billNo",
"label": "单据编号",
"width": "200"
},
{
"prop": "platform",
"label": "平台",
"width": "200"
},
{
"prop": "orderNo",
"label": "平台订单号",
"width": "250"
},
{
"prop": "totalAmount",
"label": "总金额",
"width": "80"
},
{
"prop": "status",
"label": "单据状态",
"width": "90"
},
{
"prop": "businessDate",
"label": "业务日期",
"width": "110"
},
{
"prop": "settleStatus",
"label": "对账状态",
"width": "110"
},
{
"prop": "settleAmount",
"label": "已对账金额",
"width": "110"
},
{
"prop": "unsettleAmount",
"label": "未对账金额",
"width": "110"
},
{
"prop": "differenceProcessingStatus",
"label": "差异处理状态",
"width": "110"
},
{
"prop": "differenceProcessingAmount",
"label": "差异处理金额",
"width": "110"
},
{
"prop": "differenceProcessingRamarks",
"label": "差异处理原因",
"width": "130"
},
{
"prop": "reconStatus",
"label": "退款状态",
"width": "110"
},
{
"prop": "unsettlementMoney",
"label": "未退款金额",
"width": "110"
},
{
"prop": "settlementMoney",
"label": "已退款金额",
"width": "110"
},
{
"prop": "orderType",
"label": "单据类型",
"width": "110",
"type":""
},
{
"prop": "orderTotalAmount",
"label": "订单总金额",
"width": "110"
},
{
"prop": "commission",
"label": "佣金",
"width": "110"
},
{
"prop": "integral",
"label": "积分",
"width": "110"
},
{
"prop": "platformCoupon",
"label": "平台优惠卷",
"width": "110"
},
{
"prop": "companyCoupon",
"label": "公司优惠卷",
"width": "110"
},
{
"prop": "insurance",
"label": "保险",
"width": "110"
},
{
"prop": "freight",
"label": "运费",
"width": "110"
},
{
"prop": "sellerPayment",
"label": "买家支付金额",
"width": "120"
}
]