[
  {
    "path": ".babelrc",
    "content": "{\n  \"presets\": [\n    [\"env\", {\n      \"modules\": false,\n      \"targets\": {\n        \"browsers\": [\"> 1%\", \"last 2 versions\", \"not ie <= 8\"]\n      }\n    }],\n    \"stage-2\"\n  ],\n  \"plugins\": [\"transform-vue-jsx\", \"transform-runtime\"]\n}\n"
  },
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\ncharset = utf-8\nindent_style = space\nindent_size = 2\nend_of_line = lf\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\nnode_modules/\n/dist/\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n\n# Editor directories and files\n.idea\n.vscode\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n"
  },
  {
    "path": ".postcssrc.js",
    "content": "// https://github.com/michael-ciniawsky/postcss-load-config\n\nmodule.exports = {\n  \"plugins\": {\n    \"postcss-import\": {},\n    \"postcss-url\": {},\n    // to edit target browsers: use \"browserslist\" field in package.json\n    \"autoprefixer\": {}\n  }\n}\n"
  },
  {
    "path": "README.md",
    "content": "\n\n#基于vue-cli构建的财务后台管理系统(`vue2`+`vuex`+`axios`+`vue-router`+`element-ui`+`echarts`+`websocket`+`vue-i18n`)\n\n[![LICENSE](https://img.shields.io/badge/license-Anti%20996-blue.svg)](https://github.com/996icu/996.ICU/blob/master/LICENSE)[![996.icu](https://img.shields.io/badge/link-996.icu-red.svg)](https://996.icu)\n\n\n-------\n\n### 本项目可以学到:\n    1、学会使用vue-cli2.0构建项目.\n    2、基于(pomise)封装axios的get、post等http请求.\n    3、学会使用vue-router实现页面跳转带参.\n    4、学会使用vuex状态管理.\n    5、配套element-ui(主要对table的操作多)\n    6、对elementui进行二次封装组件,提高复用性\n    7、略微涉及echarts作图标分析\n    8、使用websocket监听ele进度条状态\n    9、使用vue-i18n实现国际化--中英文切换\n    10、使用Ngprogress做加载,类似github loading bar\n    \n\n#### 安装\n\n#### 项目地址：\n（`git clone`）\n\n```shell\ngit clone https://github.com/hzlshen/vue-project.git\n```\n\n#### 通过`npm`安装本地服务第三方依赖模块(需要已安装[Node.js](https://nodejs.org/))\n\n```\nnpm install\n```\n\n#### 启动服务(http://localhost:8080)\n\n```\nnpm run dev\n```\n\n#### 发布代码\n```\nnpm run build\n```\n\n#### 开发\n\n#### 目录结构\n<pre>\n.\n├── README.md           \n├── build              // 构建服务和webpack配置\n├── config             // 项目不同环境的配置\n├── dist               // 项目build目录\n├── index.html         // 项目入口文件\n├── package.json       // 项目配置文件\n├── src                // 生产目录\n│   ├── assets         // css js 和图片资源\n│   ├── axios          // ajax url 放置\n│   ├── components     // 各种组件\n│   ├── images         // 图片文件夹\n│   ├── i18n           // 国际化文件夹\n│   ├── page           // 各种页面\n│   ├── router         // 页面路由\n│   ├── store          // vuex状态管理器\n│   ├── style          // 样式文件\n│   └── main.js        // Webpack 预编译入口\n</pre>\n\n\n###项目截图\n<br/>\n![](https://github.com/hzlshen/Imgage_box/blob/master/vue-project1.png)\n\n![](https://github.com/hzlshen/Imgage_box/blob/master/vue-project2.png)\n"
  },
  {
    "path": "build/build.js",
    "content": "'use strict'\nrequire('./check-versions')()\n\nprocess.env.NODE_ENV = 'production'\n\nconst ora = require('ora')\nconst rm = require('rimraf')\nconst path = require('path')\nconst chalk = require('chalk')\nconst webpack = require('webpack')\nconst config = require('../config')\nconst webpackConfig = require('./webpack.prod.conf')\n\nconst spinner = ora('building for production...')\nspinner.start()\n\nrm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {\n  if (err) throw err\n  webpack(webpackConfig, (err, stats) => {\n    spinner.stop()\n    if (err) throw err\n    process.stdout.write(stats.toString({\n      colors: true,\n      modules: false,\n      children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.\n      chunks: false,\n      chunkModules: false\n    }) + '\\n\\n')\n\n    if (stats.hasErrors()) {\n      console.log(chalk.red('  Build failed with errors.\\n'))\n      process.exit(1)\n    }\n\n    console.log(chalk.cyan('  Build complete.\\n'))\n    console.log(chalk.yellow(\n      '  Tip: built files are meant to be served over an HTTP server.\\n' +\n      '  Opening index.html over file:// won\\'t work.\\n'\n    ))\n  })\n})\n"
  },
  {
    "path": "build/check-versions.js",
    "content": "'use strict'\nconst chalk = require('chalk')\nconst semver = require('semver')\nconst packageConfig = require('../package.json')\nconst shell = require('shelljs')\n\nfunction exec (cmd) {\n  return require('child_process').execSync(cmd).toString().trim()\n}\n\nconst versionRequirements = [\n  {\n    name: 'node',\n    currentVersion: semver.clean(process.version),\n    versionRequirement: packageConfig.engines.node\n  }\n]\n\nif (shell.which('npm')) {\n  versionRequirements.push({\n    name: 'npm',\n    currentVersion: exec('npm --version'),\n    versionRequirement: packageConfig.engines.npm\n  })\n}\n\nmodule.exports = function () {\n  const warnings = []\n\n  for (let i = 0; i < versionRequirements.length; i++) {\n    const mod = versionRequirements[i]\n\n    if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {\n      warnings.push(mod.name + ': ' +\n        chalk.red(mod.currentVersion) + ' should be ' +\n        chalk.green(mod.versionRequirement)\n      )\n    }\n  }\n\n  if (warnings.length) {\n    console.log('')\n    console.log(chalk.yellow('To use this template, you must update following to modules:'))\n    console.log()\n\n    for (let i = 0; i < warnings.length; i++) {\n      const warning = warnings[i]\n      console.log('  ' + warning)\n    }\n\n    console.log()\n    process.exit(1)\n  }\n}\n"
  },
  {
    "path": "build/utils.js",
    "content": "'use strict'\nconst path = require('path')\nconst config = require('../config')\nconst ExtractTextPlugin = require('extract-text-webpack-plugin')\nconst packageConfig = require('../package.json')\n\nexports.assetsPath = function (_path) {\n  const assetsSubDirectory = process.env.NODE_ENV === 'production'\n    ? config.build.assetsSubDirectory\n    : config.dev.assetsSubDirectory\n\n  return path.posix.join(assetsSubDirectory, _path)\n}\n\nexports.cssLoaders = function (options) {\n  options = options || {}\n\n  const cssLoader = {\n    loader: 'css-loader',\n    options: {\n      sourceMap: options.sourceMap\n    }\n  }\n\n  const postcssLoader = {\n    loader: 'postcss-loader',\n    options: {\n      sourceMap: options.sourceMap\n    }\n  }\n\n  // generate loader string to be used with extract text plugin\n  function generateLoaders (loader, loaderOptions) {\n    const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]\n\n    if (loader) {\n      loaders.push({\n        loader: loader + '-loader',\n        options: Object.assign({}, loaderOptions, {\n          sourceMap: options.sourceMap\n        })\n      })\n    }\n\n    // Extract CSS when that option is specified\n    // (which is the case during production build)\n    if (options.extract) {\n      return ExtractTextPlugin.extract({\n        use: loaders,\n        fallback: 'vue-style-loader'\n      })\n    } else {\n      return ['vue-style-loader'].concat(loaders)\n    }\n  }\n\n  // https://vue-loader.vuejs.org/en/configurations/extract-css.html\n  return {\n    css: generateLoaders(),\n    postcss: generateLoaders(),\n    less: generateLoaders('less'),\n    sass: generateLoaders('sass', { indentedSyntax: true }),\n    scss: generateLoaders('sass'),\n    stylus: generateLoaders('stylus'),\n    styl: generateLoaders('stylus')\n  }\n}\n\n// Generate loaders for standalone style files (outside of .vue)\nexports.styleLoaders = function (options) {\n  const output = []\n  const loaders = exports.cssLoaders(options)\n\n  for (const extension in loaders) {\n    const loader = loaders[extension]\n    output.push({\n      test: new RegExp('\\\\.' + extension + '$'),\n      use: loader\n    })\n  }\n\n  return output\n}\n\nexports.createNotifierCallback = () => {\n  const notifier = require('node-notifier')\n\n  return (severity, errors) => {\n    if (severity !== 'error') return\n\n    const error = errors[0]\n    const filename = error.file && error.file.split('!').pop()\n\n    notifier.notify({\n      title: packageConfig.name,\n      message: severity + ': ' + error.name,\n      subtitle: filename || '',\n      icon: path.join(__dirname, 'logo.png')\n    })\n  }\n}\n"
  },
  {
    "path": "build/vue-loader.conf.js",
    "content": "'use strict'\nconst utils = require('./utils')\nconst config = require('../config')\nconst isProduction = process.env.NODE_ENV === 'production'\nconst sourceMapEnabled = isProduction\n  ? config.build.productionSourceMap\n  : config.dev.cssSourceMap\n\nmodule.exports = {\n  loaders: utils.cssLoaders({\n    sourceMap: sourceMapEnabled,\n    extract: isProduction\n  }),\n  cssSourceMap: sourceMapEnabled,\n  cacheBusting: config.dev.cacheBusting,\n  transformToRequire: {\n    video: ['src', 'poster'],\n    source: 'src',\n    img: 'src',\n    image: 'xlink:href'\n  }\n}\n"
  },
  {
    "path": "build/webpack.base.conf.js",
    "content": "'use strict'\nconst path = require('path')\nconst utils = require('./utils')\nconst config = require('../config')\nconst vueLoaderConfig = require('./vue-loader.conf')\n\nfunction resolve (dir) {\n  return path.join(__dirname, '..', dir)\n}\n\n\n\nmodule.exports = {\n  context: path.resolve(__dirname, '../'),\n  entry: {\n    app: './src/main.js'\n  },\n  output: {\n    path: config.build.assetsRoot,\n    filename: '[name].js',\n    publicPath: process.env.NODE_ENV === 'production'\n      ? config.build.assetsPublicPath\n      : config.dev.assetsPublicPath\n  },\n  resolve: {\n    extensions: ['.js', '.vue', '.json'],\n    alias: {\n      'vue$': 'vue/dist/vue.esm.js',\n      '@': resolve('src'),\n    }\n  },\n  module: {\n    rules: [\n      {\n        test: /\\.vue$/,\n        loader: 'vue-loader',\n        options: vueLoaderConfig\n      },\n      {\n        test: /\\.js$/,\n        loader: 'babel-loader',\n        include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]\n      },\n      {\n        test: /\\.(png|jpe?g|gif|svg)(\\?.*)?$/,\n        loader: 'url-loader',\n        options: {\n          limit: 10000,\n          name: utils.assetsPath('img/[name].[hash:7].[ext]')\n        }\n      },\n      {\n        test: /\\.(mp4|webm|ogg|mp3|wav|flac|aac)(\\?.*)?$/,\n        loader: 'url-loader',\n        options: {\n          limit: 10000,\n          name: utils.assetsPath('media/[name].[hash:7].[ext]')\n        }\n      },\n      {\n        test: /\\.(woff2?|eot|ttf|otf)(\\?.*)?$/,\n        loader: 'url-loader',\n        options: {\n          limit: 10000,\n          name: utils.assetsPath('fonts/[name].[hash:7].[ext]')\n        }\n      }\n    ]\n  },\n  node: {\n    // prevent webpack from injecting useless setImmediate polyfill because Vue\n    // source contains it (although only uses it if it's native).\n    setImmediate: false,\n    // prevent webpack from injecting mocks to Node native modules\n    // that does not make sense for the client\n    dgram: 'empty',\n    fs: 'empty',\n    net: 'empty',\n    tls: 'empty',\n    child_process: 'empty'\n  }\n}\n"
  },
  {
    "path": "build/webpack.dev.conf.js",
    "content": "'use strict'\nconst utils = require('./utils')\nconst webpack = require('webpack')\nconst config = require('../config')\nconst merge = require('webpack-merge')\nconst path = require('path')\nconst baseWebpackConfig = require('./webpack.base.conf')\nconst CopyWebpackPlugin = require('copy-webpack-plugin')\nconst HtmlWebpackPlugin = require('html-webpack-plugin')\nconst FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')\nconst portfinder = require('portfinder')\n\nconst HOST = process.env.HOST\nconst PORT = process.env.PORT && Number(process.env.PORT)\n\nconst devWebpackConfig = merge(baseWebpackConfig, {\n  module: {\n    rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })\n  },\n  // cheap-module-eval-source-map is faster for development\n  devtool: config.dev.devtool,\n\n  // these devServer options should be customized in /config/index.js\n  devServer: {\n    clientLogLevel: 'warning',\n    historyApiFallback: {\n      rewrites: [\n        { from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },\n      ],\n    },\n    hot: true,\n    contentBase: false, // since we use CopyWebpackPlugin.\n    compress: true,\n    host: HOST || config.dev.host,\n    port: PORT || config.dev.port,\n    open: config.dev.autoOpenBrowser,\n    overlay: config.dev.errorOverlay\n      ? { warnings: false, errors: true }\n      : false,\n    publicPath: config.dev.assetsPublicPath,\n    proxy: config.dev.proxyTable,\n    quiet: true, // necessary for FriendlyErrorsPlugin\n    watchOptions: {\n      poll: config.dev.poll,\n    }\n  },\n  plugins: [\n    new webpack.DefinePlugin({\n      'process.env': require('../config/dev.env')\n    }),\n    new webpack.HotModuleReplacementPlugin(),\n    new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.\n    new webpack.NoEmitOnErrorsPlugin(),\n    // https://github.com/ampedandwired/html-webpack-plugin\n    new HtmlWebpackPlugin({\n      filename: 'index.html',\n      template: 'index.html',\n      inject: true\n    }),\n    // copy custom static assets\n    new CopyWebpackPlugin([\n      {\n        from: path.resolve(__dirname, '../static'),\n        to: config.dev.assetsSubDirectory,\n        ignore: ['.*']\n      }\n    ])\n  ]\n})\n\nmodule.exports = new Promise((resolve, reject) => {\n  portfinder.basePort = process.env.PORT || config.dev.port\n  portfinder.getPort((err, port) => {\n    if (err) {\n      reject(err)\n    } else {\n      // publish the new Port, necessary for e2e tests\n      process.env.PORT = port\n      // add port to devServer config\n      devWebpackConfig.devServer.port = port\n\n      // Add FriendlyErrorsPlugin\n      devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({\n        compilationSuccessInfo: {\n          messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],\n        },\n        onErrors: config.dev.notifyOnErrors\n        ? utils.createNotifierCallback()\n        : undefined\n      }))\n\n      resolve(devWebpackConfig)\n    }\n  })\n})\n"
  },
  {
    "path": "build/webpack.prod.conf.js",
    "content": "'use strict'\nconst path = require('path')\nconst utils = require('./utils')\nconst webpack = require('webpack')\nconst config = require('../config')\nconst merge = require('webpack-merge')\nconst baseWebpackConfig = require('./webpack.base.conf')\nconst CopyWebpackPlugin = require('copy-webpack-plugin')\nconst HtmlWebpackPlugin = require('html-webpack-plugin')\nconst ExtractTextPlugin = require('extract-text-webpack-plugin')\nconst OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')\nconst UglifyJsPlugin = require('uglifyjs-webpack-plugin')\n\nconst env = require('../config/prod.env')\n\nconst webpackConfig = merge(baseWebpackConfig, {\n  module: {\n    rules: utils.styleLoaders({\n      sourceMap: config.build.productionSourceMap,\n      extract: true,\n      usePostCSS: true\n    })\n  },\n  devtool: config.build.productionSourceMap ? config.build.devtool : false,\n  output: {\n    path: config.build.assetsRoot,\n    filename: utils.assetsPath('js/[name].[chunkhash].js'),\n    chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')\n  },\n  plugins: [\n    // http://vuejs.github.io/vue-loader/en/workflow/production.html\n    new webpack.DefinePlugin({\n      'process.env': env\n    }),\n    new UglifyJsPlugin({\n      uglifyOptions: {\n        compress: {\n          warnings: false\n        }\n      },\n      sourceMap: config.build.productionSourceMap,\n      parallel: true\n    }),\n    // extract css into its own file\n    new ExtractTextPlugin({\n      filename: utils.assetsPath('css/[name].[contenthash].css'),\n      // Setting the following option to `false` will not extract CSS from codesplit chunks.\n      // Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.\n      // It's currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well when it's `false`, \n      // increasing file size: https://github.com/vuejs-templates/webpack/issues/1110\n      allChunks: true,\n    }),\n    // Compress extracted CSS. We are using this plugin so that possible\n    // duplicated CSS from different components can be deduped.\n    new OptimizeCSSPlugin({\n      cssProcessorOptions: config.build.productionSourceMap\n        ? { safe: true, map: { inline: false } }\n        : { safe: true }\n    }),\n    // generate dist index.html with correct asset hash for caching.\n    // you can customize output by editing /index.html\n    // see https://github.com/ampedandwired/html-webpack-plugin\n    new HtmlWebpackPlugin({\n      filename: config.build.index,\n      template: 'index.html',\n      inject: true,\n      minify: {\n        removeComments: true,\n        collapseWhitespace: true,\n        removeAttributeQuotes: true\n        // more options:\n        // https://github.com/kangax/html-minifier#options-quick-reference\n      },\n      // necessary to consistently work with multiple chunks via CommonsChunkPlugin\n      chunksSortMode: 'dependency'\n    }),\n    // keep module.id stable when vendor modules does not change\n    new webpack.HashedModuleIdsPlugin(),\n    // enable scope hoisting\n    new webpack.optimize.ModuleConcatenationPlugin(),\n    // split vendor js into its own file\n    new webpack.optimize.CommonsChunkPlugin({\n      name: 'vendor',\n      minChunks (module) {\n        // any required modules inside node_modules are extracted to vendor\n        return (\n          module.resource &&\n          /\\.js$/.test(module.resource) &&\n          module.resource.indexOf(\n            path.join(__dirname, '../node_modules')\n          ) === 0\n        )\n      }\n    }),\n    // extract webpack runtime and module manifest to its own file in order to\n    // prevent vendor hash from being updated whenever app bundle is updated\n    new webpack.optimize.CommonsChunkPlugin({\n      name: 'manifest',\n      minChunks: Infinity\n    }),\n    // This instance extracts shared chunks from code splitted chunks and bundles them\n    // in a separate chunk, similar to the vendor chunk\n    // see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk\n    new webpack.optimize.CommonsChunkPlugin({\n      name: 'app',\n      async: 'vendor-async',\n      children: true,\n      minChunks: 3\n    }),\n\n    // copy custom static assets\n    new CopyWebpackPlugin([\n      {\n        from: path.resolve(__dirname, '../static'),\n        to: config.build.assetsSubDirectory,\n        ignore: ['.*']\n      }\n    ])\n  ]\n})\n\nif (config.build.productionGzip) {\n  const CompressionWebpackPlugin = require('compression-webpack-plugin')\n\n  webpackConfig.plugins.push(\n    new CompressionWebpackPlugin({\n      asset: '[path].gz[query]',\n      algorithm: 'gzip',\n      test: new RegExp(\n        '\\\\.(' +\n        config.build.productionGzipExtensions.join('|') +\n        ')$'\n      ),\n      threshold: 10240,\n      minRatio: 0.8\n    })\n  )\n}\n\nif (config.build.bundleAnalyzerReport) {\n  const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin\n  webpackConfig.plugins.push(new BundleAnalyzerPlugin())\n}\n\nmodule.exports = webpackConfig\n"
  },
  {
    "path": "config/dev.env.js",
    "content": "'use strict'\nconst merge = require('webpack-merge')\nconst prodEnv = require('./prod.env')\n\nmodule.exports = merge(prodEnv, {\n  NODE_ENV: '\"development\"'\n})\n"
  },
  {
    "path": "config/index.js",
    "content": "'use strict'\n// Template version: 1.3.1\n// see http://vuejs-templates.github.io/webpack for documentation.\n\nconst path = require('path')\n\nmodule.exports = {\n  dev: {\n\n    // Paths\n    assetsSubDirectory: 'static',\n    assetsPublicPath: '/',\n    proxyTable: {},\n\n    // Various Dev Server settings\n    host: 'localhost', // can be overwritten by process.env.HOST\n    port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined\n    autoOpenBrowser: false,\n    errorOverlay: true,\n    notifyOnErrors: true,\n    poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-\n\n\n    /**\n     * Source Maps\n     */\n\n    // https://webpack.js.org/configuration/devtool/#development\n    devtool: 'cheap-module-eval-source-map',\n\n    // If you have problems debugging vue-files in devtools,\n    // set this to false - it *may* help\n    // https://vue-loader.vuejs.org/en/options.html#cachebusting\n    cacheBusting: true,\n\n    cssSourceMap: true\n  },\n\n  build: {\n    // Template for index.html\n    index: path.resolve(__dirname, '../dist/index.html'),\n\n    // Paths\n    assetsRoot: path.resolve(__dirname, '../dist'),\n    assetsSubDirectory: 'static',\n    assetsPublicPath: '/',\n\n    /**\n     * Source Maps\n     */\n\n    productionSourceMap: true,\n    // https://webpack.js.org/configuration/devtool/#production\n    devtool: '#source-map',\n\n    // Gzip off by default as many popular static hosts such as\n    // Surge or Netlify already gzip all static assets for you.\n    // Before setting to `true`, make sure to:\n    // npm install --save-dev compression-webpack-plugin\n    productionGzip: false,\n    productionGzipExtensions: ['js', 'css'],\n\n    // Run the build command with an extra argument to\n    // View the bundle analyzer report after build finishes:\n    // `npm run build --report`\n    // Set to `true` or `false` to always turn it on or off\n    bundleAnalyzerReport: process.env.npm_config_report\n  }\n}\n"
  },
  {
    "path": "config/prod.env.js",
    "content": "'use strict'\nmodule.exports = {\n  NODE_ENV: '\"production\"'\n}\n"
  },
  {
    "path": "index.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1.0\">\n    <title>Vue+Element后台管理系统</title>\n  </head>\n  <body>\n    <div id=\"app\"></div>\n    <!-- built files will be auto injected -->\n  </body>\n</html>\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"my-project\",\n  \"version\": \"1.0.0\",\n  \"description\": \"A Vue.js project\",\n  \"author\": \"liuzhu\",\n  \"private\": true,\n  \"scripts\": {\n    \"dev\": \"webpack-dev-server --inline --progress --config build/webpack.dev.conf.js\",\n    \"start\": \"npm run dev\",\n    \"build\": \"node build/build.js\"\n  },\n  \"dependencies\": {\n    \"axios\": \"^0.18.0\",\n    \"echarts\": \"^4.1.0\",\n    \"element-ui\": \"^2.4.11\",\n    \"moment\": \"^2.22.2\",\n    \"normalize.css\": \"^8.0.1\",\n    \"nprogress\": \"^0.2.0\",\n    \"url-parse\": \"^1.4.4\",\n    \"vue\": \"^2.5.21\",\n    \"vue-i18n\": \"^8.7.0\",\n    \"vue-router\": \"^3.0.2\",\n    \"vuex\": \"^3.0.1\"\n  },\n  \"devDependencies\": {\n    \"autoprefixer\": \"^7.1.2\",\n    \"babel-core\": \"^6.22.1\",\n    \"babel-helper-vue-jsx-merge-props\": \"^2.0.3\",\n    \"babel-loader\": \"^7.1.1\",\n    \"babel-plugin-syntax-jsx\": \"^6.18.0\",\n    \"babel-plugin-transform-runtime\": \"^6.22.0\",\n    \"babel-plugin-transform-vue-jsx\": \"^3.5.0\",\n    \"babel-preset-env\": \"^1.3.2\",\n    \"babel-preset-stage-2\": \"^6.22.0\",\n    \"chalk\": \"^2.4.2\",\n    \"copy-webpack-plugin\": \"^4.6.0\",\n    \"css-loader\": \"^0.28.0\",\n    \"extract-text-webpack-plugin\": \"^3.0.0\",\n    \"file-loader\": \"^1.1.4\",\n    \"friendly-errors-webpack-plugin\": \"^1.6.1\",\n    \"html-webpack-plugin\": \"^2.30.1\",\n    \"node-notifier\": \"^5.3.0\",\n    \"optimize-css-assets-webpack-plugin\": \"^3.2.0\",\n    \"ora\": \"^1.2.0\",\n    \"portfinder\": \"^1.0.20\",\n    \"postcss-import\": \"^11.0.0\",\n    \"postcss-loader\": \"^2.1.6\",\n    \"postcss-url\": \"^7.2.1\",\n    \"rimraf\": \"^2.6.3\",\n    \"semver\": \"^5.6.0\",\n    \"shelljs\": \"^0.7.6\",\n    \"uglifyjs-webpack-plugin\": \"^1.3.0\",\n    \"url-loader\": \"^0.5.8\",\n    \"vue-loader\": \"^13.7.3\",\n    \"vue-style-loader\": \"^3.0.1\",\n    \"vue-template-compiler\": \"^2.5.21\",\n    \"webpack\": \"^3.6.0\",\n    \"webpack-bundle-analyzer\": \"^2.9.0\",\n    \"webpack-dev-server\": \"^2.9.1\",\n    \"webpack-merge\": \"^4.2.1\"\n  },\n  \"engines\": {\n    \"node\": \">= 6.0.0\",\n    \"npm\": \">= 3.0.0\"\n  },\n  \"browserslist\": [\n    \"> 1%\",\n    \"last 2 versions\",\n    \"not ie <= 8\"\n  ]\n}\n"
  },
  {
    "path": "src/App.vue",
    "content": "<template>\n  <div id=\"app\">\n    <transition name=\"router-fade\" mode=\"out-in\">\n      <keep-alive>\n        <router-view></router-view>\n      </keep-alive>\n    </transition>\n\n  </div>\n</template>\n\n<script>\n\nexport default {\n  name: 'App'\n}\n</script>\n\n<style>\n  @import './style/main.css';\n</style>\n"
  },
  {
    "path": "src/axios/api.js",
    "content": "/**\n * Created by 不动的推动者 on 2018/4/30.\n */\n/*****\n * 获取数据get + 对应路由名称\n * 向后台传数据 store + 对应路由名称\n * 驼峰命名\n * *****/\n\n\nimport { fetch } from \"./fetch\"; //引用fetch.js\nimport api from './url'; //引用url.js\n\n\n//查看用户\nexport const lookOption = (username,password,captcha) => fetch({//lookOption是你要调用接口的名字，issuer,userId是传进来的参数\n  //api.Hallowmas 引用url.js里面的数据\n  url: api.Hallowmas,\n  method: 'get',//请求方法\n  params:{\n    // username,password,captcha//参数\n  }\n});\n//获取公司\nexport const getCompany = (date,audit) => fetch({\n  url:'',\n  method:'',\n  params:{\n    date,\n    audit\n  }\n});\n\n//订单应收获取数据\nexport const getOrderReceivable = ()=>fetch({\n  url: api.commonLick,\n  method: 'get',\n  params: {\n  }\n});\n\n//cols title\nexport const getCols = ()=>fetch({\n  url: api.cols,\n  method: 'get',\n  params: {\n  }\n});\n\n//审核 批量审核audit\nexport const audit = (data)=>fetch({\n  url: '',\n  methods: 'get',\n  params: {\n    data: data\n  }\n})\n\n\n\n\n\n//获取验证码\nexport const getcaptchas = () => fetch('', {},'POST'); //简写\n\n//有新接口的时候像上面那样再来一次\n// //修改昵称接口\n// export function userID(name){\n//   return fetch({\n//     url:api.myself_name,\n//     method:\"put\",\n//     data:{\n//       nickname:name\n//     }\n//   })\n// }\n//\n//\n// //取消转发赞踩接口\n// export function cancelForward(articleId,type){\n//   return fetch({\n//     url:api.detail_article+articleId+\"/forwarded_impress\",\n//     method:\"delete\",\n//     params:{\n//       type:type\n//     }\n//   })\n// }\n\n//导入\nexport const leadingIn = () => fetch('',{},'POST')\n"
  },
  {
    "path": "src/axios/fetch.js",
    "content": "/**\n * Created by 不动的推动者 on 2018/4/30.\n */\nimport axios from 'axios';//引入axios\n\nexport function fetch(options){\n  return new Promise((resolve, reject) => {\n    const instance = axios.create({\n      //instance创建一个axios实例，可以自定义配置。\n      //所有的请求都会带上这些配置，比如全局都要用的身份信息等。\n      headers: {\n        'Content-Type': 'application/json',\n        // 'token_in_header': global_.token,//token从全局变量那里传过来\n      },\n      timeout:30 * 1000 // 30秒超时\n    });\n    instance(options)\n      .then(response => { //then 请求成功之后进行什么操作\n         resolve(response);//把请求到的数据发到引用请求的地方\n      })\n      .catch(error => {\n        console.log('请求异常信息：'+error);\n         reject(error);\n      });\n  });\n}\n"
  },
  {
    "path": "src/axios/url.js",
    "content": "/**\n * Created by 不动的推动者 on 2018/4/30.\n */\nexport default {\n  //接口代理配置\n  Hallowmas:'http://jsonplaceholder.typicode.com/users',\n  commonLick:'../static/data/localData.json',\n  cols:'../static/data/tableCols.json',\n  ws:'ws://baidu.com'\n}\n\n//区分环境或者区分服务器\n// let service = 'dev';\n// // // let service = 'prod';\n// let api = '';\n// if (service === 'dev') {\n//   /**dev开发**/\n//   api = 'data/localData.json';\n// } else if (service === 'prod') {\n//   /**prod部署**/\n//   api = '/proxy/client';\n// }\n//\n// export default {\n//   /**个人中心start**/\n//   //1 获取c端个人信息 POST /wx/getClientInfo\n//   getClientInfo: `${api}/wx/getClientInfo`,\n//   //2 获取手机注册验证码 POST /wx/getClientRegisterCode\n//   getClientRegisterCode: `${api}/wx/getClientRegisterCode`,\n//   //3 绑定手机号 POST /wx/clientBindMobile\n//   clientBindMobile: `${api}/wx/clientBindMobile`,\n//   /**个人中心end**/\n//\n// }\n"
  },
  {
    "path": "src/components/btnList/btnList.vue",
    "content": "<template>\n    <div class=\"btn-list\">\n      <el-dropdown split-button type=\"primary\" size=\"mini\" @click=\"getBtnInfo($event)\">\n        导入\n        <el-dropdown-menu slot=\"dropdown\">\n          <el-dropdown-item >\n            <span @click=\"getBtnInfo($event)\">导出</span>\n          </el-dropdown-item>\n        </el-dropdown-menu>\n      </el-dropdown>\n      <el-dropdown split-button type=\"primary\" size=\"mini\" @click=\"getBtnInfo($event)\">\n        审核\n        <el-dropdown-menu slot=\"dropdown\">\n          <el-dropdown-item >\n            <div @click=\"getBtnInfo($event)\">批量审核</div>\n          </el-dropdown-item>\n        </el-dropdown-menu>\n      </el-dropdown>\n      <el-dropdown split-button type=\"primary\" size=\"mini\" @click=\"getBtnInfo($event)\">\n        反审核\n        <el-dropdown-menu slot=\"dropdown\">\n          <el-dropdown-item >\n            <div @click=\"getBtnInfo($event)\">批量反审核</div>\n          </el-dropdown-item>\n        </el-dropdown-menu>\n      </el-dropdown>\n      <el-dropdown split-button type=\"primary\" plain size=\"mini\" @click=\"getBtnInfo($event)\">\n        差异对帐\n        <el-dropdown-menu slot=\"dropdown\">\n          <el-dropdown-item >\n            <div @click=\"getBtnInfo($event)\">批量差异对帐</div>\n          </el-dropdown-item>\n        </el-dropdown-menu>\n      </el-dropdown>\n      <el-button size=\"mini\" type=\"primary\"  @click=\"getBtnInfo($event)\">新增</el-button>\n      <el-button size=\"mini\" type=\"primary\"  @click=\"getBtnInfo($event)\">接口获取</el-button>\n      <el-dropdown split-button type=\"primary\"  size=\"mini\" @click=\"getBtnInfo($event)\">\n        删除\n        <el-dropdown-menu slot=\"dropdown\" >\n          <el-dropdown-item >\n            <div @click=\"getBtnInfo($event)\">批量删除</div>\n          </el-dropdown-item>\n        </el-dropdown-menu>\n      </el-dropdown>\n    </div>\n</template>\n\n<script>\n    export default {\n        name: 'btnList',\n        data () {\n            return {}\n        },\n      methods:{\n        /*所有按钮共用一个点击事件*/\n        getBtnInfo(e){\n          let name = e.target.innerText;\n          this.message = name;\n          let boolean =\n            name === '导入' ||\n            name === '导出' ||\n            name === '接口获取' ||\n            name === '新增' ||\n            name === '批量审核' ||\n            name === '批量反审核' ||\n            name === '批量差异对帐' ||\n            name === '批量删除';\n          if(boolean){\n            switch (name) {\n              case '导入':\n                this.$router.push('/Upload');\n                break;\n              case '导出':\n                console.log('导出');\n                break;\n              case '接口获取':\n                console.log('接口获取');\n                break;\n              case '新增':\n                this.$router.push('/orderAdd');\n                break;\n              case '批量审核':\n                this.$store.dispatch('dialogFromAudit');\n                break;\n              case '批量反审核':\n                this.$store.dispatch('dialogFromUnAudit');\n                break;\n              case '批量差异对帐':\n                this.$store.dispatch('dialogFromDifferences');\n                break;\n              case '批量删除':\n                this.$store.dispatch('dialogFromDelete');\n                break;\n            }\n          }else{\n            if(this.handSelectDataList.length){\n              console.log(name,1);\n              switch (name) {\n                case '审核':\n                  this.duff(this.handSelectDataList);\n                  console.log('审核');\n                  break;\n                case '反审核':\n                  console.log('反审核');\n                  break;\n                case '差异对帐':\n                  console.log('差异对帐');\n                  break;\n                case '删除':\n                  console.log('删除');\n                  break;\n              }\n            }else{\n              this.$message.error('请选择需要' + this.message + '的数据');\n            }\n          }\n        },\n      }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/components/filterBox/batchAudit.vue",
    "content": "<template>\n    <div class=\"batch-audit\">\n      <template>\n        <el-dialog title=\"批量审核\" :close-on-click-modal=\"false\" :append-to-body=\"true\" :close-on-press-escape=\"false\" :visible.sync=\"dialogFromAudit\" :before-close=\"dialog_close\">\n          <el-form :model=\"form\">\n            <el-form-item label=\"单据类型\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.documentsType\" placeholder=\"请选择活动区域\">\n                <el-option label=\"平台订单\" value=\"shanghai\"></el-option>\n                <el-option label=\"手工订单\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"业务日期\" :label-width=\"formLabelWidth\">\n              <div class=\"block\">\n                <el-date-picker\n                  size=\"small\"\n                  v-model=\"form.time\"\n                  type=\"daterange\"\n                  range-separator=\"至\"\n                  start-placeholder=\"开始日期\"\n                  end-placeholder=\"结束日期\">\n                </el-date-picker>\n              </div>\n            </el-form-item>\n            <el-form-item label=\"平台\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.platform\" placeholder=\"请选择活动区域\">\n                <el-option label=\"微信\" value=\"shanghai\"></el-option>\n                <el-option label=\"支付宝\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"单据状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择活动区域\">\n                <el-option label=\"审核\" value=\"shanghai\"></el-option>\n                <el-option label=\"保存\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"对账状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.checkState\" placeholder=\"请选择活动区域\">\n                <el-option label=\"未对账\" value=\"shanghai\"></el-option>\n                <el-option label=\"已对账\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n\n          </el-form>\n          <div slot=\"footer\" class=\"dialog-footer\">\n            <el-button size=\"mini\" @click=\"cancel\">取 消</el-button>\n            <el-button size=\"mini\" type=\"primary\" @click=\"determine\">确 定</el-button>\n          </div>\n        </el-dialog>\n      </template>\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n    export default {\n        name: 'batchAudit',\n        data () {\n            return {\n              form: {\n                documentsType: '',//单据类型\n                time: '',//时间\n                platform: '',//平台\n                documentsState: '',//单据状态\n                checkState: '', //对账状态\n              },\n              formLabelWidth: '120px',\n            }\n        },\n      computed:{\n        ...mapState({\n          dialogFromAudit:state=>state.dialogFromAudit\n        })\n      },\n      methods:{\n        cancel(){ //取消\n          this.$store.dispatch('dialogFromAudit')\n        },\n        determine(){ //确定\n          console.log(this.form);\n          this.$store.dispatch('dialogFromAudit')\n        },\n        dialog_close() {\n          this.$store.dispatch('dialogFromAudit')\n        },\n      }\n    }\n</script>\n<style scoped>\n  .el-dialog .el-input{\n    max-width: 300px;\n  }\n</style>\n"
  },
  {
    "path": "src/components/filterBox/batchDelete.vue",
    "content": "<template>\n    <div class=\"batch-delete\">\n      <template>\n        <el-dialog title=\"批量删除\" :close-on-click-modal=\"false\" :append-to-body=\"true\" :close-on-press-escape=\"false\" :visible.sync=\"dialogFromDelete\" :before-close=\"dialog_close\">\n          <el-form :model=\"form\">\n\n            <el-form-item label=\"单据类型\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.documentsType\" placeholder=\"请选择活动区域\">\n                <el-option label=\"平台订单\" value=\"shanghai\"></el-option>\n                <el-option label=\"手工订单\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n\n            <el-form-item label=\"业务日期\" :label-width=\"formLabelWidth\">\n              <div class=\"block\">\n                <el-date-picker\n                  size=\"small\"\n                  v-model=\"form.time\"\n                  type=\"daterange\"\n                  range-separator=\"至\"\n                  start-placeholder=\"开始日期\"\n                  end-placeholder=\"结束日期\">\n                </el-date-picker>\n              </div>\n            </el-form-item>\n\n            <el-form-item label=\"平台\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.platform\" placeholder=\"请选择活动区域\">\n                <el-option label=\"区域一\" value=\"shanghai\"></el-option>\n                <el-option label=\"区域二\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n\n            <el-form-item label=\"单据状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择活动区域\">\n                <el-option label=\"区域一\" value=\"shanghai\"></el-option>\n                <el-option label=\"区域二\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n\n            <el-form-item label=\"对账状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.checkState\" placeholder=\"请选择活动区域\">\n                <el-option label=\"保存\" value=\"shanghai\"></el-option>\n                <el-option label=\"区域二\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n          </el-form>\n          <div slot=\"footer\" class=\"dialog-footer\">\n            <el-button size=\"mini\" @click=\"cancel\">取 消</el-button>\n            <el-button size=\"mini\" type=\"primary\" @click=\"dialogFormVisible = false\">确 定</el-button>\n          </div>\n        </el-dialog>\n      </template>\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  export default {\n        name: 'batchDelete',\n        data () {\n            return {\n              form: {\n                documentsType: '',//单据类型\n                time: '',//时间\n                platform: '',//平台\n                documentsState: '',//单据状态\n                checkState: '', //对账状态\n              },\n              formLabelWidth: '120px'\n            }\n        },\n        computed: {\n          ...mapState({\n            dialogFromDelete:state=>state.dialogFromDelete\n          })\n        },\n        methods: {\n          cancel(){\n            this.$store.dispatch('dialogFromDelete')\n          },\n          dialog_close(){\n            this.$store.dispatch('dialogFromDelete')\n          }\n        }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/components/filterBox/batchDifferences.vue",
    "content": "<template>\n    <div class=\"batch-Differences\">\n      <template>\n        <el-dialog title=\"批量差异对帐\" :close-on-click-modal=\"false\" :append-to-body=\"true\" :close-on-press-escape=\"false\" :visible.sync=\"dialogFromDifferences\" :before-close=\"dialog_close\">\n          <el-form :model=\"form\">\n\n            <el-form-item label=\"单据类型\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.documentsType\" placeholder=\"请选择活动区域\">\n                <el-option label=\"平台订单\" value=\"shanghai\"></el-option>\n                <el-option label=\"手工订单\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n\n            <el-form-item label=\"业务日期\" :label-width=\"formLabelWidth\">\n              <div class=\"block\">\n                <el-date-picker\n                  size=\"small\"\n                  v-model=\"form.time\"\n                  type=\"daterange\"\n                  range-separator=\"至\"\n                  start-placeholder=\"开始日期\"\n                  end-placeholder=\"结束日期\">\n                </el-date-picker>\n              </div>\n            </el-form-item>\n\n            <el-form-item label=\"平台\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.platform\" placeholder=\"请选择活动区域\">\n                <el-option label=\"区域一\" value=\"shanghai\"></el-option>\n                <el-option label=\"区域二\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n\n            <el-form-item label=\"单据状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择活动区域\">\n                <el-option label=\"区域一\" value=\"shanghai\"></el-option>\n                <el-option label=\"区域二\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n\n            <el-form-item label=\"对账状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.checkState\" placeholder=\"请选择活动区域\">\n                <el-option label=\"保存\" value=\"shanghai\"></el-option>\n                <el-option label=\"区域二\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n\n            <el-form-item label=\"差异对帐原因\" :label-width=\"formLabelWidth\">\n              <el-input size=\"small\" v-model=\"form.remarks\" placeholder=\"请输入差异对帐原因\"></el-input>\n            </el-form-item>\n          </el-form>\n          <div slot=\"footer\" class=\"dialog-footer\">\n            <el-button size=\"mini\" @click=\"cancel\">取 消</el-button>\n            <el-button size=\"mini\" type=\"primary\" @click=\"dialogFormVisible = false\">确 定</el-button>\n          </div>\n        </el-dialog>\n      </template>\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n    export default {\n        name: 'batchDifferences',\n        data () {\n            return {\n              form: {\n                documentsType: '',//单据类型\n                time: '',//时间\n                platform: '',//平台\n                documentsState: '',//单据状态\n                checkState: '', //对账状态\n                remarks: '',//差异对帐原因\n              },\n              formLabelWidth: '120px'\n            }\n        },\n      computed:{\n          ...mapState({\n            dialogFromDifferences:state=>state.dialogFromDifferences\n          })\n        },\n      methods:{\n        cancel(){\n          this.$store.dispatch('dialogFromDifferences')\n        },\n        dialog_close(){\n          this.$store.dispatch('dialogFromDifferences')\n        }\n      }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/components/filterBox/batchStatement.vue",
    "content": "<template>\n    <div class=\"batch-statement\">\n      <template>\n        <el-dialog title=\"条件查询\" :close-on-click-modal=\"false\" :append-to-body=\"true\" :close-on-press-escape=\"false\" :visible.sync=\"dialogFromStatement\" :before-close=\"dialog_close\" :modal-append-to-body=\"false\">\n          <el-form :model=\"form\">\n            <el-form-item label=\"业务日期\" :label-width=\"formLabelWidth\">\n              <div class=\"block\">\n                <el-date-picker\n                  size=\"small\"\n                  v-model=\"form.time\"\n                  type=\"daterange\"\n                  range-separator=\"至\"\n                  start-placeholder=\"开始日期\"\n                  end-placeholder=\"结束日期\">\n                </el-date-picker>\n              </div>\n            </el-form-item>\n            <el-form-item label=\"单据状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择单据状态\">\n                <el-option label=\"全部\" value=\"\"></el-option>\n                <el-option label=\"保存\" value=\"Save\"></el-option>\n                <el-option label=\"审核\" value=\"Audited\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"对账状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.checkState\" placeholder=\"请选择对账状态\">\n                <el-option label=\"全部\" value=\"\"></el-option>\n                <el-option label=\"未对账\" value=\"UnSettled\"></el-option>\n                <el-option label=\"部份对账\" value=\"Part\"></el-option>\n                <el-option label=\"全部对账\" value=\"Completely\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"是否差异处理\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.differenceStatus\" placeholder=\"请选择是否差异处理\">\n                <el-option label=\"全部\" value=\"\"></el-option>\n                <el-option label=\"是\" value=\"Y\"></el-option>\n                <el-option label=\"否\" value=\"N\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"退款状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.refundStatus\" placeholder=\"请选择退款状态\">\n                <el-option label=\"全部\" value=\"\"></el-option>\n                <el-option label=\"未退款\" value=\"UnSettled\"></el-option>\n                <el-option label=\"部分退款\" value=\"Part\"></el-option>\n                <el-option label=\"全部退款\" value=\"Completely\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"来源平台\" :label-width=\"formLabelWidth\">\n              <el-input size=\"mini\" v-model=\"form.platform\" placeholder=\"请输入内容\"></el-input>\n            </el-form-item>\n            <el-form-item label=\"销售公司\" :label-width=\"formLabelWidth\">\n              <el-input size=\"mini\" v-model=\"form.company\" placeholder=\"请输入内容\"></el-input>\n            </el-form-item>\n          </el-form>\n          <div slot=\"footer\" class=\"dialog-footer\">\n            <el-button size=\"mini\" type=\"primary\" @click=\"determine\">确 定</el-button>\n            <el-button size=\"mini\" @click=\"cancel\">取 消</el-button>\n          </div>\n        </el-dialog>\n      </template>\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n    export default {\n        name: 'batchStatement',\n        data () {\n            return {\n              form: {\n                time: '',//时间\n                documentsState: '',//单据状态\n                checkState: '', //对账状态\n                differenceStatus: '',//差异处理状态\n                refundStatus: '',//退款状态\n                platform: '',//平台\n                company: '',//公司\n              },\n              formLabelWidth: '120px',\n            }\n        },\n      computed:{\n        ...mapState({\n          dialogFromStatement:state=>state.dialogFromStatement\n        })\n      },\n      methods: {\n        cancel(){ //取消\n          this.$store.dispatch('dialogFromStatement')\n        },\n        determine(){ //确定\n          console.log(this.form);\n        },\n        dialog_close() {\n          this.$store.dispatch('dialogFromStatement')\n        },\n      }\n    }\n</script>\n<style scoped>\n  .el-dialog .el-input{\n    max-width: 300px;\n  }\n\n\n</style>\n"
  },
  {
    "path": "src/components/filterBox/batchUnAudit.vue",
    "content": "<template>\n    <div class=\"batch-UnAudit\">\n      <template>\n        <el-dialog title=\"批量反审核\" :close-on-click-modal=\"false\" :append-to-body=\"true\" :close-on-press-escape=\"false\" :visible.sync=\"dialogFromUnAudit\" :before-close=\"dialog_close\">\n          <el-form :model=\"form\">\n            <el-form-item label=\"单据类型\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.documentsType\" placeholder=\"请选择活动区域\">\n                <el-option label=\"平台订单\" value=\"shanghai\"></el-option>\n                <el-option label=\"手工订单\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"业务日期\" :label-width=\"formLabelWidth\">\n              <div class=\"block\">\n                <el-date-picker\n                  size=\"small\"\n                  v-model=\"form.time\"\n                  type=\"daterange\"\n                  range-separator=\"至\"\n                  start-placeholder=\"开始日期\"\n                  end-placeholder=\"结束日期\">\n                </el-date-picker>\n              </div>\n            </el-form-item>\n            <el-form-item label=\"平台\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.platform\" placeholder=\"请选择活动区域\">\n                <el-option label=\"区域一\" value=\"shanghai\"></el-option>\n                <el-option label=\"区域二\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"单据状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择活动区域\">\n                <el-option label=\"区域一\" value=\"shanghai\"></el-option>\n                <el-option label=\"区域二\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n            <el-form-item label=\"对账状态\" :label-width=\"formLabelWidth\">\n              <el-select size=\"small\" v-model=\"form.checkState\" placeholder=\"请选择活动区域\">\n                <el-option label=\"保存\" value=\"shanghai\"></el-option>\n                <el-option label=\"区域二\" value=\"beijing\"></el-option>\n              </el-select>\n            </el-form-item>\n\n          </el-form>\n          <div slot=\"footer\" class=\"dialog-footer\">\n            <el-button size=\"mini\" @click=\"cancel\">取 消</el-button>\n            <el-button size=\"mini\" type=\"primary\" @click=\"dialogFormVisible = false\">确 定</el-button>\n          </div>\n        </el-dialog>\n      </template>\n    </div>\n</template>\n\n<script>\n    import {mapState} from 'vuex'\n    export default {\n        name: 'batchUnAudit',\n        data () {\n            return {\n              form: {\n                documentsType: '',//单据类型\n                time: '',//时间\n                platform: '',//平台\n                documentsState: '',//单据状态\n                checkState: '',//对账状态\n              },\n              formLabelWidth: '120px'\n            }\n        },\n      computed:{\n        ...mapState({\n          dialogFromUnAudit:state=>state.dialogFromUnAudit\n        })\n      },\n      methods:{\n        cancel() {\n            this.$store.dispatch('dialogFromUnAudit')\n        },\n        dialog_close() {\n          this.$store.dispatch('dialogFromUnAudit')\n        },\n      }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/components/getWebSocket/getWebSocket.vue",
    "content": "<template>\n  <div class=\"batch-statement\">\n    <template>\n      <el-dialog width=\"42%\" style=\"min-height:100px;\" title=\"提示\" :close-on-click-modal=\"false\" :show-close=\"false\" :close-on-press-escape\t=\"false\" :visible.sync=\"dialoggetWebSocket\" :before-close=\"dialog_close\" :modal-append-to-body=\"false\">\n        <div class=\"progressClass\">\n          <el-progress :text-inside=\"true\" status=\"socketStatus\" :stroke-width=\"18\" :percentage=\"socketSchedule\"></el-progress>\n        </div>\n        <div style=\"margin-top:10px;height:15px;text-align:center\">{{socketDatatext}}</div>\n        <div slot=\"footer\" class=\"dialog-footer\">\n          <el-button size=\"mini\" type=\"primary\" @click=\"determine\" :disabled=\"guanbi\">确 定</el-button>\n        </div>\n      </el-dialog>\n    </template>\n  </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  import api from '../../axios/url.js'\n  export default {\n    name: 'getWebSocket',\n    data () {\n      return {\n        socketDatatext:'',  //文字\n        socketStatus:'', //状态\n        guanbi:false,\n        socketSchedule:70, //百分比\n      }\n    },\n    computed:{\n      ...mapState({\n        dialoggetWebSocket:state=>state.dialoggetWebSocket\n      })\n    },\n    watch: {\n      $route(to, from) {\n        //由于路由的原因，现在还有一种websocket可能失效，从对账记录到订单列表：to  orderReceivable from verifyReceivablesRecord\n        console.log(to);\n        //到订单查询，除了自动对账界面和对账记录界面\n        if(to.fullPath =='/orderReceivable'){\n          if(from.fullPath !='/verifyAutomate'&&from.fullPath !='/verifyReceivablesRecord'){\n            this.websockets();\n          }\n        }\n\n        //到对账记录界面 来自订单查询\n        if(to.fullPath =='/verifyReceivablesRecord'){\n          if(from.fullPath =='/orderReceivable'){\n              this.close();\n          }\n        }\n        //到自动对账，来自交易流水\n        if(to.fullPath =='/verifyAutomate'){\n          if(from.fullPath =='/transactionFlow'){\n            this.close();\n          }\n          this.websockets();\n        }\n        //来自订单上传\n        if(from.fullPath =='/orderUpload'){\n          this.close();\n        }\n\n        //来自自动对账，到交易流水\n        if(from.fullPath =='/verifyAutomate'){\n          if(to.fullPath =='/transactionFlow'){\n            this.close();\n          }\n        }\n      }\n    },\n    created: function(){\n      this.websockets();\n    },\n    methods: {\n      websockets() {\n        var socket=localStorage.getItem(\"socket\");\n        var that = this;\n        let  websocket=new WebSocket(api.ws+ \"/ws\");\n        if(socket!=\"open\"){\n          websocket.onopen = function(evnt) {\n            console.log(\"open websocket\");\n            localStorage.setItem(\"socket\",\"open\");\n            websocket.send('Holle');\n          };\n        }\n        //发送消息\n        websocket.onmessage = function(event) {\n          var data = JSON.parse(event.data);\n          if(JSON.parse(event.data)!={}&&JSON.parse(event.data)!=''&&JSON.parse(event.data)!='undefined '){\n            that.socketSchedule = parseFloat(JSON.parse(event.data).process);\n          }\n          that.socketStatus = JSON.parse(event.data).status;\n          that.socketDatatext = JSON.parse(event.data).text;\n          if (JSON.parse(event.data).status === 'Ongoing') {\n            that.guanbi = true;\n          } else {\n            that.guanbi = false;\n          }\n        }\n        websocket.onclose = function(evnt) {\n          localStorage.setItem(\"socket\",\"close\");\n          console.log(\" clsoe websocket\");\n        };\n        //路由切换\n        this.$router.afterEach(function () {\n          localStorage.setItem(\"socket\",\"close\");\n          websocket.close();\n        })\n        this.close=function(){\n          localStorage.setItem(\"socket\",\"close\");\n          websocket.close();\n        }\n      },\n      shutDown(){\n      },\n      cancel(){ //取消\n        this.$store.dispatch('dialoggetWebSocket')\n      },\n      determine(){ //确定\n        this.$store.dispatch('dialoggetWebSocket')\n        this.$emit('socketStatus',this.guanbi)\n        //清空\n        this.socketDatatext ='';  //文字\n        this.socketStatus =''; //状态\n        this.guanbi = false;\n        this.socketSchedule =0;\n//        location.reload();\n      },\n      dialog_close() {\n        this.$store.dispatch('dialoggetWebSocket')\n      },\n      getCookie(name){\n        name = name + \"=\"\n        var start = document.cookie.indexOf(name),\n          value = null;\n        if(start>-1){\n          var end = document.cookie.indexOf(\";\",start);\n          if(end == -1){\n            end = document.cookie.length;\n          }\n          value = document.cookie.substring(start+name.length,end);\n        }\n        return value;\n      }\n    }\n  }\n</script>\n<style scoped>\n  .el-dialog .el-input{\n    max-width: 300px;\n  }\n  .progressClass{\n    margin: auto 40px;\n  }\n\n</style>\n\n\n"
  },
  {
    "path": "src/components/head/head.vue",
    "content": "<template>\n  <header class=\"head\">\n    <!-- 折叠按钮 -->\n    <div class=\"collapse-btn\" @click=\"getCollapse\">\n      <i class=\"el-icon-menu\"></i>\n    </div>\n    <div class=\"logo\">{{$t('h.system')}}</div>\n\n    <div class=\"company\">\n    <template >\n      <el-select v-model=\"companyValue\" placeholder=\"请选择\"  size=\"small\" @change=\"getCompanyValue(companyValue)\">\n        <el-option\n          v-for=\"(item,index) in companyList\"\n          :key=\"index\"\n          :label=\"item.label\"\n          :value=\"item.value\">\n        </el-option>\n      </el-select>\n    </template>\n    </div>\n    <div class=\"top-nav\">\n      <!--全屏显示-->\n      <template>\n        <el-tooltip class=\"full\" effect=\"dark\" :content=\"$t('h.full')\" placement=\"bottom\">\n          <div>\n            <i class=\"el-icon-rank\"></i>\n          </div>\n        </el-tooltip>\n      </template>\n\n      <!--消息中心-->\n      <template>\n        <el-tooltip class=\"news\" effect=\"dark\" :content=\"message?`有${message}条未读消息`:`消息中心`\" placement=\"bottom\">\n          <div>\n            <i class=\"el-icon-bell\"></i>\n            <span class=\"msg\" v-if=\"message\"></span>\n          </div>\n        </el-tooltip>\n      </template>\n      <!--退出or设置-->\n      <template>\n        <el-dropdown placement=\"bottom\">\n          <span class=\"el-dropdown-link\">\n            <i class=\"el-icon-setting el-icon--right\"></i>\n          </span>\n          <el-dropdown-menu slot=\"dropdown\">\n            <el-dropdown-item>关于我</el-dropdown-item>\n            <el-dropdown-item>设置</el-dropdown-item>\n            <el-dropdown-item>退出</el-dropdown-item>\n          </el-dropdown-menu>\n        </el-dropdown>\n      </template>\n\n      <template>\n        <div class=\"full\" @click=\"changeLangEvent()\">\n          <span class=\"lan\">{{language}}</span>\n        </div>\n      </template>\n\n    </div>\n  </header>\n</template>\n<script>\n  import {mapState,mapActions} from 'vuex';\n  import {getCompany} from '../../axios/api'\n    export default {\n        name: 'Head',\n        data () {\n            return {\n              message:1,//消息\n//              companyValue:null,\n              companyList:[\n                {\n                  value: '选项1',\n                  label:'公司一',\n                },\n                {\n                  value: '选项2',\n                  label:'公司二',\n                }\n              ],\n              language: localStorage.getItem(\"lang\") || \"EN\"\n            }\n        },\n      mounted(){\n\n      },\n      computed: {\n        ...mapState({\n          companyValue:state=>state.companyValue,\n        }),\n      },\n      methods:{\n        ...mapActions([\"getCollapse\", \"getCompanyValue\"]),//简写\n         changeLangEvent() {\n             console.log(this.$i18n);\n             console.log(1111);\n              // this.baseLan()\n              if (this.language == \"EN\") {\n                localStorage.setItem(\"locale\", \"zh\");\n                this.$i18n.locale = localStorage.getItem(\"locale\");\n                this.$message({\n                  message: \"切换为中文！\",\n                  type: \"success\"\n                });\n                localStorage.setItem(\"lang\", \"ZH\");\n                this.language = \"ZH\";\n                location.reload();\n              } else if (this.language == \"ZH\") {\n                localStorage.setItem(\"locale\", \"en\");\n                this.$i18n.locale = localStorage.getItem(\"locale\");\n                this.$message({\n                  message: \"Switch to English!\",\n                  type: \"success\"\n                });\n                localStorage.setItem(\"lang\", \"EN\");\n                this.language = \"EN\";\n                location.reload();\n              }\n          }\n      }\n    }\n</script>\n<style scoped>\n  .lan {\n    display: inline-block;\n    cursor: pointer;\n    width: 22px;\n    height: 22px;\n    font-size: 12px;\n    line-height: 22px;\n    text-align: center;\n    background: #fff;\n    border-radius: 50%;\n    color: #24292e;\n  }\n</style>\n"
  },
  {
    "path": "src/components/search/Search.vue",
    "content": "<template>\n    <div class=\"search\">\n     <div>\n       <!-- 单一查询 -->\n        <div style=\"float: left;padding:10px;z-index:33;\">\n            <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"el-table__header\" style=\"width:450px;float: left;\">\n                <tbody class=\"el-table--scrollable-y\" id=\"test\">\n                    <tr class=\"el-table__row\" v-for=\"(list,index) in reconDanyiIquireList\" :key=\"index\">\n                        <td width=\"80\">\n                            <div>\n                                <template>\n                                <el-select v-model=\"list.selected\" @change='getMore(index)' filterable  size=\"mini\" placeholder=\"请选择\">\n                                    <el-option\n                                            v-for=\"item in optionData\"\n                                            :label=\"item.name\"\n                                            :value=\"item.name\"\n                                            :key=\"item.name\">\n                                    </el-option>\n                                </el-select>\n                            </template>\n                            </div>\n                        </td>\n                        <td width=\"80\">\n                            <div style=\"margin-left:4px;\">\n                                <template>\n                                <el-select v-model=\"list.comparing\" @change=\"comparval\" filterable size=\"mini\" placeholder=\"请选择\">\n                                    <el-option\n                                            v-for=\"item in compareJsonlist\"\n                                            :key=\"item.name\"\n                                            :label=\"item.name\"\n                                            :value=\"item.name\">\n                                    </el-option>\n                                </el-select>\n                            </template>\n                          </div>\n                        </td>\n                        <td width=\"80\">\n\n                            <div style=\"margin-left:4px;\">\n                                <template>\n                                <el-select v-show=\"list.logsSelect\" v-model=\"list.valSelect\" filterable  size=\"mini\"  placeholder=\"请选择\">\n                                    <el-option\n                                            v-for=\"item in ValData\"\n                                            :label=\"item.name\"\n                                            :value=\"item.name\"\n                                            :key=\"item.name\">\n                                    </el-option>\n                                </el-select>\n                                    <el-select v-show=\"list.pyType\" v-model=\"list.platId\"\n                                                filterable size=\"mini\" placeholder=\"请选择\">\n                                        <el-option\n                                                v-for=\"item in platData\"\n                                                :label=\"item.name\"\n                                                :value=\"item.id\"\n                                                :key=\"item.id\">\n                                        </el-option>\n                                    </el-select>\n                                </template>\n                                <template>\n                                  <el-date-picker\n                                  style=\"width:150px;\"\n                                  size=\"mini\"\n                                    v-show=\"list.logsDate\"\n                                    :disabled=\"disdate\"\n                                    v-model=\"list.valDate\"\n                                    type=\"date\"\n                                    value-format=\"yyyy-MM-dd\"\n                                    placeholder=\"选择日期\">\n                                  </el-date-picker>\n                                </template>\n                            </div>\n                            <el-input v-model=\"list.valText\" v-show=\"list.logsText\" size=\"mini\" placeholder=\"请输入\"></el-input>\n                        </td>\n                    </tr>\n                </tbody>\n            </table>\n            <el-button type=\"primary\" style=\"margin-left:5px;\" @click=\"singleInCon\" size=\"mini\">查询</el-button>\n        </div>\n       <el-button type=\"text\" @click=\"openfilter\"><i class=\"el-icon-search\"></i>高级搜索</el-button>\n       <div class=\"search-body\">\n         <template>\n           <el-dialog width=\"69%\"  title=\"高级搜索\" :modal-append-to-body=\"false\" :close-on-click-modal=\"false\" :visible.sync=\"dialogFormVisible\">\n             <!--</el-form-item>-->\n             <div class=\"search-contain\">\n               <div class=\"left-search-body\">\n                 <template>\n                   <el-row>\n                     <el-button size=\"small\" @click=\"savelist\">保存</el-button>\n                     <el-button size=\"small\" @click=\"asSave\" >另存</el-button>\n                     <el-button size=\"small\"  @click=\"rename($event)\">重命名</el-button>\n                     <el-button size=\"small\" @click=\"deleteKis\">删除</el-button>\n                   </el-row>\n                 </template>\n                 <div class=\"guolvList\">\n                  <ul>\n                      <li v-for=\"(item,index) in Listdata\" :class=\"{active1:index == num}\" :key=\"index\" @click=\"tabName(item,index)\">\n                          {{item.schemenaem}}\n                      </li>\n                  </ul>\n                  </div>\n              </div>\n               <div class=\"right-search-body\">\n                 <template>\n                   <el-row>\n                     <el-button size=\"small\" type=\"primary\" @click=\"addTr\">新增行</el-button>\n                     <el-button size=\"small\" type=\"success\" @click=\"deleteTr\">删除行</el-button>\n                     <el-button size=\"small\" type=\"danger\" @click=\"AlldeleteTr\">全部删除</el-button>\n                     <el-button size=\"small\" type=\"warning\" @click=\"insertTr\">插入行</el-button>\n                   </el-row>\n                     <div class=\"el-table el-table--fit el-table--border el-table--scrollable-x el-table--scrollable-y el-table--enable-row-hover el-table--enable-row-transition\" style=\"width: 100%; height: 280px;\">\n                        <div class=\"el-table__header-wrapper\">\n                            <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"el-table__header\" style=\"width:100%;\">\n                                <thead class=\"has-gutter\">\n                                    <tr class=\"\">\n\n                                        <th colspan=\"1\" rowspan=\"1\" width=\"140\">\n                                            <div class=\"cell\">\n                                                字段\n                                            </div>\n                                        </th>\n                                        <th colspan=\"1\" rowspan=\"1\" width=\"140\">\n                                            <div class=\"cell\">\n                                                比较\n                                            </div>\n                                        </th>\n                                        <th colspan=\"1\" rowspan=\"1\" width=\"140\">\n                                            <div class=\"cell\">\n                                                值\n                                            </div>\n                                        </th>\n                                        <th colspan=\"1\" rowspan=\"1\" width=\"140\">\n                                            <div class=\"cell\">\n                                                逻辑\n                                            </div>\n                                        </th>\n\n                                    </tr>\n                                </thead>\n                                <tbody class=\"el-table--scrollable-y\" id=\"test\">\n                                    <tr class=\"el-table__row\" v-for=\"(list,index) in reconciliationPlanInfoList\" :key=\"index\">\n\n                                        <td width=\"140\">\n                                            <div>\n                                                <template>\n                                                <el-select v-model=\"list.selected\" @change='getValue(index)' filterable  size=\"mini\" placeholder=\"请选择\">\n                                                    <el-option\n                                                            v-for=\"item in optionData\"\n                                                            :label=\"item.name\"\n                                                            :value=\"item.name\"\n                                                            :key=\"item.name\">\n                                                    </el-option>\n                                                </el-select>\n                                            </template>\n\n                                            </div>\n                                        </td>\n                                        <td width=\"140\">\n                                            <div>\n                                                <template>\n                                                <el-select v-model=\"list.comparing\" @change=\"comparval\" filterable size=\"mini\" placeholder=\"请选择\">\n                                                    <el-option\n                                                            v-for=\"item in compareJsonlist\"\n                                                            :key=\"item.name\"\n                                                            :label=\"item.name\"\n                                                            :value=\"item.name\">\n                                                    </el-option>\n                                                </el-select>\n                                            </template>\n\n                                            </div>\n\n                                        </td>\n                                        <td width=\"140\">\n                                            <div>\n                                              <template>\n                                                <el-select v-show=\"list.logsSelect\" v-model=\"list.valSelect\" filterable  size=\"mini\"  placeholder=\"请选择\">\n                                                    <el-option\n                                                            v-for=\"item in ValData\"\n                                                            :label=\"item.name\"\n                                                            :value=\"item.name\"\n                                                            :key=\"item.name\">\n                                                    </el-option>\n                                                </el-select>\n                                                <el-select v-show=\"list.pyType\" v-model=\"list.platId\" filterable size=\"mini\" placeholder=\"请选择\">\n                                                    <el-option\n                                                            v-for=\"item in platData\"\n                                                            :label=\"item.name\"\n                                                            :value=\"item.id\"\n                                                            :key=\"item.id\">\n                                                    </el-option>\n                                                </el-select>\n                                            </template>\n                                              <template>\n                                                <el-date-picker\n                                                size=\"mini\"\n                                                  v-show=\"list.logsDate\"\n                                                  :disabled=\"disdate\"\n                                                  v-model=\"list.valDate\"\n                                                  type=\"date\"\n                                                  value-format=\"yyyy-MM-dd\"\n                                                  placeholder=\"选择日期\">\n                                                </el-date-picker>\n                                              </template>\n                                              <el-input v-model=\"list.valText\" v-show=\"list.logsText\" size=\"mini\" placeholder=\"请输入\"></el-input>\n                                            </div>\n                                        </td>\n                                        <td width=\"140\">\n                                            <div>\n                                                <template>\n                                                <el-select v-model=\"list.logic\" filterable  size=\"mini\" placeholder=\"请选择\">\n                                                    <el-option\n                                                            v-for=\"item in logsgetData\"\n                                                            :label=\"item.text\"\n                                                            :key=\"item.text\"\n                                                            :value=\"item.text\">\n                                                    </el-option>\n                                                </el-select>\n                                            </template>\n                                            </div>\n                                        </td>\n                                    </tr>\n                                </tbody>\n                            </table>\n                        </div>\n                    </div>\n                    <div>\n                        <div style=\"line-height:25px;height:30px;margin:10px auto;\">\n                            <div class=\"statusBottom\">\n                                <label class=\" col-md-4\">对账状态:</label>\n                                <div class=\"col-md-8\">\n                                    <template>\n                                    <el-select v-model=\"reconModel\" filterable size=\"mini\"\n                                                placeholder=\"请选择\">\n                                        <el-option\n                                                v-for=\"item in reconData\"\n                                                :label=\"item.name\"\n                                                :value=\"item.value\"\n                                                :key=\"item.value\">\n                                        </el-option>\n                                    </el-select>\n                                </template>\n\n                                </div>\n                            </div>\n                            <div class=\"statusBottom\">\n                                <label class=\" col-md-4\">单据状态:</label>\n                                <div class=\"col-md-8\">\n                                    <template>\n                                    <el-select v-model=\"statusinqu\" filterable size=\"mini\"\n                                                placeholder=\"请选择\">\n                                        <el-option\n                                                v-for=\"item in statusData\"\n                                                :label=\"item.name\"\n                                                :value=\"item.value\"\n                                                :key=\"item.value\">\n                                        </el-option>\n                                    </el-select>\n                                </template>\n\n                                </div>\n                            </div>\n                        </div>\n\n                        <div style=\"line-height:25px;height:30px;margin:10px auto;\">\n                            <div class=\"statusBottom\">\n                                <label class=\" col-md-4\">退款状态:</label>\n                                <div class=\"col-md-8\">\n                                    <template>\n                                    <el-select v-model=\"refuncomm\" filterable size=\"mini\" placeholder=\"请选择\">\n                                        <el-option\n                                                v-for=\"item in refundData\"\n                                                :label=\"item.name\"\n                                                :value=\"item.value\"\n                                                :key=\"item.value\">\n                                        </el-option>\n                                    </el-select>\n                                </template>\n\n                                </div>\n                            </div>\n                            <div class=\"statusBottom\">\n                                <label class=\" col-md-4\">差异状态:</label>\n                                <div class=\"col-md-8\">\n                                    <template>\n                                    <el-select v-model=\"chayiD\" filterable size=\"mini\" placeholder=\"请选择\">\n                                        <el-option\n                                                v-for=\"item in chayiData\"\n                                                :label=\"item.name\"\n                                                :value=\"item.value\"\n                                                :key=\"item.value\">\n                                        </el-option>\n                                    </el-select>\n                                </template>\n\n                                </div>\n                            </div>\n                        </div>\n                    </div>\n\n                 </template>\n               </div>\n             </div>\n             <div slot=\"footer\" class=\"dialog-footer\">\n               <div style=\"float: left;\">\n                      <template>\n                          <el-checkbox v-model=\"defaultScheme\" v-show=\"moren\" @change=\"checkClick\">默认方案</el-checkbox>\n                      </template>\n                  </div>\n               <el-button  size=\"small\" @click=\"queryCancel\">取 消</el-button>\n               <el-button type=\"primary\" size=\"small\" @click=\"determine\">确 定</el-button>\n             </div>\n           </el-dialog>\n           <!-- <el-button type=\"text\" @click=\"dialogVisible = true\">点击打开 Dialog</el-button> -->\n              <el-dialog\n                title=\"保存方案\"\n                :visible.sync=\"dialogSave\"\n                width=\"30%\">\n                <div style=\"margin:0 18%;\">\n                  <label>输入方案名:</label>\n                  <el-input size=\"mini\" v-model=\"savename\" @change=\"projectName($event)\"></el-input>\n                </div>\n                <span slot=\"footer\" class=\"dialog-footer\">\n                  <el-button @click=\"saveCacel\">取 消</el-button>\n                  <el-button type=\"primary\" @click=\"saveQu\">确 定</el-button>\n                </span>\n              </el-dialog>\n         </template>\n       </div>\n     </div>\n    </div>\n</template>\n\n<script>\n    export default {\n        name: 'HelloWorld',\n        data () {\n            return {\n              dialogSave:false,//方案模态\n                dialogFormVisible: false,//高级查询模态\n                form: {\n                  name: '',\n                  region: '',\n                  date1: '',\n                  date2: '',\n                  delivery: false,\n                  type: [],\n                  resource: '',\n                  desc: ''\n                },\n                formLabelWidth: '120px',\n                //高级查询\n                reconciliationPlanInfoList: [{\n                  'selected': '',\n                  'comparing': '',\n                  'logic': '',\n                  logsSelect: false, // 值下拉\n                  logsText: true, //值输入\n                  logsDate: false, //日期\n                  pyType: false,\n                  'valDate': '',\n                  'valSelect': '',\n                  'valText': '',\n                  'platId': '', //活的\n                  advancedName: '',\n                  queryType: '',\n                  'reconStatus': '',\n                  'invoiceStatus': '',\n                  'differenseStatus': '',\n                  'refundStatus': '',\n                  'saveName': '',\n                  'mark': '',\n                  'uuid': '',\n                  'pageNumber': 1, //第几页\n                  'pageSize': 100, //每页展示数\n                  'selectPageNumber': ''\n              }],\n              //单一\n              reconDanyiIquireList: [{\n                  'selected': '',\n                  'comparing': '',\n                  'logic': '',\n                  logsSelect: false, // 值下拉\n                  logsText: true, //值输入\n                  logsDate: false, //日期\n                  pyType: false,\n                  'valDate': '',\n                  'valSelect': '',\n                  'valText': '',\n                  'platId': '', //活的\n                  advancedName: '',\n                  queryType: '',\n                  'reconStatus': '',\n                  'invoiceStatus': '',\n                  'differenseStatus': '',\n                  'refundStatus': '',\n                  'saveName': '',\n                  'mark': '6',\n                  'uuid': '',\n                  'pageNumber': 1, //第几页\n                  'pageSize': 100, //每页展示数\n                  'selectPageNumber': ''\n              }],\n              logsgetData: [{\n                  text: '并且'\n              }, {\n                  text: '或者'\n              }],\n              //重写model\n              chayiD: '',\n              refuncomm: '',\n              statusinqu: '',\n              reconModel: '',\n\n              chayiData: [{\n                      value: '',\n                      name: '全部'\n                  },\n                  {\n                      value: 'Y',\n                      name: '是'\n                  },\n                  {\n                      value: 'N',\n                      name: '否'\n                  },\n              ],\n              refundData: [{\n                      value: '',\n                      name: '全部'\n                  },\n                  {\n                      value: 'UnRefund',\n                      name: '未退款'\n                  },\n                  {\n                      value: 'PartRefund',\n                      name: '部分退款'\n                  },\n                  {\n                      value: 'CompleteRefund',\n                      name: '完全退款'\n                  },\n                  {\n                      value: 'RefundException',\n                      name: '退款异常'\n                  },\n              ],\n\n              statusData: [{\n                      value: '',\n                      name: '全部'\n                  },\n                  {\n                      value: 'Save',\n                      name: '保存'\n                  },\n                  {\n                      value: 'Audited',\n                      name: '审核'\n                  },\n                  {\n                      value: 'HandClose',\n                      name: '手工关闭'\n                  },\n                  {\n                      value: 'AtuoClose',\n                      name: '自动关闭'\n                  },\n              ],\n              reconData: [{\n                      value: '',\n                      name: '全部'\n                  },\n                  {\n                      value: 'UnSettled',\n                      name: '未对账'\n                  },\n                  {\n                      value: 'Part',\n                      name: '部分对账'\n                  },\n                  {\n                      value: 'Completely',\n                      name: '完全对账'\n                  },\n                  {\n                      value: 'Exception',\n                      name: '异常'\n                  },\n              ],\n              selected: '',\n              optionData:[],//一级data\n              compareJsonlist: [], //二级\n              ValData: [], //三级\n              platData:[], //四级\n              startText: '',\n              saveTitle: false, //模态\n              saveTitle1: false, //模态\n              pagination: true, //分页\n              paginations: false, //高级分页\n              savename: '', //保存的名字\n              disdate: false,\n              Listdata: [], //保存列表\n              num: -1,\n              proname: '', //方案名\n              renId: '', //方案uuid\n              userId: '', //方案userid\n              renamedele: '',\n              idenName:'', //重命名标识\n              savename1: '',\n              defaultScheme: false, //默认方案\n              indexme: '', //这是查询列表index\n              indexnum:null, //接口index\n              moren:true, //默认方案显示隐藏\n            }\n        },\n      methods:{\n\n        //模态框\n        openfilter(){\n          this.dialogFormVisible = true;\n        },\n\n        //select change 获取二级列表\n        getMore(index){\n\n        },\n        //高级查询一级\n        getValue(){\n\n        },\n        //获取三级列表\n        comparval(){\n\n        },\n        //高级查询取消\n        queryCancel(){\n          this.dialogFormVisible = false;\n        },\n        //高级查询确定\n        determine(){\n          if (this.reconciliationPlanInfoList.length == 0) {\n            this.addRow();\n          }\n          this.reconciliationPlanInfoList[0].differenseStatus = this.chayiD;\n          this.reconciliationPlanInfoList[0].reconStatus = this.reconModel;\n          this.reconciliationPlanInfoList[0].refundStatus = this.refuncomm;\n          this.reconciliationPlanInfoList[0].invoiceStatus = this.statusinqu;\n          var data = this.reconciliationPlanInfoList;\n          //组件通讯\n          this.$emit('orderSearchs', data);  //单据 --- 订单\n          this.dialogFormVisible = false;\n        },\n        //方案名\n        projectName(){\n\n        },\n        //默认方案\n        checkClick(){\n\n        },\n        //方案取消\n        saveCacel(){\n\n        },\n        //方案确定\n        saveQu(){\n\n        },\n        //单一查询确认\n        singleInCon(){\n\n        },\n        //LEFT 方案list\n        //保存方案\n        savelist(){\n\n        },\n        //另存\n        asSave(){\n\n        },\n        //重命名\n        rename(){\n\n        },\n        //删除\n        deleteKis(){\n\n        },\n\n        //RIGHT 增删改查\n        //新增\n        addTr(){\n          var newIndex = this.reconciliationPlanInfoList.length;\n          var tr = {\n            index: newIndex,\n            'selected': '',\n            'comparing': '',\n            'logic': '',\n            logsSelect: false, // 值下拉\n            logsText: true, //值输入\n            logsDate: false, //日期\n            pyType: false,\n            'valDate': '',\n            'valSelect': '',\n            'valText': '',\n            'platId': '', //活的\n            advancedName: '',\n            queryType: '',\n            'saveName': '',\n            'mark': '',\n            'pageNumber': 1, //第几页\n            'pageSize': 100, //每页展示数\n          };\n          this.reconciliationPlanInfoList.push(tr);\n        },\n        //删除\n        deleteTr(){\n          this.reconciliationPlanInfoList.splice(index, 1);\n        },\n        //全部删除\n        AlldeleteTr(){\n          this.reconciliationPlanInfoList.splice(index);\n        },\n        //插入\n        insertTr(){\n            var tr = {\n            'selected': '',\n            'comparing': '',\n            'valDate': '',\n            'valSelect': '',\n            'valText': '',\n            'platId': '', //活的\n            logsSelect: false, // 值下拉\n            logsText: true, //值输入\n            logsDate: false,\n            pyType: false,\n            'logic': '',\n            advancedName: '',\n            queryType: '',\n            'saveName': '',\n            'mark': '',\n            'pageNumber': 1, //第几页\n            'pageSize': 100, //每页展示数\n          };\n          this.reconciliationPlanInfoList.push(tr);\n        },\n        //当全部删除行的时候\n        addRow: function() {\n              this.reconciliationPlanInfoList = [{\n                'selected': '',\n                'comparing': '',\n                'logic': '',\n                logsSelect: false, // 值下拉\n                logsText: true, //值输入\n                logsDate: false, //日期\n                pyType: false,\n                'valDate': '',\n                'valSelect': '',\n                'valText': '',\n                'platId': '', //活的\n                advancedName: '',\n                queryType: '',\n                'reconStatus': '',\n                'invoiceStatus': '',\n                'differenseStatus': '',\n                'refundStatus': '',\n                'saveName': '',\n                'mark': '',\n                'uuid': ''\n            }]\n        },\n\n\n      }\n    }\n</script>\n<style scoped>\n  .el-dialog__body{\n  padding: 10px;\n}\n.el-dialog .el-input{\n  width: 100%!important;\n}\n.statusBottom{\n  width: 50%;\n  float: left;\n}\n.col-md-4{\n  width: 33.333%;\n  float: left;\n}\n.col-md-8{\n  width: 66.66%;\n  float: left;\n}\n.guolvList {\n  clear: both;\n}\n\n.guolvList ul {\n  padding: 0;\n}\n\n.guolvList ul li {\n  padding-left: 20px;\n  cursor: pointer;\n  height: 30px;\n  line-height: 30px;\n  list-style: none;\n}\n.active1 {\n  background: #f5f5f5;\n  color: #2EAEF0;\n}\n.el-dialog__footer{\n  padding: 10px 20px;\n}\n</style>\n"
  },
  {
    "path": "src/components/sidebar/sidebar.vue",
    "content": "<template>\n    <div id=\"sidebar-left\">\n      <el-menu\n        :collapse=\"collapse\"\n        class=\"el-menu-vertical-demo\"\n        background-color=\"#24292e\"\n        text-color=\"#fff\"\n        active-text-color=\"#fff\"\n        unique-opened router>\n        <template v-for=\"(item) in sidebarInfo\">\n            <el-submenu :index=\"item.index\" :key=\"item.index\" v-if=\"item.subNav\">\n              <template slot=\"title\">\n                <i :class=\"item.icon\"></i>\n                <span>{{item.title}}</span>\n              </template>\n              <el-menu-item-group>\n                <!--<template slot=\"title\">分组一</template>-->\n                <el-menu-item :index=\"list.index\" v-for=\"(list) in item.subNav\" :key=\"list.index\">{{list.title}}</el-menu-item>\n              </el-menu-item-group>\n            </el-submenu>\n            <el-menu-item :index=\"item.index\" :key=\"item.index\" v-else>\n              <template>\n                <i :class=\"item.icon\"></i>\n                <span slot=\"title\">{{item.title}}</span>\n              </template>\n            </el-menu-item>\n        </template>\n      </el-menu>\n\n    </div>\n</template>\n\n<script>\n  import {mapState,mapActions} from 'vuex'\n    export default {\n        name: 'sidebar',\n        data () {\n            return {\n              indexPath:[],//保存点击过的页面路由信息\n              sidebarInfo:[//左侧导航条信息\n                {\n                  icon: 'el-icon-setting',\n                  index: 'chart',\n                  title: this.$t('h.account')\n                },\n                /**\n                 * inquiry 原始单据\n                 * **/\n                {\n                  icon: 'el-icon-tickets',\n                  index:'1',\n                  title: this.$t('h.invoice'),\n                  subNav:[\n                    {\n                      index:'/orderReceivable',\n                      title:'应收单据'\n                    },\n                    {\n                      index:'/transactionFlow',\n                      title:'交易流水'\n                    },\n                    {\n                      index:'/systemStatement',\n                      title:'系统对账单'\n                    },\n                    {\n                      index:'/bankFlow',\n                      title:'银行流水'\n                    }\n                  ]\n                },\n                /**\n                 * verifyPlatform 对账平台\n                 * **/\n                {\n                  icon: 'el-icon-date',\n                  index:'2',\n                  title: this.$t('h.reconciliation'),\n                  subNav:[\n                    {\n                      index: '/verifyReceivables',\n                      title: '收款对账'\n                    },\n                    {\n                      index: '/verifyAutomate',\n                      title: '自动对账'\n                    },\n                    {\n                      index:'/verifyBankStatement',\n                      title:'银行对账'\n                    }\n                  ]\n                },\n                /**\n                 * verifyRecord 对账记录\n                 * **/\n                {\n                  icon: 'el-icon-goods',\n                  title: this.$t('h.record'),\n                  index:'3',\n                  subNav:[\n                    {\n                      index:'/verifyReceivablesRecord',\n                      title:'收款记录'\n                    },\n                    {\n                      index:'/verifyBankStatementRecord',\n                      title:'银行记录'\n                    }\n                  ]\n                },\n                /**\n                 * reportForms报表\n                 * **/\n                {\n                  icon: 'el-icon-star-off',\n                  title: this.$t('h.report'),\n                  index:'4',\n                  subNav:[\n                    {\n                      index:'/OrderSummary',\n                      title:'订单执行总表'\n                    },\n                    {\n                      index:'/ReceivablesBalance',\n                      title:'收款对账余额表'\n                    }\n                  ]\n                },\n                {\n                  icon: 'el-icon-more',\n                  title: this.$t('h.setting'),\n                  index:'5',\n                  subNav:[\n                    {\n                      index:'/Structure',\n                      title:'平台管理'\n                    },\n                    {\n                      index:'/UpdatePWD',\n                      title:'修改密码'\n                    }\n                  ]\n                },\n              ]\n            }\n        },\n      computed:{\n        ...mapState({\n          collapse:state=>state.collapse\n        }),\n      },\n      methods:{\n\n      },\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/components/tabs/Tabs.vue",
    "content": "<template>\n    <div class=\"tabs\">\n      <template>\n        <el-tabs v-model=\"verifyStatus\" @tab-click=\"handleClick\">\n          <el-tab-pane v-for=\"(item,index) in tabs\" :label=\"item.label\" :name=\"item.name\" :key=\"index\"></el-tab-pane>\n        </el-tabs>\n      </template>\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  export default {\n        data () {\n            return {\n              tabs:[\n                {label:'全部', name:'Whole'},\n                {label:'已对账', name:'Completely'},\n                {label:'部份对账', name:'Part'},\n                {label:'未对账', name:'UnSettled'}\n              ]\n            }\n        },\n      watch: {\n        $route(newValue){\n            if(newValue){\n              this.$store.dispatch('getVerifyStatus','Whole');\n            }\n        }\n      },\n      computed: {\n        verifyStatus:{\n          get: function(){\n            return this.$store.state.verifyStatus\n          },\n          set: function(){\n\n          }\n        }\n      },\n      methods: {\n        handleClick(tab) {\n            this.$store.dispatch('getVerifyStatus',tab.name);\n        }\n      }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/components/tags/tags.vue",
    "content": "<template>\n    <div class=\"tags\" v-if=\"isShowTags\">\n      <div class=\"tag-box\">\n        <ul>\n          <li v-for=\"(item,index) in indexPath\"  :class=\"{'active':item.name === activeValue}\" :key=\"index\">\n            <router-link class=\"tab-item\"  :class=\"{active:activeValue===index}\"  :to=\"{path:item.path}\" >\n              <span>{{item.name}}</span>\n            </router-link>\n            <span class=\"tag_delete\" @click=\"closeTag(index)\"><i class=\"el-icon-close\"></i></span>\n          </li>\n        </ul>\n      </div>\n     <div class=\"tag-close-box\">\n       <el-dropdown @command=\"handleCommand\">\n        <span class=\"el-dropdown-link\">\n          标签设置<i class=\"el-icon-arrow-down el-icon--right\"></i>\n        </span>\n         <el-dropdown-menu slot=\"dropdown\">\n           <el-dropdown-item command=\"a\">关闭其它</el-dropdown-item>\n           <el-dropdown-item command=\"b\">关闭所有</el-dropdown-item>\n         </el-dropdown-menu>\n       </el-dropdown>\n     </div>\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n    export default {\n        data () {\n            return {\n              activeValue: '',//当前选中的路由名称\n              indexPath: [],//将点击过的路由信息添加进来\n              isShowTags: true, //标签设置 关闭所有隐藏\n            }\n        },\n      created(){\n        this.setTags(this.$route);//获取页面的路由信息\n      },\n      watch: {\n        $route(newValue){ //监听路由的变化获取最新的路由信息\n          this.setTags(newValue);\n        }\n      },\n      methods:{\n        setTags(route){ //判断刚刚点击的路由是否存在，如果不存在保存\n          this.activeValue = route.meta.title;\n          const isExist = this.indexPath.some(item=>{\n            return item.path === route.path\n          });\n\n          !isExist && this.indexPath.unshift({\n            name:route.meta.title,\n            path:route.path\n          });\n          console.log(this.indexPath.length);\n          if(this.indexPath.length > 8){\n            this.indexPath.splice(this.indexPath.length-1,1)\n          }\n\n        },\n        closeTag(index){\n            //删除当前点击的tag\n          const closePath = this.indexPath.splice(index,1)[0];\n          //获取删除后当前下标的tag(如果当前下标有选择当前否则选前一个)\n          const item =  this.indexPath[index]?this.indexPath[index]:this.indexPath[index-1];\n          if(item){//存在执行\n            //如果删除的的元素path等于当前路由path 执行改变路由\n            closePath.path === this.$route.path && this.$router.push(item.path);\n          }else{//不存在跳转到我的账户\n            this.$router.push('/chart');\n          }\n        },\n        handleCommand(command) {\n          console.log(command);\n            command === 'a' ? this.indexPath = [{name:this.$route.meta.title,path:this.$route.path}] : this.indexPath =[];\n          if(!this.indexPath.length){\n                this.isShowTags = false;\n            }\n        }\n      }\n    }\n</script>\n<style scoped>\n\n\n</style>\n"
  },
  {
    "path": "src/components/template/hzlDialog.vue",
    "content": "<template>\n  <div>\n    <el-dialog\n      :title=\"title\"\n      :visible.sync=\"dialog\"\n      :width=\"width\"\n      @close=\"$emit('update:show', false)\"\n      :show=\"show\">\n      <span>这是一段信息</span>\n      <span slot=\"footer\" class=\"dialog-footer\">\n        <!-- <el-button @click=\"dialog = false\">取 消</el-button>\n        <el-button type=\"primary\" @click=\"dialog = false\">确 定</el-button> -->\n      </span>\n    </el-dialog>\n  </div>\n</template>\n\n<script>\nexport default {\n  name: \"hzl-dialog\",\n  props: {\n    title: {\n      type: [String],\n      default: \"提示\"\n    },\n    width: {\n      type:[String],\n      default: \"40%\"   \n    },\n    show: {\n      type: Boolean,\n      default: false\n    }\n  }, \n  data() {\n    return {\n      dialog: this.show\n    }\n  },\n  watch: {\n    show() {\n      this.dialog = this.show;\n    }\n  },\n  methods: {\n  },\n  mounted() {\n\n  }\n}\n</script>\n<style scoped>\n\n</style>\n\n\n"
  },
  {
    "path": "src/components/template/hzlInput.vue",
    "content": "<template>\n  <div>\n    <el-input :type=\"type\" :size=\"size\" v-model=\"inputValue\" :placeholder=\"placeholder\" @change=\"inputChange\"></el-input>\n  </div>  \n</template>\n<script>\nexport default {\n  name: 'hzl-input',\n  // value type size placeholder\n  // props: ['value','type','size','placeholder'],\n  props:{\n    type: {\n      type: String,\n      default: 'text'\n    },\n    inputValue:{\n      type: String,\n      default: ''\n    },\n    size: {\n      type: String,\n      default: \"small\"\n    },\n    placeholder: {\n      type: String,\n      default: '请输入...'\n    }\n  },\n  data() {\n    return {\n    }\n  },\n  watch: {\n    \n  },\n  mounted() {\n\n  },\n  methods: {\n    inputChange() {\n      this.$emit(\"change\",this.inputValue)\n    }\n  }\n}\n</script>\n<style>\n\n</style>\n\n\n"
  },
  {
    "path": "src/components/template/hzlPage.vue",
    "content": "<template>\n  <div class=\"right\">\n    <el-pagination\n      @size-change=\"sizeChange\"\n      @current-change=\"currentChange\"\n      :current-page=\"currentPage\"\n      :page-sizes=\"[20, 50, 80, 120]\"\n      :page-size=\"pageSize\"\n      layout=\"total, sizes, prev, pager, next, jumper\"\n      :total=\"total\">\n    </el-pagination>\n  </div>  \n</template>\n<script>\nexport default {\n  data() {\n    return {\n\n    }\n  },\n  props: {\n    currentPage: {\n      type: [String,Number],\n      default: 1\n    },\n    pageSize: {\n      type: [String, Number],\n      default: 20\n    },\n    total: {\n      type: [String , Number],\n      default: 50\n    }\n  },\n  methods: {\n    sizeChange(val) {\n      console.log(`每页 ${val} 条`);\n    },\n    currentChange(val) {\n      console.log(`当前页: ${val}`);\n    }\n  }\n}\n</script>\n<style>\n  .right {\n    text-align: right;\n  }\n</style>\n\n"
  },
  {
    "path": "src/components/template/hzlSelect.vue",
    "content": "<template>\n  <div>\n     <el-select v-model=\"select\" :placeholder=\"placeholder\" :size=\"size\" @change=\"hanleChange\">\n      <el-option\n        v-for=\"item in list\"\n        :key=\"item.value\"\n        :label=\"item.label\"\n        :value=\"item.value\">\n      </el-option>\n    </el-select>\n  </div>  \n</template>\n<script>\nexport default {\n  name: \"hzl-select\",\n  props: {\n    value: {\n      type: String,\n      default: []\n    },\n    placeholder: {\n      type: String,\n      default: '请选择...'\n    },\n    size: {\n      type: String,\n      default: 'small'\n    },\n    list: {\n      type: Array,\n      default: []\n    }\n  },\n  data() {\n    return {\n      select: \"\"\n    }\n  },\n  methods: {\n    hanleChange() {\n      this.$emit('input', this.select)\n    }\n  }\n}\n</script>\n<style>\n\n</style>\n\n\n"
  },
  {
    "path": "src/components/template/hzlTable.vue",
    "content": "<template>\n  <div>\n    <el-table \n      border\n      :data=\"DataList\"\n      highlight-current-row\n      :height=\"height\"\n      @row-click=\"handleSelectedRow\"\n      @selection-change=\"handleSelectionChange\">\n      <el-table-column\n        v-for=\"item in cols\" \n        :key=\"item.prop\"\n        :label=\"item.label\"\n        :prop=\"item.prop\"\n        :width=\"item.width\"\n        :type=\"item.type\"\n        >\n        <!-- :formatter=\"formatter\" -->\n        <!-- formatter的用法：需要在每个col里添加formatter,push方法进去 对数据进行格式化 -->\n      </el-table-column>\n    </el-table>  \n  </div>  \n</template>\n<script>\nimport moment from 'moment'\nexport default {\n  props: {\n    DataList: {\n      type: Array,\n      default() {\n        return []\n      }\n    },\n    cols: {\n      type: Array,\n      default() {\n        return []\n      }\n    },\n    height: {\n      type: [Array,Number],\n      default: '410'\n    }\n  },\n  data() {\n    return {\n    }\n  },\n  mounted() {\n  },\n  watch: {\n  },\n  methods: {\n    handleSelectedRow() {\n\n    },\n    handleSelectionChange() {\n    },\n    // formatter(row) {\n    //   console.log(row);\n    // }\n  }\n}\n</script>\n<style>\n\n</style>\n"
  },
  {
    "path": "src/components/template/index.js",
    "content": "import Vue from 'vue'\n\nimport hzlInput from './hzlInput.vue'\nimport hzlSelect from './hzlSelect.vue'\nimport hzlPage from './hzlPage.vue'\nimport hzlTable from './hzlTable.vue'\nimport hzlDialog from './hzlDialog.vue'\n\nVue.component('hzl-input',hzlInput);\nVue.component('hzl-select',hzlSelect);\nVue.component('hzl-page',hzlPage);\nVue.component('hzl-table',hzlTable);\nVue.component('hzl-dialog',hzlDialog);\n"
  },
  {
    "path": "src/components/templateOne.vue",
    "content": "<template>\n  <footer class=\"templateOne\">\n    <ul>\n      <li v-for=\"lis in ul\" :key=\"lis.index\">{{lis.li}}</li>\n    </ul>\n    <p>\n      Copyright © {{author}} - 2016 All rights reserved\n    </p>\n  </footer>\n</template>\n\n<script>\n    export default {\n      name: 'templateOne',\n      data () {\n        return {\n          ul: [\n            { li: '琉璃之金' },\n            { li: '朦胧之森' },\n            { li: '缥缈之滔' },\n            { li: '逍遥之火' },\n            { li: '璀璨之沙' }\n          ]\n        }\n      },\n      mounted(){\n\n\n      },\n      methods:{\n\n      },\n      computed: {\n        author () {\n          return this.$store.state.dialog.author\n        }\n      }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/i18n/index.js",
    "content": "import Vue from \"vue\";\nimport VueI18n from \"vue-i18n\";\n\nVue.use(VueI18n); // 全局挂载\n\nexport const i18n = new VueI18n({\n  locale: localStorage.getItem(\"locale\") || \"en\", // 从localStorage中获取 默认英文\n  messages: {\n    zh: require(\"./lan/zh\"), // 中文语言包\n    en: require(\"./lan/en\") // 英文语言包\n  }\n});\n\nexport default i18n;"
  },
  {
    "path": "src/i18n/lan/en.js",
    "content": "export const h = {\n  system: \"Background management system\",\n  full: \"full-screen display\",\n  account: \"myAccount\",\n  invoice: \"invoice\",\n  reconciliation: \"Statement\",\n  record: \"recording\",\n  report: \"report\",\n  setting: \"Settings\",\n  login: \"login\",\n  tips: \"Username and password are filled in casually\",\n  administrator: \"administrator\",\n  placeUser: \"please enter user name\",\n  palcePass: \"Please enter your password\",\n  palceCode: \"please enter verification code\",\n  accounts: \"accounts\",\n  password: \"password\",\n  code: \"Verification code\"\n}"
  },
  {
    "path": "src/i18n/lan/zh.js",
    "content": "export const h = {\n  system: \"Vue后台管理系统\",\n  full: \"全屏显示\",\n  account: \"我的账户\",\n  invoice: \"原始单据\",\n  reconciliation: \"财务对账\",\n  record: \"对账记录\",\n  report: \"月结报表\",\n  setting: \"系统设置\",\n  login: \"登录\",\n  tips: \"用户名和密码随便填\",\n  administrator: \"管理员\",\n  placeUser: \"请输入用户名\",\n  palcePass: \"请输入密码\",\n  palceCode: \"请输入验证码\",\n  accounts: \"账号\",\n  password: \"密码\",\n  code: \"验证码\"\n}"
  },
  {
    "path": "src/main.js",
    "content": "// The Vue build version to load with the `import` command\n// (runtime-only or standalone) has been set in webpack.base.conf with an alias.\n/**\n * Created by 不动的推动者 on 2018/5/2.\n */\n//\nimport Vue from 'vue'\nimport App from './App'\nimport router from './router'\nimport store from './store/index'\nimport 'normalize.css'\nimport Axios from 'axios'\nimport Elementui from 'element-ui'\nimport 'element-ui/lib/theme-chalk/index.css'\nimport moment from 'moment'\nimport echarts from 'echarts'\nimport './components/template/index'\n\nimport { i18n } from './i18n/index' //国际化\n\nVue.use(Elementui);\nVue.use(moment);\nVue.config.productionTip = false;\nVue.prototype.$http = Axios;\nVue.prototype.$echarts = echarts\n\nimport NProgress from 'nprogress' // Progress 进度条\nimport 'nprogress/nprogress.css'// Progress 进度条样式\n\nrouter.beforeEach((to, from, next) => {\n  NProgress.start()\n  const user = localStorage.getItem('lz_userName');\n  const pass = localStorage.getItem('lz_passNumber');\n   if (!user && !pass && to.path !== '/login') { // 检查路径用户是否即将进入我们的 chart 路径\n     next('/login');\n  }else{\n       localStorage.setItem('lz_userName', user);\n       localStorage.setItem('lz_passNumber', pass);\n       next()\n   }\n})\nrouter.afterEach(() => {\n  NProgress.done() // 结束Progress\n})\n\n/* eslint-disable no-new */\nnew Vue({\n  el: '#app',\n  router,\n  store,//使用store\n  i18n, //使用国际化\n  components: { App },\n  template: '<App/>'\n})\n"
  },
  {
    "path": "src/page/chart/chart.vue",
    "content": "<template>\n\n      <div>\n        <template>\n          <el-tabs v-model=\"activeName\" @tab-click=\"handleClick\">\n            <el-tab-pane label=\"用户管理\" name=\"first\">\n              <div class=\"chart\">\n                <div ref=\"myChart\" :style=\"{width: '100%', height: '300px'}\"></div>\n              </div>\n            </el-tab-pane>\n            <el-tab-pane label=\"配置管理\" name=\"second\">\n              <!-- <div class=\"chart\">\n                <div ref=\"myChart\" :style=\"{width: '100%', height: '300px'}\"></div>\n              </div> -->\n            </el-tab-pane>\n            <el-tab-pane label=\"角色管理\" name=\"third\">\n              <!-- <div class=\"chart\">\n                <div ref=\"myChart\" :style=\"{width: '100%', height: '300px'}\"></div>\n              </div> -->\n            </el-tab-pane>\n\n          </el-tabs>\n        </template>\n      </div>\n\n</template>\n\n<script>\n  // 引入基本模板\n  let echarts = require('echarts/lib/echarts')\n  // 引入柱状图组件\n  require('echarts/lib/chart/bar')\n\n  // 引入提示框和title组件\n  require('echarts/lib/component/tooltip')\n  require('echarts/lib/component/title')\n\n\n  export default {\n        name: 'chart',\n        data () {\n            return {\n              activeName: 'first'\n            }\n        },\n      mounted(){\n        this.drawLine();\n      },\n      components:{\n\n      },\n      methods:{\n         handleClick(tab, event) {\n            console.log(tab, event);\n          },\n        drawLine(){\n          // 基于准备好的dom，初始化echarts实例\n          let myChart = this.$echarts.init(this.$refs.myChart);\n          // 绘制图表\n           myChart.setOption({\n            title: { text: '在Vue中使用echarts' },\n            tooltip: {},\n            xAxis: {\n              data: [\"衬衫\",\"羊毛衫\",\"雪纺衫\",\"裤子\",\"高跟鞋\",\"袜子\"]\n            },\n            yAxis: {},\n            series: [{\n              name: '销量',\n              type: 'bar',\n              data: [5, 20, 36, 10, 10, 20]\n            }]\n          });\n        }\n      }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/page/home/home.vue",
    "content": "<template>\n    <div id=\"Home\">\n      <head-top></head-top>\n      <div class=\"wrapper\">\n        <sidebar></sidebar>\n          <div class=\"main\" :class=\"{'content-collapse':collapse}\">\n            <tags></tags>\n            <div class=\"container\">\n              <!--<tabs></tabs>-->\n              <transition name=\"move\" mode=\"out-in\">\n                <keep-alive>\n                  <router-view></router-view>\n                </keep-alive>\n              </transition>\n            </div>\n          </div>\n        </div>\n      </div>\n    <!-- </div> -->\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  import headTop from '../../components/head/head'\n  import sidebar from '../../components/sidebar/sidebar'\n  import tags from '../../components/tags/tags'\n    export default {\n      name: 'Home',\n      components:{\n        headTop,\n        sidebar,\n        tags,\n      },\n      data () {\n        return {\n            aa:null\n        }\n      },\n      computed:{\n        ...mapState({\n          collapse:store=>store.collapse\n        }),\n//        author(){\n//              return this.$store.state.messages\n//          }\n      },\n      methods:{\n      }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/page/inquiry/BankFlow.vue",
    "content": "<template>\n    <div class=\"hello\">\n      <div class=\"head_search\">\n        <h3 class=\"head_title\">银行流水</h3>\n        <search></search>\n        <batchAudit></batchAudit>\n        <batchUnAudit></batchUnAudit>\n        <batchDifferences></batchDifferences>\n        <batchDelete></batchDelete>\n      </div>\n      <div class=\"container\">\n        <template>\n          <el-tabs type=\"border-card\" v-model=\"activeName\">\n            <!--按钮-->\n            <el-row>\n              <btnList></btnList>\n            </el-row>\n            <el-tab-pane label=\"全部\" name=\"Whole\">\n              <template>\n                <el-table\n                  border\n                  v-loading=\"loading\"\n                  ref=\"OrderTable\"\n                  :data=\"getLocalDataList\"\n                  highlight-current-row\n                  height=\"410\"\n                  @row-click=\"handleSelectedRow\"\n                  @selection-change=\"handleSelectionChange\">\n                  <el-table-column\n                    type=\"selection\"\n                    width=\"60\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"billNo\"\n                    label=\"单据编号\"\n                    width=\"200\">\n\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"platform\"\n                    label=\"交易日期\"\n                    width=\"200\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderNo\"\n                    label=\"收入\"\n                    width=\"250\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"totalAmount\"\n                    label=\"支出\"\n                    width=\"80\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"status\"\n                    label=\"单据状态\"\n                    width=\"90\"\n                    :formatter=\"formatStatus\">\n                  </el-table-column>\n\n                  <el-table-column\n                    prop=\"settleStatus\"\n                    label=\"对账状态\"\n                    width=\"100\"\n                    :formatter=\"formatSettleStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settleAmount\"\n                    label=\"已对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"unsettleAmount\"\n                    label=\"未对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"differenceProcessingStatus\"\n                    label=\"差异处理状态\"\n                    width=\"110\"\n                    :formatter=\"formatDifferenceProcessingStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"differenceProcessingAmount\"\n                    label=\"差异处理金额\"\n                    width=\"110\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"differenceProcessingRamarks\"\n                    label=\"差异处理原因\"\n                    width=\"130\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"reconStatus\"\n                    label=\"退款状态\"\n                    width=\"100\"\n                    :formatter=\"formatReconStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"unsettlementMoney\"\n                    label=\"未退款金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settlementMoney\"\n                    label=\"已退款金额\"\n                    width=\"100\">\n                  </el-table-column>\n\n                  <el-table-column\n                    prop=\"orderType\"\n                    label=\"单据类型\"\n                    width=\"100\"\n                    :formatter=\"formatOrderType\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderTotalAmount\"\n                    label=\"订单总金额\"\n                    width=\"100\">\n                  </el-table-column>\n\n                </el-table>\n              </template>\n            </el-tab-pane>\n            <el-tab-pane label=\"已对账\" name=\"Completely\">已对账</el-tab-pane>\n            <el-tab-pane label=\"部份对账\" name=\"Part\">部份对账</el-tab-pane>\n            <el-tab-pane label=\"未对账\" name=\"UnSettled\">未对账</el-tab-pane>\n          </el-tabs>\n        </template>\n      </div>\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  import {getOrderReceivable} from '../../axios/api'\n  import tabs from '../../components/tabs/Tabs'\n  import search from '../../components/search/Search'\n  import batchAudit from '../../components/filterBox/batchAudit'\n  import batchUnAudit from '../../components/filterBox/batchUnAudit'\n  import batchDifferences from '../../components/filterBox/batchDifferences'\n  import batchDelete from '../../components/filterBox/batchDelete'\n  import btnList from '../../components/btnList/btnList'\n    export default {\n        name: 'HelloWorld',\n        components:{\n          search,//高级搜索\n          batchAudit,//批量审核框\n          batchUnAudit,//批量反审核框\n          batchDifferences,//批量差异对帐\n          batchDelete,//批量删除\n          btnList,//按钮\n        },\n        data () {\n            return {\n              loading: true,\n              activeName: 'Whole',\n              getLocalDataList:[],//请求的数据\n              handSelectDataList:[],//选中的数据\n              btnInfo:[],\n              message: '',\n              currentPage4: 4\n            }\n        },\n      computed: {\n        ...mapState({\n          verifyStatus:store=>store.verifyStatus\n        })\n      },\n      mounted(){\n        this.getLocalData()\n      },\n      methods:{\n        handleSizeChange(val) {\n          console.log(`每页 ${val} 条`);\n        },\n        handleCurrentChange(val) {\n          console.log(`当前页: ${val}`);\n        },\n        handleClick() {\n          alert('button click');\n        },\n        /*请求数据*/\n        getLocalData(){\n          getOrderReceivable().then(res=>{\n            console.log(res);\n            if(res.status === 200){\n              this.getLocalDataList = res.data.rows;\n              this.loading = false;\n            }\n\n          })\n        },\n\n        process(row) {\n          if(row.status === 'Audited'){\n            row.status = 'Save'\n          }\n        },\n\n        getRowInfo(row){//获取点击的信息然后跳转\n          //let index = this.getLocalDataList.indexOf(row);\n          this.$store.dispatch('storeOrderListUUid',row.uuid);\n          this.$refs.OrderTable.toggleRowSelection(row);\n          this.$router.push({\n            name: 'orderDetail',\n            params: {id: row.uuid}\n          })\n        },\n        //点击行\n        handleSelectedRow(row){\n          this.$refs.OrderTable.toggleRowSelection(row);\n        },\n        //当选择项发生变化时会触发该事件\n        handleSelectionChange(val){\n          this.handSelectDataList = val;\n        },\n\n        //数格式转换\n        formatTime(row) { //转换时间\n          return new Date(row.businessDate);\n        },\n        formatStatus(row) { //单据状态\n          return (row.status === 'Save' && '保存') || (row.status === 'Audited' && '审核');\n        },\n        formatSettleStatus(row) { //对账状态\n          return (row.settleStatus === \"UnSettled\" && '未对账') || (row.settleStatus === \"Part\" && '部分对账') || (row.settleStatus === 'Completely' && '完全对账');\n        },\n        formatDifferenceProcessingStatus(row) { //差异处理状态\n          return (row.differenceProcessingStatus === \"Y\" && '是') || (row.differenceProcessingStatus === \"N\" && '否');\n        },\n        formatReconStatus(row) { //退款状态\n          return (row.reconStatus === 'UnSettled' && '未退款') || (row.reconStatus === 'Part' && '部分退款') || (row.reconStatus === 'Completely' && '完全退款')\n        },\n        formatOrderType(row) { //退款状态\n          return (row.orderType === '0' && '平台订单') || (row.orderType === '1' && '手工订单')\n        },\n      },\n\n\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/page/inquiry/OrderReceivable.vue",
    "content": "<template>\n    <div class=\"bill\" v-once>\n      <div class=\"head_search\">\n        <h3 class=\"head_title\">订单应收</h3>\n        <!-- 传回父组件 -->\n        <search @orderSearchs=\"fliterOrder\"></search>\n        <batchAudit></batchAudit>\n        <batchUnAudit></batchUnAudit>\n        <batchDifferences></batchDifferences>\n        <batchDelete></batchDelete>\n      </div>\n      <div class=\"container\">\n        <template>\n          <el-tabs type=\"border-card\" v-model=\"activeName\">\n            <!--按钮-->\n            <el-row>\n              <btnList></btnList>\n            </el-row>\n            <el-tab-pane label=\"全部\" name=\"Whole\">\n              <template>\n                <hzl-table\n                :DataList=\"getLocalDataList\"\n                :height=\"420\"\n                :cols=\"colsData\"\n                >\n                </hzl-table>\n              </template>\n            </el-tab-pane>\n            <el-tab-pane label=\"已对账\" name=\"Completely\">\n              <template>\n                <hzl-table\n                :DataList=\"getLocalDataList\"\n                :height=\"420\"\n                :cols=\"colsData\"\n                >\n                </hzl-table>\n              </template>\n            </el-tab-pane>\n            <el-tab-pane label=\"部份对账\" name=\"Part\">\n              <template>\n                <hzl-table\n                :DataList=\"getLocalDataList\"\n                :height=\"420\"\n                :cols=\"colsData\"\n                >\n                </hzl-table>\n              </template>\n            </el-tab-pane>\n            <el-tab-pane label=\"未对账\" name=\"UnSettled\">\n              <template>\n                <hzl-table\n                :DataList=\"getLocalDataList\"\n                :height=\"420\"\n                :cols=\"colsData\"\n                >\n                </hzl-table>\n              </template>\n            </el-tab-pane>\n          </el-tabs>\n        </template>\n      </div>\n      <template>\n        <hzl-page></hzl-page>\n      </template>\n\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  import moment from 'moment'\n  import {getOrderReceivable,getCompany, getCols} from '../../axios/api'\n  import search from '../../components/search/Search'\n  import batchAudit from '../../components/filterBox/batchAudit'\n  import batchUnAudit from '../../components/filterBox/batchUnAudit'\n  import batchDifferences from '../../components/filterBox/batchDifferences'\n  import batchDelete from '../../components/filterBox/batchDelete'\n  import btnList from '../../components/btnList/btnList'\n  export default {\n        name: 'bill',\n        components: {\n          search,//高级搜索\n          batchAudit,//批量审核框\n          batchUnAudit,//批量反审核框\n          batchDifferences,//批量差异对帐\n          batchDelete,//批量删除\n          btnList,//按钮\n        },\n        data () {\n            return {\n              loading: true,\n              activeName: 'Whole',\n              getLocalDataList:[],//请求的数据\n              colsData: [],\n              handSelectDataList:[],//选中的数据\n              btnInfo:[],\n              message: '',\n              currentPage4: 4,\n            }\n        },\n        computed: {\n          ...mapState({\n            verifyStatus:store=>store.verifyStatus,\n          })\n        },\n        mounted(){\n          this.getLocalData()\n          this.colsUpate()\n        },\n        created() {\n          \n        },\n        methods:{\n\n          //高级查询\n          fliterOrder(value){\n            console.log(JSON.stringify(value),\"这是高级查询组件传回来的...\")\n          },\n\n          handleSizeChange(val) {\n            console.log(`每页 ${val} 条`);\n          },\n          handleCurrentChange(val) {\n            console.log(`当前页: ${val}`);\n          },\n          handleClick() {\n            alert('button click');\n          },\n            /*请求数据*/\n           getLocalData(){\n             getOrderReceivable().then(res=>{\n               console.log(res);\n               if(res.status === 200){\n                 this.getLocalDataList = res.data.rows;\n                 this.loading = false;\n               }\n\n             })\n           },\n           /*请求数据*/\n           colsUpate(){\n             getCols().then(res=>{\n               console.log(res.data);\n                 this.colsData = res.data;\n                 this.loading = false;\n             })\n           },\n\n          getRowInfo(row){//获取点击的信息然后跳转\n            //let index = this.getLocalDataList.indexOf(row);\n            this.$store.dispatch('storeOrderListUUid',row.uuid);\n            this.$refs.OrderTable.toggleRowSelection(row);\n            this.$router.push({\n              name: 'orderDetail',\n              params: {id: row.uuid}\n            })\n          },\n          //点击行\n          handleSelectedRow(row){\n            this.$refs.OrderTable.toggleRowSelection(row);\n          },\n          //当选择项发生变化时会触发该事件\n          handleSelectionChange(val){\n            this.handSelectDataList = val;\n          },\n\n          //数格式转换\n          formatTime(row) { //转换时间\n            if(row.businessDate){\n              return moment(row.businessDate).format(\"YYYY-MM-DD\");\n            }\n          },\n          formatStatus(row) { //单据状态\n            return (row.status === 'Save' && '保存') || (row.status === 'Audited' && '审核');\n          },\n          formatSettleStatus(row) { //对账状态\n            return (row.settleStatus === \"UnSettled\" && '未对账') || (row.settleStatus === \"Part\" && '部分对账') || (row.settleStatus === 'Completely' && '完全对账');\n          },\n          formatDifferenceProcessingStatus(row) { //差异处理状态\n            return (row.differenceProcessingStatus === \"Y\" && '是') || (row.differenceProcessingStatus === \"N\" && '否');\n          },\n          formatReconStatus(row) { //退款状态\n            return (row.reconStatus === 'UnSettled' && '未退款') || (row.reconStatus === 'Part' && '部分退款') || (row.reconStatus === 'Completely' && '完全退款')\n          },\n          formatOrderType(row) { //退款状态\n            return (row.orderType === '0' && '平台订单') || (row.orderType === '1' && '手工订单')\n          },\n        },\n\n\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/page/inquiry/SystemStatement.vue",
    "content": "<template>\n    <div class=\"bill\">\n      <div class=\"head_search\">\n        <h3 class=\"head_title\">系统对账单</h3>\n        <!-- 传回父组件 -->\n        <search @orderSearchs=\"fliterOrder\"></search>\n        <batchAudit></batchAudit>\n        <batchUnAudit></batchUnAudit>\n        <batchDifferences></batchDifferences>\n        <batchDelete></batchDelete>\n      </div>\n      <div class=\"container\">\n        <template>\n          <el-tabs type=\"border-card\" v-model=\"activeName\">\n            <!--按钮-->\n            <el-row>\n              <btnList></btnList>\n            </el-row>\n            <el-tab-pane label=\"全部\" name=\"Whole\">\n              <template>\n                <el-table\n                  border\n                  v-loading=\"loading\"\n                  ref=\"OrderTable\"\n                  :data=\"getLocalDataList\"\n                  highlight-current-row\n                  height=\"410\"\n                  @row-click=\"handleSelectedRow\"\n                  @selection-change=\"handleSelectionChange\">\n                  <el-table-column\n                    type=\"selection\"\n                    width=\"60\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"billNo\"\n                    label=\"单据编号\"\n                    width=\"200\">\n\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"platform\"\n                    label=\"平台\"\n                    width=\"200\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderNo\"\n                    label=\"平台订单号\"\n                    width=\"250\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"totalAmount\"\n                    label=\"总金额\"\n                    width=\"80\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"status\"\n                    label=\"单据状态\"\n                    width=\"90\"\n                    :formatter=\"formatStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"businessDate\"\n                    label=\"业务日期\"\n                    width=\"100\"\n                    :formatter=\"formatTime\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settleStatus\"\n                    label=\"对账状态\"\n                    width=\"100\"\n                    :formatter=\"formatSettleStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settleAmount\"\n                    label=\"已对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"unsettleAmount\"\n                    label=\"未对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"differenceProcessingStatus\"\n                    label=\"差异处理状态\"\n                    width=\"110\"\n                    :formatter=\"formatDifferenceProcessingStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"differenceProcessingAmount\"\n                    label=\"差异处理金额\"\n                    width=\"110\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"differenceProcessingRamarks\"\n                    label=\"差异处理原因\"\n                    width=\"130\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"reconStatus\"\n                    label=\"退款状态\"\n                    width=\"100\"\n                    :formatter=\"formatReconStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"unsettlementMoney\"\n                    label=\"未退款金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settlementMoney\"\n                    label=\"已退款金额\"\n                    width=\"100\">\n                  </el-table-column>\n\n                  <el-table-column\n                    prop=\"orderType\"\n                    label=\"单据类型\"\n                    width=\"100\"\n                    :formatter=\"formatOrderType\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderTotalAmount\"\n                    label=\"订单总金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"commission\"\n                    label=\"佣金\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"integral\"\n                    label=\"积分\"\n                    width=\"100\">\n                  </el-table-column>\n                </el-table>\n              </template>\n            </el-tab-pane>\n            <el-tab-pane label=\"已对账\" name=\"Completely\">已对账</el-tab-pane>\n            <el-tab-pane label=\"部份对账\" name=\"Part\">部份对账</el-tab-pane>\n            <el-tab-pane label=\"未对账\" name=\"UnSettled\">未对账</el-tab-pane>\n          </el-tabs>\n        </template>\n      </div>\n      <template>\n        <div class=\"pagination\">\n          <el-pagination\n            @size-change=\"handleSizeChange\"\n            @current-change=\"handleCurrentChange\"\n            :current-page=\"currentPage4\"\n            :page-sizes=\"[100, 200, 300, 400]\"\n            :page-size=\"100\"\n            layout=\"total, sizes, prev, pager, next, jumper\"\n            :total=\"400\">\n          </el-pagination>\n        </div>\n      </template>\n\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  import {getOrderReceivable,getCompany} from '../../axios/api'\n  import search from '../../components/search/Search'\n  import batchAudit from '../../components/filterBox/batchAudit'\n  import batchUnAudit from '../../components/filterBox/batchUnAudit'\n  import batchDifferences from '../../components/filterBox/batchDifferences'\n  import batchDelete from '../../components/filterBox/batchDelete'\n  import btnList from '../../components/btnList/btnList'\n  export default {\n        name: 'bill',\n        components: {\n          search,//高级搜索\n          batchAudit,//批量审核框\n          batchUnAudit,//批量反审核框\n          batchDifferences,//批量差异对帐\n          batchDelete,//批量删除\n          btnList,//按钮\n        },\n        data () {\n            return {\n              loading: true,\n              activeName: 'Whole',\n              getLocalDataList:[],//请求的数据\n              handSelectDataList:[],//选中的数据\n              btnInfo:[],\n              message: '',\n              currentPage4: 4,\n              treeData: {\n                name: 'My Tree',\n                children: [\n                  { name: 'hello' },\n                  { name: 'wat' },\n                  {\n                    name: 'child folder',\n                    children: [\n                      {\n                        name: 'child folder',\n                        children: [\n                          { name: 'hello' },\n                          { name: 'wat' ,\n                            children: [\n                              { name: 'wwww' },\n                              { name: 'eeee' }\n                            ]}\n                        ]\n                      },\n                      { name: 'hello' },\n                      { name: 'wat' },\n                      {\n                        name: 'child folder',\n                        children: [\n                          { name: 'hello' },\n                          { name: 'wat' }\n                        ]\n                      }\n                    ]\n                  }\n                ]\n              }\n            }\n        },\n        computed: {\n          ...mapState({\n            verifyStatus:store=>store.verifyStatus,\n          })\n        },\n        mounted(){\n          this.getLocalData()\n        },\n        methods:{\n\n          //高级查询\n          fliterOrder(value){\n            alert(JSON.stringify(value),\"这是高级查询组件传回来的...\")\n          },\n\n          handleSizeChange(val) {\n            console.log(`每页 ${val} 条`);\n          },\n          handleCurrentChange(val) {\n            console.log(`当前页: ${val}`);\n          },\n          handleClick() {\n            alert('button click');\n          },\n            /*请求数据*/\n           getLocalData(){\n             getOrderReceivable().then(res=>{\n               console.log(res);\n               if(res.status === 200){\n                 this.getLocalDataList = res.data.rows;\n                 this.loading = false;\n               }\n\n             })\n           },\n\n          getRowInfo(row){//获取点击的信息然后跳转\n            //let index = this.getLocalDataList.indexOf(row);\n            this.$store.dispatch('storeOrderListUUid',row.uuid);\n            this.$refs.OrderTable.toggleRowSelection(row);\n            this.$router.push({\n              name: 'orderDetail',\n              params: {id: row.uuid}\n            })\n          },\n          //点击行\n          handleSelectedRow(row){\n            this.$refs.OrderTable.toggleRowSelection(row);\n          },\n          //当选择项发生变化时会触发该事件\n          handleSelectionChange(val){\n            this.handSelectDataList = val;\n          },\n\n          //数格式转换\n          formatTime(row) { //转换时间\n            return new Date(row.businessDate);\n          },\n          formatStatus(row) { //单据状态\n            return (row.status === 'Save' && '保存') || (row.status === 'Audited' && '审核');\n          },\n          formatSettleStatus(row) { //对账状态\n            return (row.settleStatus === \"UnSettled\" && '未对账') || (row.settleStatus === \"Part\" && '部分对账') || (row.settleStatus === 'Completely' && '完全对账');\n          },\n          formatDifferenceProcessingStatus(row) { //差异处理状态\n            return (row.differenceProcessingStatus === \"Y\" && '是') || (row.differenceProcessingStatus === \"N\" && '否');\n          },\n          formatReconStatus(row) { //退款状态\n            return (row.reconStatus === 'UnSettled' && '未退款') || (row.reconStatus === 'Part' && '部分退款') || (row.reconStatus === 'Completely' && '完全退款')\n          },\n          formatOrderType(row) { //退款状态\n            return (row.orderType === '0' && '平台订单') || (row.orderType === '1' && '手工订单')\n          },\n        },\n\n\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/page/inquiry/TransactionFlow.vue",
    "content": "<template>\n    <div class=\"hello\">\n      <div class=\"head_search\">\n        <h3 class=\"head_title\">交易流水</h3>\n        <search></search>\n        <batchAudit></batchAudit>\n        <batchUnAudit></batchUnAudit>\n        <batchDifferences></batchDifferences>\n        <batchDelete></batchDelete>\n      </div>\n      <div class=\"container\">\n        <template>\n          <el-tabs type=\"border-card\" v-model=\"activeName\">\n            <!--按钮-->\n            <el-row>\n              <btnList></btnList>\n            </el-row>\n            <el-tab-pane label=\"全部\" name=\"Whole\">\n              <template>\n                <el-table\n                  border\n                  v-loading=\"loading\"\n                  ref=\"OrderTable\"\n                  :data=\"getLocalDataList\"\n                  highlight-current-row\n                  height=\"410\"\n                  @row-click=\"handleSelectedRow\"\n                  @selection-change=\"handleSelectionChange\">\n                  <el-table-column\n                    type=\"selection\"\n                    width=\"60\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"billNo\"\n                    label=\"单据编号\"\n                    width=\"200\">\n\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"platform\"\n                    label=\"平台\"\n                    width=\"200\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderNo\"\n                    label=\"平台订单号\"\n                    width=\"250\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"totalAmount\"\n                    label=\"总金额\"\n                    width=\"80\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"status\"\n                    label=\"单据状态\"\n                    width=\"90\"\n                    :formatter=\"formatStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"businessDate\"\n                    label=\"业务日期\"\n                    width=\"100\"\n                    :formatter=\"formatTime\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settleStatus\"\n                    label=\"对账状态\"\n                    width=\"100\"\n                    :formatter=\"formatSettleStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settleAmount\"\n                    label=\"已对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"unsettleAmount\"\n                    label=\"未对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"differenceProcessingStatus\"\n                    label=\"差异处理状态\"\n                    width=\"110\"\n                    :formatter=\"formatDifferenceProcessingStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"differenceProcessingAmount\"\n                    label=\"差异处理金额\"\n                    width=\"110\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"differenceProcessingRamarks\"\n                    label=\"差异处理原因\"\n                    width=\"130\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"reconStatus\"\n                    label=\"退款状态\"\n                    width=\"100\"\n                    :formatter=\"formatReconStatus\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"unsettlementMoney\"\n                    label=\"未退款金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settlementMoney\"\n                    label=\"已退款金额\"\n                    width=\"100\">\n                  </el-table-column>\n\n                  <el-table-column\n                    prop=\"orderType\"\n                    label=\"单据类型\"\n                    width=\"100\"\n                    :formatter=\"formatOrderType\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderTotalAmount\"\n                    label=\"订单总金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"commission\"\n                    label=\"佣金\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"integral\"\n                    label=\"积分\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"platformCoupon\"\n                    label=\"平台优惠卷\"\n                    width=\"110\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"companyCoupon\"\n                    label=\"公司优惠卷\"\n                    width=\"110\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"insurance\"\n                    label=\"保险\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"freight\"\n                    label=\"运费\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"sellerPayment\"\n                    label=\"买家支付金额\"\n                    width=\"110\">\n                  </el-table-column>\n                </el-table>\n              </template>\n            </el-tab-pane>\n            <el-tab-pane label=\"已对账\" name=\"Completely\">已对账</el-tab-pane>\n            <el-tab-pane label=\"部份对账\" name=\"Part\">部份对账</el-tab-pane>\n            <el-tab-pane label=\"未对账\" name=\"UnSettled\">未对账</el-tab-pane>\n          </el-tabs>\n        </template>\n\n      </div>\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  import {getOrderReceivable} from '../../axios/api'\n  import tabs from '../../components/tabs/Tabs'\n  import search from '../../components/search/Search'\n  import batchAudit from '../../components/filterBox/batchAudit'\n  import batchUnAudit from '../../components/filterBox/batchUnAudit'\n  import batchDifferences from '../../components/filterBox/batchDifferences'\n  import batchDelete from '../../components/filterBox/batchDelete'\n  import btnList from '../../components/btnList/btnList'\n  export default {\n    name: 'HelloWorld',\n    components:{\n      search,//高级搜索\n      batchAudit,//批量审核框\n      batchUnAudit,//批量反审核框\n      batchDifferences,//批量差异对帐\n      batchDelete,//批量删除\n      btnList,//按钮\n    },\n    data () {\n      return {\n        loading: true,\n        activeName: 'Whole',\n        getLocalDataList:[],//请求的数据\n        handSelectDataList:[],//选中的数据\n        btnInfo:[],\n        message: '',\n        currentPage4: 4\n      }\n    },\n    computed: {\n      ...mapState({\n        verifyStatus:store=>store.verifyStatus\n      })\n    },\n    mounted(){\n      this.getLocalData()\n    },\n    methods:{\n      handleSizeChange(val) {\n        console.log(`每页 ${val} 条`);\n      },\n      handleCurrentChange(val) {\n        console.log(`当前页: ${val}`);\n      },\n      handleClick() {\n        alert('button click');\n      },\n      /*请求数据*/\n      getLocalData(){\n        getOrderReceivable().then(res=>{\n          console.log(res);\n        if(res.status === 200){\n          this.getLocalDataList = res.data.rows;\n          this.loading = false;\n        }\n\n      })\n      },\n      //Duff装置\n      duff(rows){\n        console.log(rows);\n        let iterations = Math.floor(rows.length /8);\n        let leftover  = rows.length % 8;\n        let i = 0;\n        if(leftover > 0) {\n          do {\n            this.process(rows[i++]);\n          }while(--leftover > 0);\n        }\n        do {\n          this.process(rows[i++]);\n          this.process(rows[i++]);\n          this.process(rows[i++]);\n          this.process(rows[i++]);\n          this.process(rows[i++]);\n          this.process(rows[i++]);\n          this.process(rows[i++]);\n          this.process(rows[i++]);\n        }while(--iterations > 0);\n      },\n      process(row) {\n        if(row.status === 'Audited'){\n          row.status = 'Save'\n        }\n      },\n\n      getRowInfo(row){//获取点击的信息然后跳转\n        //let index = this.getLocalDataList.indexOf(row);\n        this.$store.dispatch('storeOrderListUUid',row.uuid);\n        this.$refs.OrderTable.toggleRowSelection(row);\n        this.$router.push({\n          name: 'orderDetail',\n          params: {id: row.uuid}\n        })\n      },\n      //点击行\n      handleSelectedRow(row){\n        this.$refs.OrderTable.toggleRowSelection(row);\n      },\n      //当选择项发生变化时会触发该事件\n      handleSelectionChange(val){\n        this.handSelectDataList = val;\n      },\n\n      //数格式转换\n      formatTime(row) { //转换时间\n        return new Date(row.businessDate);\n      },\n      formatStatus(row) { //单据状态\n        return (row.status === 'Save' && '保存') || (row.status === 'Audited' && '审核');\n      },\n      formatSettleStatus(row) { //对账状态\n        return (row.settleStatus === \"UnSettled\" && '未对账') || (row.settleStatus === \"Part\" && '部分对账') || (row.settleStatus === 'Completely' && '完全对账');\n      },\n      formatDifferenceProcessingStatus(row) { //差异处理状态\n        return (row.differenceProcessingStatus === \"Y\" && '是') || (row.differenceProcessingStatus === \"N\" && '否');\n      },\n      formatReconStatus(row) { //退款状态\n        return (row.reconStatus === 'UnSettled' && '未退款') || (row.reconStatus === 'Part' && '部分退款') || (row.reconStatus === 'Completely' && '完全退款')\n      },\n      formatOrderType(row) { //退款状态\n        return (row.orderType === '0' && '平台订单') || (row.orderType === '1' && '手工订单')\n      },\n    },\n  }\n</script>\n<style scoped>\n  .el-row{\n    /*background: #d0e9ff;*/\n    height:40px;\n    padding:5px 0;\n  }\n  table .el-button{\n    width: 50%;\n    padding: 0;\n  }\n  .el-dropdown{\n    padding:0 8px;\n  }\n  .el-row .el-button-group .el-button{\n    padding:5px;\n  }\n  .el-pagination{\n    margin-top:10px;\n  }\n</style>\n"
  },
  {
    "path": "src/page/inquiry/children/orderAdd.vue",
    "content": "<template>\n  <div class=\"order-add\">\n    <div class=\"head_search\">\n      <h2>订单新增</h2>\n    </div>\n    <template>\n      <el-tabs v-model=\"activeNameOne\">\n        <!--基本信息-->\n        <el-tab-pane label=\"基本信息\" name=\"basicInfo\">\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>单据类型:</span>\n                <el-select v-model=\"fromData.orderType\" size=\"small\" placeholder=\"单据类型\" >\n                  <el-option\n                    v-for=\"item in orderTypeSelect\"\n                    :key=\"item.value\"\n                    :label=\"item.label\"\n                    :value=\"item.value\">\n                  </el-option>\n                </el-select>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>单据编号:</span>\n                <el-input\n                  placeholder=\"单据编号\"\n                  size=\"small\"\n                  v-model=\"fromData.billNo\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>平台:</span>\n                <el-input\n                  placeholder=\"平台\"\n                  size=\"small\"\n                  v-model=\"fromData.platform\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>销售公司:</span>\n                <el-input\n                  placeholder=\"销售公司\"\n                  size=\"small\"\n                  v-model=\"fromData.salesCompany\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>业务日期:</span>\n                <el-date-picker\n                  v-model=\"fromData.businessDate\"\n                  size=\"small\"\n                  type=\"datetime\"\n                  placeholder=\"选择日期时间\">\n                </el-date-picker>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>对账金额:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.totalAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>平台订单号:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.orderNo\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>销售部门:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.salesDepartment\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>对账状态:</span>\n                <el-input\n                  placeholder=\"对账状态\"\n                  size=\"small\"\n                  v-model=\"fromData.settleStatus\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>已对账金额:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.settleAmount\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>未对账金额:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.unsettleAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>销售员:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.salesman\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>退款状态:</span>\n                <el-select v-model=\"fromData.reconStatus\" size=\"small\" placeholder=\"退款状态\" >\n                  <el-option\n                    v-for=\"item in reconStatusSelect\"\n                    :key=\"item.value\"\n                    :label=\"item.label\"\n                    :value=\"item.value\">\n                  </el-option>\n                </el-select>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>已退款金额:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.settlementMoney\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>未退款金额:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.unsettlementMoney\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>单据状态:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.status\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>是否差异处理:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.differenceProcessingStatus\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>差异处理金额:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.differenceProcessingAmount\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>差异处理原因:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.differenceProcessingRamarks\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>备注:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.remarks\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n        </el-tab-pane>\n        <!--订单信息-->\n        <el-tab-pane label=\"订单信息\" name=\"orderInfo\">\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>订单总金额:</span>\n                <el-input\n                  placeholder=\"订单总金额\"\n                  size=\"small\"\n                  v-model=\"fromData.orderTotalAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>订单初始支付金:</span>\n                <el-input\n                  placeholder=\"单据编号\"\n                  size=\"small\"\n                  v-model=\"fromData.orderInitAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>订单货到应收:</span>\n                <el-input\n                  placeholder=\"平台\"\n                  size=\"small\"\n                  v-model=\"fromData.platform\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>运费:</span>\n                <el-input\n                  placeholder=\"销售公司\"\n                  size=\"small\"\n                  v-model=\"fromData.salesCompany\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>订单优惠抵扣:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.totalAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>优惠券名称:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.totalAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>订单状态:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.orderNo\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>支付状态:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.salesDepartment\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>支付方式:</span>\n                <el-input\n                  placeholder=\"对账状态\"\n                  size=\"small\"\n                  v-model=\"fromData.settleStatus\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>取消理由:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.settleAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>是否有拆单:</span>\n                <el-select v-model=\"fromData.haveOtherOrder\" size=\"small\" placeholder=\"是否有拆单\" >\n                  <el-option\n                    v-for=\"item in haveOtherOrder\"\n                    :key=\"item.value\"\n                    :label=\"item.label\"\n                    :value=\"item.value\">\n                  </el-option>\n                </el-select>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>所属订单类型:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.salesman\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>团购验证码:</span>\n                <el-select v-model=\"fromData.reconStatus\" size=\"small\" placeholder=\"退款状态\" >\n                  <el-option\n                    v-for=\"item in reconStatusSelect\"\n                    :key=\"item.value\"\n                    :label=\"item.label\"\n                    :value=\"item.value\">\n                  </el-option>\n                </el-select>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>接单人:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.settlementMoney\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>操作人:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.unsettlementMoney\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n        </el-tab-pane>\n        <!--配送信息-->\n        <el-tab-pane label=\"配送信息\" name=\"shippingInfo\">\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>订货人:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.orderer\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>订货人电话:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.ordererPhone\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>下单时间:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.deliveryTime\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>门店:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.store\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>收货人:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.receiver\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>收货人电话:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.receiverPhone\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>收货人地址:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.orderNo\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>配送方式:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.salesDepartment\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>配送员名称:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.totalAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>配送员手机:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.totalAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>配送时间:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.orderNo\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>所属城市:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.salesDepartment\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>配送站:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.totalAmount\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"6\">\n              <div class=\"grid-content\">\n                <span>发票内容:</span>\n                <el-input\n                  placeholder=\"请输入内容\"\n                  size=\"small\"\n                  v-model=\"fromData.totalAmount\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n\n        </el-tab-pane>\n        <!--其它-->\n        <el-tab-pane label=\"其它\" name=\"createInfo\">\n          <el-row :gutter=\"20\">\n            <el-col :span=\"8\">\n              <div class=\"grid-content\">\n                <span>创建人:</span>\n                <el-input\n                  placeholder=\"创建人\"\n                  size=\"small\"\n                  v-model=\"fromData.creator\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"8\">\n              <div class=\"grid-content\">\n                <span>修改人:</span>\n                <el-input\n                  placeholder=\"修改人\"\n                  size=\"small\"\n                  v-model=\"fromData.operator\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"8\">\n              <div class=\"grid-content\">\n                <span>审核人:</span>\n                <el-input\n                  placeholder=\"审核人\"\n                  size=\"small\"\n                  v-model=\"fromData.auditor\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n          <el-row :gutter=\"20\">\n            <el-col :span=\"8\">\n              <div class=\"grid-content\">\n                <span>创建日期:</span>\n                <el-input\n                  placeholder=\"创建日期\"\n                  size=\"small\"\n                  v-model=\"fromData.createTime\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"8\">\n              <div class=\"grid-content\">\n                <span>修改日期:</span>\n                <el-input\n                  placeholder=\"修改日期\"\n                  size=\"small\"\n                  v-model=\"fromData.updateTime\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n            <el-col :span=\"8\">\n              <div class=\"grid-content\">\n                <span>审核日期:</span>\n                <el-input\n                  placeholder=\"审核日期\"\n                  size=\"small\"\n                  v-model=\"fromData.auditTime\"\n                  :disabled=\"true\">\n                </el-input>\n              </div>\n            </el-col>\n          </el-row>\n        </el-tab-pane>\n      </el-tabs>\n    </template>\n    <!--表单-->\n    <template>\n      <el-tabs type=\"border-card\" v-model=\"activeNameTwo\">\n        <div class=\"btn-wrap\">\n          <el-button size=\"small\" type=\"primary\" @click=\"addTr\">新增</el-button>\n        </div>\n        <el-tab-pane label=\"对账计划\" name=\"collate\"> <!--collate 对账-->\n          <template>\n            <el-table\n              :data=\"fromData.reconciliationPlanInfoList\"\n              border\n              width=\"100%\">\n              <el-table-column\n                prop=\"name\"\n                label=\"名称\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.reconciliationPlanInfoList[scope.$index].name\"\n                    placeholder=\"名称\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"money\"\n                label=\"金额\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.reconciliationPlanInfoList[scope.$index].money\"\n                    placeholder=\"金额\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"settleAmount\"\n                label=\"已对账金额\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.reconciliationPlanInfoList[scope.$index].settleAmount\"\n                    placeholder=\"已对账金额\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"unsettleAmount\"\n                label=\"未对账金额\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.reconciliationPlanInfoList[scope.$index].unsettleAmount\"\n                    placeholder=\"未对账金额\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"settlementMoney\"\n                label=\"已退款金额\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.reconciliationPlanInfoList[scope.$index].settlementMoney\"\n                    placeholder=\"已退款金额\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"unsettlementMoney\"\n                label=\"未退款金额\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.reconciliationPlanInfoList[scope.$index].unsettlementMoney\"\n                    placeholder=\"名称\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"address\"\n                label=\"操作\"\n                width=\"80px\">\n                <template slot-scope=\"scope\">\n                  <el-button\n                    size=\"mini\"\n                    type=\"danger\"\n                    @click=\"handleDelete(scope.$index, scope.row)\">删除</el-button>\n                </template>\n              </el-table-column>\n            </el-table>\n          </template>\n        </el-tab-pane>\n        <el-tab-pane label=\"订单明细\" name=\"detail\"><!--detail 明细-->\n          <template>\n            <el-table\n              :data=\"fromData.orderReceivableSupList\"\n              border\n              width=\"100%\">\n              <el-table-column\n                prop=\"firstCommodityClass\"\n                label=\"一级类目名称\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].firstCommodityClass\"\n                    placeholder=\"一级类目名称\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"secondCommodityClass\"\n                label=\"二级类目名称\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].secondCommodityClass\"\n                    placeholder=\"二级类目名称\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"specification\"\n                label=\"规格\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].specification\"\n                    placeholder=\"规格\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"commodityNum\"\n                label=\"商品编码\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].commodityNum\"\n                    placeholder=\"商品编码\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"productName\"\n                label=\"产品名称(SPU名称)\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].productName\"\n                    placeholder=\"产品名称(SPU名称)\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"SKU\"\n                label=\"SKU编码\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].SKU\"\n                    placeholder=\"SKU编码\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"SKUNum\"\n                label=\"SKU值\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].SKUNum\"\n                    placeholder=\"SKU值\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"groupSKU\"\n                label=\"是否为组合商品\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].groupSKU\"\n                    placeholder=\"是否为组合商品\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"productNum\"\n                label=\"产品数量\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].productNum\"\n                    placeholder=\"产品数量\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"commission\"\n                label=\"商品门市价\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].commission\"\n                    placeholder=\"商品门市价\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"unitPrice\"\n                label=\"商品销售价\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].unitPrice\"\n                    placeholder=\"商品销售价\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"commodityOfficialPrice\"\n                label=\"商品官网价\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].commodityOfficialPrice\"\n                    placeholder=\"商品官网价\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"amount\"\n                label=\"商品实际售价(总)\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].amount\"\n                    placeholder=\"商品实际售价(总)\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"platformCoupon\"\n                label=\"商品卡券优惠金额(总)\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].platformCoupon\"\n                    placeholder=\"商品卡券优惠金额(总)\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"commodityReceivablePrice\"\n                label=\"商品应收金额\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].commodityReceivablePrice\"\n                    placeholder=\"商品应收金额\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"commodityVoucherNumber\"\n                label=\"商品代金券号\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].commodityVoucherNumber\"\n                    placeholder=\"商品代金券号\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"paymentNumber\"\n                label=\"支付号\"\n                width=\"160px\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.orderReceivableSupList[scope.$index].paymentNumber\"\n                    placeholder=\"支付号\">\n                  </el-input>\n                </template>\n              </el-table-column>\n            </el-table>\n          </template>\n        </el-tab-pane>\n        <el-tab-pane label=\"关联信息\" name=\"relevance\"><!--relevance 关联-->\n          <template>\n            <el-table\n              :data=\"fromData.receivableRelationInfoList\"\n              border\n              width=\"100%\">\n              <el-table-column\n                prop=\"name\"\n                label=\"名称\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.receivableRelationInfoList[scope.$index].name\"\n                    placeholder=\"名称\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"money\"\n                label=\"金额\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.receivableRelationInfoList[scope.$index].money\"\n                    placeholder=\"金额\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"relationMoney\"\n                label=\"关联金额\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.receivableRelationInfoList[scope.$index].settleAmount\"\n                    placeholder=\"已对账金额\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"transNum\"\n                label=\"交易流水号\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.receivableRelationInfoList[scope.$index].unsettleAmount\"\n                    placeholder=\"未对账金额\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"settleNum\"\n                label=\"结算单号\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.receivableRelationInfoList[scope.$index].settlementMoney\"\n                    placeholder=\"已退款金额\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"bankNum\"\n                label=\"银行流水号\">\n                <template slot-scope=\"scope\">\n                  <el-input\n                    size=\"mini\"\n                    v-model=\"fromData.receivableRelationInfoList[scope.$index].name\"\n                    placeholder=\"名称\">\n                  </el-input>\n                </template>\n              </el-table-column>\n              <el-table-column\n                prop=\"address\"\n                label=\"操作\"\n                width=\"80px\">\n                <template slot-scope=\"scope\">\n                  <el-button\n                    size=\"mini\"\n                    type=\"danger\"\n                    @click=\"handleDelete(scope.$index, scope.row)\">删除</el-button>\n                </template>\n              </el-table-column>\n            </el-table>\n          </template>\n        </el-tab-pane>\n      </el-tabs>\n    </template>\n    <button @click=\"getData\">console</button>\n  </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  import {getOrderReceivable} from '../../../axios/api'\n  export default {\n    name: 'orderAdd',\n    data () {\n      return {\n        getLocalDataList: null, //请求的数据\n        index: null,\n        activeNameOne: 'basicInfo',//v-model默认选中的tab\n        activeNameTwo: 'collate',//v-model默认选中的tab\n        fromData: { //新增储存的数据\n          /*\n           * 基本信息\n           * */\n          orderType: null,//单据类型\n          businessDate: null,//业务日期\n          settleStatus: null,//对账状态\n          reconStatus: null,//退款状态\n          billNo: null,//单据编号\n          totalAmount: null,//对账金额\n          settleAmount: null,//已对账金额\n          settlementMoney: null,//已退款金额\n          platform: null,//平台\n          orderNo: null,//平台订单号\n          unsettleAmount: null,//未对账金额\n          unsettlementMoney: null,//未退款金额\n          salesCompany: null,//销售公司\n          salesDepartment: null,//销售部门\n          status: null,//单据状态\n          remarks: null,//备注\n          salesman: null,//销售员\n          differenceProcessingRamarks: null,//差异处理原因\n          differenceProcessingAmount: null,//差异处理金额\n          differenceProcessingStatus: null,//是否差异处理\n          /*\n           * 订单信息\n           * */\n          orderTotalAmount: null, //订单总金额\n          orderInitAmount: null, //订单初始支付金\n          orderReceiveAmount: null, //订单货到应收\n          freight: null, //运费\n          orderDiscountAmount: null, //订单优惠抵扣\n          couponName: null, //优惠券名称\n          orderStatus: null, //订单状态\n          payState: null, //支付状态\n          payType: null, //支付方式\n          cancelReason: null, //取消理由\n          haveOtherOrder: null, //是否拆单\n          orderTypeBelong: null, //所属订单类型\n          groupPurchaseVerificationCode: null, //团购验证码\n          orderPickUpEmp: null, //接单人\n          orderOperator: null, //操作人\n          /*\n           * 配送信息\n           * */\n          orderer: null,//订货人\n          ordererPhone: null,//订货人电话\n          deliveryTime: null,//下单时间(配送时间)\n          store: null,//门店\n          receiver: null,//收货人\n          receiverPhone: null,//收货人电话\n          receiverAddress: null,//收货人地址\n          delivery: null,//配送方式\n          deliveryMan: null,//配送员名称\n          deliveryManPhone: null,//配送员手机\n          sendArea: null,//所属城市\n          sendStation: null,//配送站\n          invoiceContent: null,//发票内容\n          /*\n           * 其它\n           * */\n          creator: null,//创建人\n          createTime: null,//创建日期\n          operator: null,//修改人\n          updateTime: null,//修改日期\n          auditor: null,//审核人\n          auditTime: null,//审核日期\n          reconciliationPlanInfoList:[{//对账计划\n            name: null,\n            money: null,\n            settleAmount: null,\n            unsettleAmount: null,\n            settlementMoney: null,\n            unsettlementMoney: null\n          }\n          ],\n          orderReceivableSupList:[{//订单明细\n            firstCommodityClass: null,//一级类目名称\n            secondCommodityClass: null,//二级类目名称\n            commodityName: null,//商品名称\n            specification: null,//规格\n            commodityNum: null,//商品编码\n            productName: null,//产品名称\n            SKU: null,//SKU编码\n            SKUNum: null,//SKU值\n            groupSKU: null,//是否为组合商品\n            productNum: null,//商品数量\n            commission: null,//商品门市价\n            unitPrice: null,//商品销售价\n            //商品活动价(总)\n            commodityOfficialPrice: null,//商品官网价\n            amount: null,//商品实际售价(总)\n            platformCoupon: null,//商品卡券优惠金额(总)\n            commodityReceivablePrice: null,//商品应收金额\n            commodityVoucherNumber: null,//商品代金券号\n            paymentNumber: null,//支付号\n          }],\n          receivableRelationInfoList:[{//关联信息\n            name: null, //名称\n            money: null,//金额\n            relationMoney: null,//关联金额\n            transNum: null,//交易流水号\n            settleNum: null ,//结算单号\n            bankNum: null,//银行流水号\n          }],\n        },\n        orderTypeSelect: [{ //单据类型\n          value: '0',\n          label: '平台订单'\n        }, {\n          value: '1',\n          label: '手工订单'\n        }],\n        reconStatusSelect: [{ //退款状态\n          value: 'Part',\n          label: '部分退款'\n        },{\n          value: 'Completely',\n          label: '完全退款'\n        }],\n        haveOtherOrder: [{\n          value: '1',\n          label: '是'\n        },{\n          value: '0',\n          label: '否'\n        }],\n      }\n    },\n    mounted(){\n      this.getLocalData()\n    },\n    computed: {\n      ...mapState({\n        orderListUUid: store => store.orderListUUid\n      }),\n    },\n    methods: {\n      getLocalData(){ // 请求数据\n        getOrderReceivable().then(res => {\n//            this.getLocalDataList = res.data.rows;\n        })\n      },\n      getData(){\n        console.log(this.fromData);\n      },\n      handleDelete(index) { //删除\n        let name = this.activeNameTwo;\n        if(name === 'collate'){\n          this.fromData.reconciliationPlanInfoList.splice(index,1)\n        }else if(name ==='relevance'){\n          this.fromData.receivableRelationInfoList.splice(index,1)\n        }\n        console.log(index);\n      },\n      addTr(){ /*新增(对账计划订单明细关联信息)*/\n        let name = this.activeNameTwo;\n        if(name === 'collate'){\n          this.fromData.reconciliationPlanInfoList.push({\n            name: null,\n            money: null,\n            settleAmount: null,\n            unsettleAmount: null,\n            settlementMoney: null,\n            unsettlementMoney: null,\n          })\n        }else if(name === 'detail'){\n          this.fromData.orderReceivableSupList.push({\n            firstCommodityClass: null,//一级类目名称\n            secondCommodityClass: null,//二级类目名称\n            commodityName: null,//商品名称\n            specification: null,//规格\n            commodityNum: null,//商品编码\n            productName: null,//产品名称\n            SKU: null,//SKU编码\n            SKUNum: null,//SKU值\n            groupSKU: null,//是否为组合商品\n            productNum: null,//商品数量\n            commission: null,//商品门市价\n            unitPrice: null,//商品销售价\n            //商品活动价(总)\n            commodityOfficialPrice: null,//商品官网价\n            amount: null,//商品实际售价(总)\n            platformCoupon: null,//商品卡券优惠金额(总)\n            commodityReceivablePrice: null,//商品应收金额\n            commodityVoucherNumber: null,//商品代金券号\n            paymentNumber: null,//支付号\n          })\n        }else if(name ==='relevance'){\n          this.fromData.receivableRelationInfoList.push({//关联信息\n            name: null, //名称\n            money: null,//金额\n            relationMoney: null,//关联金额\n            transNum: null,//交易流水号\n            settleNum: null ,//结算单号\n            bankNum: null,//银行流水号\n          })\n        }\n\n      }\n    }\n  }\n</script>\n<style scoped>\n\n\n</style>\n"
  },
  {
    "path": "src/page/inquiry/children/orderDetail.vue",
    "content": "<template>\n    <div class=\"order-detail\">\n      <div class=\"head_search\">\n        <h2>订单新增</h2>\n      </div>\n      <template>\n        <el-tabs v-model=\"activeNameOne\">\n          <!--基本信息-->\n          <el-tab-pane label=\"基本信息\" name=\"basicInfo\">\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>单据类型:</span>\n                  <el-select v-model=\"fromData.orderType\" size=\"small\" placeholder=\"单据类型\" >\n                    <el-option\n                      v-for=\"item in orderTypeSelect\"\n                      :key=\"item.value\"\n                      :label=\"item.label\"\n                      :value=\"item.value\">\n                    </el-option>\n                  </el-select>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>单据编号:</span>\n                  <el-input\n                    placeholder=\"单据编号\"\n                    size=\"small\"\n                    v-model=\"fromData.billNo\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>平台:</span>\n                  <el-input\n                    placeholder=\"平台\"\n                    size=\"small\"\n                    v-model=\"fromData.platform\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>销售公司:</span>\n                  <el-input\n                    placeholder=\"销售公司\"\n                    size=\"small\"\n                    v-model=\"fromData.salesCompany\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>业务日期:</span>\n                  <el-date-picker\n                    v-model=\"fromData.businessDate\"\n                    size=\"small\"\n                    type=\"date\"\n                    placeholder=\"选择日期时间\">\n                  </el-date-picker>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>对账金额:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.totalAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>平台订单号:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.orderNo\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>销售部门:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.salesDepartment\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>对账状态:</span>\n                  <el-input\n                    placeholder=\"对账状态\"\n                    size=\"small\"\n                    v-model=\"fromData.settleStatus\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>已对账金额:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.settleAmount\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>未对账金额:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.unsettleAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>销售员:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.salesman\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>退款状态:</span>\n                  <el-select v-model=\"fromData.reconStatus\" size=\"small\" placeholder=\"退款状态\" >\n                    <el-option\n                      v-for=\"item in reconStatusSelect\"\n                      :key=\"item.value\"\n                      :label=\"item.label\"\n                      :value=\"item.value\">\n                    </el-option>\n                  </el-select>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>已退款金额:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.settlementMoney\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>未退款金额:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.unsettlementMoney\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>单据状态:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.status\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>是否差异处理:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.differenceProcessingStatus\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>差异处理金额:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.differenceProcessingAmount\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>差异处理原因:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.differenceProcessingRamarks\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>备注:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.remarks\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n          </el-tab-pane>\n          <!--订单信息-->\n          <el-tab-pane label=\"订单信息\" name=\"orderInfo\">\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>订单总金额:</span>\n                  <el-input\n                    placeholder=\"订单总金额\"\n                    size=\"small\"\n                    v-model=\"fromData.orderTotalAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>订单初始支付金:</span>\n                  <el-input\n                    placeholder=\"单据编号\"\n                    size=\"small\"\n                    v-model=\"fromData.orderInitAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>订单货到应收:</span>\n                  <el-input\n                    placeholder=\"平台\"\n                    size=\"small\"\n                    v-model=\"fromData.platform\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>运费:</span>\n                  <el-input\n                    placeholder=\"销售公司\"\n                    size=\"small\"\n                    v-model=\"fromData.salesCompany\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>订单优惠抵扣:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.totalAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>优惠券名称:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.totalAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>订单状态:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.orderNo\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>支付状态:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.salesDepartment\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>支付方式:</span>\n                  <el-input\n                    placeholder=\"对账状态\"\n                    size=\"small\"\n                    v-model=\"fromData.settleStatus\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>取消理由:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.settleAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>是否有拆单:</span>\n                  <el-select v-model=\"fromData.haveOtherOrder\" size=\"small\" placeholder=\"是否有拆单\" >\n                    <el-option\n                      v-for=\"item in haveOtherOrder\"\n                      :key=\"item.value\"\n                      :label=\"item.label\"\n                      :value=\"item.value\">\n                    </el-option>\n                  </el-select>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>所属订单类型:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.salesman\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>团购验证码:</span>\n                  <el-select v-model=\"fromData.reconStatus\" size=\"small\" placeholder=\"退款状态\" >\n                    <el-option\n                      v-for=\"item in reconStatusSelect\"\n                      :key=\"item.value\"\n                      :label=\"item.label\"\n                      :value=\"item.value\">\n                    </el-option>\n                  </el-select>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>接单人:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.settlementMoney\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>操作人:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.unsettlementMoney\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n          </el-tab-pane>\n          <!--配送信息-->\n          <el-tab-pane label=\"配送信息\" name=\"shippingInfo\">\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>订货人:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.orderer\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>订货人电话:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.ordererPhone\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>下单时间:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.deliveryTime\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>门店:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.store\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>收货人:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.receiver\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>收货人电话:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.receiverPhone\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>收货人地址:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.orderNo\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>配送方式:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.salesDepartment\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>配送员名称:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.totalAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>配送员手机:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.totalAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>配送时间:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.orderNo\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>所属城市:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.salesDepartment\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>配送站:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.totalAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"6\">\n                <div class=\"grid-content\">\n                  <span>发票内容:</span>\n                  <el-input\n                    placeholder=\"请输入内容\"\n                    size=\"small\"\n                    v-model=\"fromData.totalAmount\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n\n          </el-tab-pane>\n          <!--其它-->\n          <el-tab-pane label=\"其它\" name=\"createInfo\">\n            <el-row :gutter=\"20\">\n              <el-col :span=\"8\">\n                <div class=\"grid-content\">\n                  <span>创建人:</span>\n                  <el-input\n                    placeholder=\"创建人\"\n                    size=\"small\"\n                    v-model=\"fromData.creator\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"8\">\n                <div class=\"grid-content\">\n                  <span>修改人:</span>\n                  <el-input\n                    placeholder=\"修改人\"\n                    size=\"small\"\n                    v-model=\"fromData.operator\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"8\">\n                <div class=\"grid-content\">\n                  <span>审核人:</span>\n                  <el-input\n                    placeholder=\"审核人\"\n                    size=\"small\"\n                    v-model=\"fromData.auditor\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n            <el-row :gutter=\"20\">\n              <el-col :span=\"8\">\n                <div class=\"grid-content\">\n                  <span>创建日期:</span>\n                  <el-input\n                    placeholder=\"创建日期\"\n                    size=\"small\"\n                    v-model=\"fromData.createTime\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"8\">\n                <div class=\"grid-content\">\n                  <span>修改日期:</span>\n                  <el-input\n                    placeholder=\"修改日期\"\n                    size=\"small\"\n                    v-model=\"fromData.updateTime\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n              <el-col :span=\"8\">\n                <div class=\"grid-content\">\n                  <span>审核日期:</span>\n                  <el-input\n                    placeholder=\"审核日期\"\n                    size=\"small\"\n                    v-model=\"fromData.auditTime\"\n                    :disabled=\"true\">\n                  </el-input>\n                </div>\n              </el-col>\n            </el-row>\n          </el-tab-pane>\n        </el-tabs>\n      </template>\n      <!--表单-->\n      <template>\n        <el-tabs type=\"border-card\" v-model=\"activeNameTwo\">\n          <div class=\"btn-wrap\">\n            <el-button size=\"small\" type=\"primary\" @click=\"addTr\">新增</el-button>\n          </div>\n          <el-tab-pane label=\"对账计划\" name=\"collate\"> <!--collate 对账-->\n            <template>\n              <el-table\n                :data=\"fromData.reconciliationPlanInfoList\"\n                border\n                width=\"100%\">\n                <el-table-column\n                  prop=\"name\"\n                  label=\"名称\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.reconciliationPlanInfoList[scope.$index].name\"\n                      placeholder=\"名称\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"money\"\n                  label=\"金额\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.reconciliationPlanInfoList[scope.$index].money\"\n                      placeholder=\"金额\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"settleAmount\"\n                  label=\"已对账金额\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.reconciliationPlanInfoList[scope.$index].settleAmount\"\n                      placeholder=\"已对账金额\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"unsettleAmount\"\n                  label=\"未对账金额\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.reconciliationPlanInfoList[scope.$index].unsettleAmount\"\n                      placeholder=\"未对账金额\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"settlementMoney\"\n                  label=\"已退款金额\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.reconciliationPlanInfoList[scope.$index].settlementMoney\"\n                      placeholder=\"已退款金额\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"unsettlementMoney\"\n                  label=\"未退款金额\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.reconciliationPlanInfoList[scope.$index].unsettlementMoney\"\n                      placeholder=\"名称\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"address\"\n                  label=\"操作\"\n                  width=\"80px\">\n                  <template slot-scope=\"scope\">\n                    <el-button\n                      size=\"mini\"\n                      type=\"danger\"\n                      @click=\"handleDelete(scope.$index, scope.row)\">删除</el-button>\n                  </template>\n                </el-table-column>\n              </el-table>\n            </template>\n          </el-tab-pane>\n          <el-tab-pane label=\"订单明细\" name=\"detail\"><!--detail 明细-->\n            <template>\n              <el-table\n                :data=\"fromData.orderReceivableSupList\"\n                border\n                width=\"100%\">\n                <el-table-column\n                  prop=\"firstCommodityClass\"\n                  label=\"一级类目名称\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].firstCommodityClass\"\n                      placeholder=\"一级类目名称\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"secondCommodityClass\"\n                  label=\"二级类目名称\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].secondCommodityClass\"\n                      placeholder=\"二级类目名称\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"specification\"\n                  label=\"规格\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].specification\"\n                      placeholder=\"规格\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"commodityNum\"\n                  label=\"商品编码\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].commodityNum\"\n                      placeholder=\"商品编码\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"productName\"\n                  label=\"产品名称(SPU名称)\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].productName\"\n                      placeholder=\"产品名称(SPU名称)\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"SKU\"\n                  label=\"SKU编码\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].SKU\"\n                      placeholder=\"SKU编码\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"SKUNum\"\n                  label=\"SKU值\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].SKUNum\"\n                      placeholder=\"SKU值\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"groupSKU\"\n                  label=\"是否为组合商品\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].groupSKU\"\n                      placeholder=\"是否为组合商品\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"productNum\"\n                  label=\"产品数量\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].productNum\"\n                      placeholder=\"产品数量\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"commission\"\n                  label=\"商品门市价\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].commission\"\n                      placeholder=\"商品门市价\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"unitPrice\"\n                  label=\"商品销售价\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].unitPrice\"\n                      placeholder=\"商品销售价\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"commodityOfficialPrice\"\n                  label=\"商品官网价\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].commodityOfficialPrice\"\n                      placeholder=\"商品官网价\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"amount\"\n                  label=\"商品实际售价(总)\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].amount\"\n                      placeholder=\"商品实际售价(总)\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"platformCoupon\"\n                  label=\"商品卡券优惠金额(总)\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].platformCoupon\"\n                      placeholder=\"商品卡券优惠金额(总)\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"commodityReceivablePrice\"\n                  label=\"商品应收金额\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].commodityReceivablePrice\"\n                      placeholder=\"商品应收金额\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"commodityVoucherNumber\"\n                  label=\"商品代金券号\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].commodityVoucherNumber\"\n                      placeholder=\"商品代金券号\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"paymentNumber\"\n                  label=\"支付号\"\n                  width=\"160px\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.orderReceivableSupList[scope.$index].paymentNumber\"\n                      placeholder=\"支付号\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n              </el-table>\n            </template>\n          </el-tab-pane>\n          <el-tab-pane label=\"关联信息\" name=\"relevance\"><!--relevance 关联-->\n            <template>\n              <el-table\n                :data=\"fromData.receivableRelationInfoList\"\n                border\n                width=\"100%\">\n                <el-table-column\n                  prop=\"name\"\n                  label=\"名称\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.receivableRelationInfoList[scope.$index].name\"\n                      placeholder=\"名称\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"money\"\n                  label=\"金额\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.receivableRelationInfoList[scope.$index].money\"\n                      placeholder=\"金额\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"relationMoney\"\n                  label=\"关联金额\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.receivableRelationInfoList[scope.$index].settleAmount\"\n                      placeholder=\"已对账金额\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"transNum\"\n                  label=\"交易流水号\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.receivableRelationInfoList[scope.$index].unsettleAmount\"\n                      placeholder=\"未对账金额\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"settleNum\"\n                  label=\"结算单号\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.receivableRelationInfoList[scope.$index].settlementMoney\"\n                      placeholder=\"已退款金额\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"bankNum\"\n                  label=\"银行流水号\">\n                  <template slot-scope=\"scope\">\n                    <el-input\n                      size=\"mini\"\n                      v-model=\"fromData.receivableRelationInfoList[scope.$index].name\"\n                      placeholder=\"名称\">\n                    </el-input>\n                  </template>\n                </el-table-column>\n                <el-table-column\n                  prop=\"address\"\n                  label=\"操作\"\n                  width=\"80px\">\n                  <template slot-scope=\"scope\">\n                    <el-button\n                      size=\"mini\"\n                      type=\"danger\"\n                      @click=\"handleDelete(scope.$index, scope.row)\">删除</el-button>\n                  </template>\n                </el-table-column>\n              </el-table>\n            </template>\n          </el-tab-pane>\n        </el-tabs>\n      </template>\n\n      <button @click=\"getData\">console</button>\n    </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  import {getOrderReceivable} from '../../../axios/api'\n  export default {\n      name: 'orderDetail',\n      data () {\n        return {\n          getLocalDataList: null, //请求的数据\n          index: null,\n          activeNameOne: 'basicInfo',//v-model默认选中的tab\n          activeNameTwo: 'collate',//v-model默认选中的tab\n          fromData: { //新增储存的数据\n            /*\n             * 基本信息\n             * */\n            orderType: null,//单据类型\n            businessDate: null,//业务日期\n            settleStatus: null,//对账状态\n            reconStatus: null,//退款状态\n            billNo: null,//单据编号\n            totalAmount: null,//对账金额\n            settleAmount: null,//已对账金额\n            settlementMoney: null,//已退款金额\n            platform: null,//平台\n            orderNo: null,//平台订单号\n            unsettleAmount: null,//未对账金额\n            unsettlementMoney: null,//未退款金额\n            salesCompany: null,//销售公司\n            salesDepartment: null,//销售部门\n            status: null,//单据状态\n            remarks: null,//备注\n            salesman: null,//销售员\n            differenceProcessingRamarks: null,//差异处理原因\n            differenceProcessingAmount: null,//差异处理金额\n            differenceProcessingStatus: null,//是否差异处理\n            /*\n            * 订单信息\n            * */\n            orderTotalAmount: null, //订单总金额\n            orderInitAmount: null, //订单初始支付金\n            orderReceiveAmount: null, //订单货到应收\n            freight: null, //运费\n            orderDiscountAmount: null, //订单优惠抵扣\n            couponName: null, //优惠券名称\n            orderStatus: null, //订单状态\n            payState: null, //支付状态\n            payType: null, //支付方式\n            cancelReason: null, //取消理由\n            haveOtherOrder: null, //是否拆单\n            orderTypeBelong: null, //所属订单类型\n            groupPurchaseVerificationCode: null, //团购验证码\n            orderPickUpEmp: null, //接单人\n            orderOperator: null, //操作人\n            /*\n            * 配送信息\n            * */\n            orderer: null,//订货人\n            ordererPhone: null,//订货人电话\n            deliveryTime: null,//下单时间(配送时间)\n            store: null,//门店\n            receiver: null,//收货人\n            receiverPhone: null,//收货人电话\n            receiverAddress: null,//收货人地址\n            delivery: null,//配送方式\n            deliveryMan: null,//配送员名称\n            deliveryManPhone: null,//配送员手机\n            sendArea: null,//所属城市\n            sendStation: null,//配送站\n            invoiceContent: null,//发票内容\n            /*\n            * 其它\n            * */\n            creator: null,//创建人\n            createTime: null,//创建日期\n            operator: null,//修改人\n            updateTime: null,//修改日期\n            auditor: null,//审核人\n            auditTime: null,//审核日期\n            reconciliationPlanInfoList:[{//对账计划\n                name: null,\n                money: null,\n                settleAmount: null,\n                unsettleAmount: null,\n                settlementMoney: null,\n                unsettlementMoney: null\n              }\n            ],\n            orderReceivableSupList:[{//订单明细\n              firstCommodityClass: null,//一级类目名称\n              secondCommodityClass: null,//二级类目名称\n              commodityName: null,//商品名称\n              specification: null,//规格\n              commodityNum: null,//商品编码\n              productName: null,//产品名称\n              SKU: null,//SKU编码\n              SKUNum: null,//SKU值\n              groupSKU: null,//是否为组合商品\n              productNum: null,//商品数量\n              commission: null,//商品门市价\n              unitPrice: null,//商品销售价\n              //商品活动价(总)\n              commodityOfficialPrice: null,//商品官网价\n              amount: null,//商品实际售价(总)\n              platformCoupon: null,//商品卡券优惠金额(总)\n              commodityReceivablePrice: null,//商品应收金额\n              commodityVoucherNumber: null,//商品代金券号\n              paymentNumber: null,//支付号\n            }],\n            receivableRelationInfoList:[{//关联信息\n              name: null, //名称\n              money: null,//金额\n              relationMoney: null,//关联金额\n              transNum: null,//交易流水号\n              settleNum: null ,//结算单号\n              bankNum: null,//银行流水号\n            }],\n          },\n          orderTypeSelect: [{ //单据类型\n            value: '0',\n            label: '平台订单'\n          }, {\n            value: '1',\n            label: '手工订单'\n          }],\n          reconStatusSelect: [{ //退款状态\n            value: 'Part',\n            label: '部分退款'\n          },{\n              value: 'Completely',\n              label: '完全退款'\n          }],\n          haveOtherOrder: [{\n              value: '1',\n              label: '是'\n          },{\n              value: '0',\n              label: '否'\n          }],\n        }\n      },\n      mounted(){\n          this.getLocalData()\n      },\n      computed: {\n        ...mapState({\n          orderListUUid: store => store.orderListUUid\n        }),\n      },\n      methods: {\n        getLocalData(){ // 请求数据\n          getOrderReceivable().then(res => {\n//            this.getLocalDataList = res.data.rows;\n          })\n        },\n        getData(){\n          console.log(this.fromData);\n        },\n        handleDelete(index) { //删除\n          let name = this.activeNameTwo;\n            if(name === 'collate'){\n              this.fromData.reconciliationPlanInfoList.splice(index,1)\n            }else if(name ==='relevance'){\n              this.fromData.receivableRelationInfoList.splice(index,1)\n            }\n          console.log(index);\n        },\n        addTr(){ /*新增(对账计划订单明细关联信息)*/\n          let name = this.activeNameTwo;\n          if(name === 'collate'){\n            this.fromData.reconciliationPlanInfoList.push({\n              name: null,\n              money: null,\n              settleAmount: null,\n              unsettleAmount: null,\n              settlementMoney: null,\n              unsettlementMoney: null,\n            })\n          }else if(name === 'detail'){\n              this.fromData.orderReceivableSupList.push({\n                firstCommodityClass: null,//一级类目名称\n                secondCommodityClass: null,//二级类目名称\n                commodityName: null,//商品名称\n                specification: null,//规格\n                commodityNum: null,//商品编码\n                productName: null,//产品名称\n                SKU: null,//SKU编码\n                SKUNum: null,//SKU值\n                groupSKU: null,//是否为组合商品\n                productNum: null,//商品数量\n                commission: null,//商品门市价\n                unitPrice: null,//商品销售价\n                //商品活动价(总)\n                commodityOfficialPrice: null,//商品官网价\n                amount: null,//商品实际售价(总)\n                platformCoupon: null,//商品卡券优惠金额(总)\n                commodityReceivablePrice: null,//商品应收金额\n                commodityVoucherNumber: null,//商品代金券号\n                paymentNumber: null,//支付号\n              })\n          }else if(name ==='relevance'){\n              this.fromData.receivableRelationInfoList.push({//关联信息\n                name: null, //名称\n                money: null,//金额\n                relationMoney: null,//关联金额\n                transNum: null,//交易流水号\n                settleNum: null ,//结算单号\n                bankNum: null,//银行流水号\n              })\n          }\n\n        }\n      }\n    }\n</script>\n<style scoped>\n\n\n</style>\n"
  },
  {
    "path": "src/page/login/login.vue",
    "content": "<template>\n    <div class=\"loginContainer\">\n      <div class=\"loginTitle\">{{$t('h.system')}}</div>\n      <div class=\"loginForm\">\n        <el-form\n          :model=\"ruleForm\" :rules=\"rules\" ref=\"ruleForm\" label-width=\"0px\" class=\"demo-ruleForm\">\n          <el-form-item prop=\"username\">\n            <el-input\n              v-model=\"ruleForm.username\"\n              size=\"small\"\n              :placeholder=\"$t('h.accounts')\"></el-input>\n          </el-form-item>\n          <el-form-item prop=\"password\">\n            <el-input\n              v-model=\"ruleForm.password\"\n              type=\"password\"\n              size=\"small\"\n              :placeholder=\"$t('h.password')\">\n            </el-input>\n          </el-form-item>\n          <el-form-item prop=\"mobileCode\">\n            <div class=\"captcha-wrap el-form-item\">\n              <el-input\n                :placeholder=\"$t('h.code')\"\n                size=\"small\"\n                maxlength=\"6\"\n                v-model=\"ruleForm.codeNumber\"\n                @keyup.enter.native=\"submitForm('ruleForm')\"></el-input>\n              <div class=\"captcha-img\">\n                <img @click=\"getCaptchaCode\" src=\"../../images/captcha.png\" alt=\"\" class=\"captcha\">\n              </div>\n            </div>\n          </el-form-item>\n          <div class=\"login-btn\">\n            <el-button type=\"primary\" @click=\"submitForm('ruleForm')\">{{$t('h.login')}}</el-button>\n          </div>\n          <p style=\"font-size:12px;line-height:30px;color:#999;\">Tips:{{$t('h.tips')}}</p>\n        </el-form>\n      </div>\n    </div>\n</template>\n\n<script>\n  import {lookOption,getcaptchas} from '../../axios/api'\n    export default {\n        name: 'HelloWorld',\n        data () {\n            return {\n              showPassword: false, // 是否显示密码\n              captchaCodeImg:'',\n              userInfo:null,//用户信息\n              alertText: null, //提示的内容\n              ruleForm: {\n                username: this.$t('h.administrator'),//账号\n                password: '123456',//密码\n                codeNumber:'wyrf',//验证码\n              },\n              rules: {\n                username: [\n                  { required: true, message: this.$t('h.placeUser'), trigger: 'blur' }\n                ],\n                password: [\n                  { required: true, message: this.$t('h.palcePass'), trigger: 'blur' }\n                ],\n                codeNumber: [\n                  { required: true, message: this.$t('h.palceCode'), trigger: 'blur'}\n                ]\n              }\n            }\n        },\n      created(){\n          this.getCaptchaCode()\n      },\n      mounted(){\n\n      },\n      methods: {\n        //获取验证码\n         getCaptchaCode(){\n          console.log('刷新验证码');\n          getcaptchas().then(res=>{\n\n          }).catch(res=>{\n\n          })\n        },\n        //登陆\n         submitForm(formName) {\n          const that = this;\n          this.$refs[formName].validate((valid) => {\n            if (valid) {\n              this.$router.push('/chart');\n\n              lookOption(this.ruleForm.username,this.ruleForm.password,this.ruleForm.codeNumber).then(res=>{\n               that.userInfo = res;\n               //如果返回的值不正确，则弹出提示框，返回的值正确则进入home\n               if(!that.userInfo.data){\n                 this.$message.error(  that.userInfo.statusText);\n                 that.getCaptchaCode();\n               }else{\n                 localStorage.setItem('lz_userName', this.ruleForm.username);\n                 localStorage.setItem('lz_passNumber', this.ruleForm.password);\n                 //跳转\n                  this.$router.push('/chart');\n               }\n             });\n            }else{\n              return false;\n            }\n          })\n        }\n      }\n    }\n</script>\n<style scoped>\n  .loginContainer{\n    position: relative;\n    width: 100%;\n    height: 100%;\n    background: #24292e;\n  }\n  .loginForm{\n    position: absolute;\n    top:50%;\n    left:50%;\n    -webkit-transform: translate(-50%,-50%);\n    -moz-transform: translate(-50%,-50%);\n    -ms-transform: translate(-50%,-50%);\n    -o-transform: translate(-50%,-50%);\n    transform: translate(-50%,-50%);\n    padding:40px 40px 0 40px;\n    width: 300px;\n    /*height:160px;*/\n    border-radius: 5px;\n    background: #fff;\n  }\n  .loginTitle{\n    position: absolute;\n    top:50%;\n    left:50%;\n    -webkit-transform: translate(-50%,-50%);\n    -moz-transform: translate(-50%,-50%);\n    -ms-transform: translate(-50%,-50%);\n    -o-transform: translate(-50%,-50%);\n    transform: translate(-50%,-50%);\n    margin-top: -210px;\n    font-size: 30px;\n    font-weight: 600;\n    color: #fff;\n  }\n  .login-btn button{\n    width: 100%;\n  }\n\n  /*验证图片*/\n  .captcha-wrap{\n    display: flex;\n    align-items: center;\n    height: 30px;\n    width:100%;\n  }\n  .captcha-wrap .el-input{\n    flex: 1;\n  }\n  .captcha-img{\n    margin-left: 10px;\n    height: 100%;\n    width: 100px;\n  }\n  .captcha{\n    width: 100%;\n    height: 100%;\n  }\n\n</style>\n"
  },
  {
    "path": "src/page/reportForms/OrderSummary.vue",
    "content": "<template>\n    <div class=\"orderSummary\">\n      <h3 class=\"head_title\">订单执行汇总表</h3>\n      <batchStatement></batchStatement>\n      <template>\n        <el-row>\n          <el-button size=\"small\" type=\"primary\" @click=\"transformStatus\">条件查询</el-button>\n          <el-button size=\"small\" type=\"primary\">导出</el-button>\n        </el-row>\n      </template>\n      <template>\n        <el-card class=\"box-card\">\n          <el-form :model=\"form\">\n            <el-row >\n              <el-col  :md=\"8\" >\n                <el-form-item label=\"业务日期\" :label-width=\"formLabelWidth\">\n                    <div class=\"block\">\n                      <el-date-picker\n                        size=\"small\"\n                        v-model=\"form.time\"\n                        type=\"datetimerange\"\n                        start-placeholder=\"开始日期\"\n                        end-placeholder=\"结束日期\"\n                        :default-time=\"['12:00:00']\">\n                      </el-date-picker>\n                    </div>\n                  </el-form-item>\n              </el-col>\n              <el-col  :md=\"8\" >\n                <el-form-item label=\"单据状态\" :label-width=\"formLabelWidth\">\n                  <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择单据状态\">\n                    <el-option label=\"全部\" value=\"shanghai\"></el-option>\n                    <el-option label=\"保存\" value=\"Save\"></el-option>\n                    <el-option label=\"审核\" value=\"Audited\"></el-option>\n                  </el-select>\n                </el-form-item>\n              </el-col>\n              <el-col  :md=\"8\" >\n                <el-form-item label=\"对账状态\" :label-width=\"formLabelWidth\">\n                  <el-select disable size=\"small\" v-model=\"form.checkState\" placeholder=\"请选择对账状态\">\n                    <el-option label=\"全部\" value=\"shanghai\"></el-option>\n                    <el-option label=\"未对账\" value=\"UnSettled\"></el-option>\n                    <el-option label=\"部份对账\" value=\"Part\"></el-option>\n                    <el-option label=\"全部对账\" value=\"Completely\"></el-option>\n                  </el-select>\n                </el-form-item>\n              </el-col>\n            </el-row>\n            <el-row>\n              <el-col :md=\"8\">\n                <el-form-item label=\"是否差异处理\" :label-width=\"formLabelWidth\">\n                  <el-select disable size=\"small\" v-model=\"form.differenceStatus\" placeholder=\"请选择是否差异处理\">\n                    <el-option label=\"全部\" value=\"shanghai\"></el-option>\n                    <el-option label=\"是\" value=\"Y\"></el-option>\n                    <el-option label=\"否\" value=\"N\"></el-option>\n                  </el-select>\n                </el-form-item>\n              </el-col>\n              <el-col :md=\"8\">\n                <el-form-item label=\"退款状态\" :label-width=\"formLabelWidth\">\n                  <el-select disable size=\"small\" v-model=\"form.refundStatus\" placeholder=\"请选择退款状态\">\n                    <el-option label=\"全部\" value=\"shanghai\"></el-option>\n                    <el-option label=\"未退款\" value=\"UnSettled\"></el-option>\n                    <el-option label=\"部分退款\" value=\"Part\"></el-option>\n                    <el-option label=\"全部退款\" value=\"Completely\"></el-option>\n                  </el-select>\n                </el-form-item>\n              </el-col>\n              <el-col :md=\"8\">\n                <el-form-item label=\"来源平台\" :label-width=\"formLabelWidth\">\n                  <el-input disable size=\"mini\" v-model=\"form.platform\" placeholder=\"请输入来源平台\"></el-input>\n                </el-form-item>\n              </el-col>\n            </el-row>\n            <el-row>\n              <el-col :md=\"8\">\n                <el-form-item label=\"销售公司\" :label-width=\"formLabelWidth\">\n                  <el-input  disable size=\"mini\" v-model=\"form.company\" placeholder=\"请输入内容\"></el-input>\n                </el-form-item>\n              </el-col>\n            </el-row>\n          </el-form>\n        </el-card>\n      </template>\n      <template>\n        <el-table\n          border\n          v-loading=\"loading\"\n          ref=\"OrderTable\"\n          :data=\"getLocalDataList\"\n          highlight-current-row\n          height=\"300\"\n          @row-click=\"handleSelectedRow\"\n          @selection-change=\"handleSelectionChange\">\n          <el-table-column\n            type=\"selection\"\n            width=\"60\">\n          </el-table-column>\n          <el-table-column\n            prop=\"billNo\"\n            label=\"单据编号\"\n            width=\"200\">\n          </el-table-column>\n          <el-table-column\n            prop=\"platform\"\n            label=\"平台\"\n            width=\"200\">\n          </el-table-column>\n          <el-table-column\n            prop=\"orderNo\"\n            label=\"平台订单号\"\n            width=\"250\">\n          </el-table-column>\n          <el-table-column\n            prop=\"totalAmount\"\n            label=\"总金额\"\n            width=\"80\">\n          </el-table-column>\n          <el-table-column\n            prop=\"status\"\n            label=\"单据状态\"\n            width=\"90\"\n            :formatter=\"formatStatus\">\n          </el-table-column>\n          <el-table-column\n            prop=\"businessDate\"\n            label=\"业务日期\"\n            width=\"100\"\n            :formatter=\"formatTime\">\n          </el-table-column>\n          <el-table-column\n            prop=\"settleStatus\"\n            label=\"对账状态\"\n            width=\"100\"\n            :formatter=\"formatSettleStatus\">\n          </el-table-column>\n          <el-table-column\n            prop=\"settleAmount\"\n            label=\"已对账金额\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"unsettleAmount\"\n            label=\"未对账金额\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"differenceProcessingStatus\"\n            label=\"差异处理状态\"\n            width=\"110\"\n            :formatter=\"formatDifferenceProcessingStatus\">\n          </el-table-column>\n          <el-table-column\n            prop=\"differenceProcessingAmount\"\n            label=\"差异处理金额\"\n            width=\"110\">\n          </el-table-column>\n          <el-table-column\n            prop=\"differenceProcessingRamarks\"\n            label=\"差异处理原因\"\n            width=\"130\">\n          </el-table-column>\n          <el-table-column\n            prop=\"reconStatus\"\n            label=\"退款状态\"\n            width=\"100\"\n            :formatter=\"formatReconStatus\">\n          </el-table-column>\n          <el-table-column\n            prop=\"unsettlementMoney\"\n            label=\"未退款金额\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"settlementMoney\"\n            label=\"已退款金额\"\n            width=\"100\">\n          </el-table-column>\n\n          <el-table-column\n            prop=\"orderType\"\n            label=\"单据类型\"\n            width=\"100\"\n            :formatter=\"formatOrderType\">\n          </el-table-column>\n          <el-table-column\n            prop=\"orderTotalAmount\"\n            label=\"订单总金额\"\n            width=\"100\">\n          </el-table-column>\n\n        </el-table>\n\n\n      </template>\n      <template>\n        <div class=\"pagination\">\n          <el-pagination\n            @size-change=\"handleSizeChange\"\n            @current-change=\"handleCurrentChange\"\n            :current-page=\"currentPage4\"\n            :page-sizes=\"[100, 200, 300, 400]\"\n            :page-size=\"100\"\n            layout=\"total, sizes, prev, pager, next, jumper\"\n            :total=\"400\">\n          </el-pagination>\n        </div>\n      </template>\n    </div>\n</template>\n\n<script>\n  import {getOrderReceivable} from '../../axios/api'\n  import batchStatement from '../../components/filterBox/batchStatement'\n    export default {\n        name: 'orderSummary',\n        components: {\n          batchStatement\n        },\n        data () {\n            return {\n              formLabelWidth: '120px',\n              form: {\n                time: '',//时间\n                documentsState: '',//单据状态\n                checkState: '', //对账状态\n                differenceStatus: '',//差异处理状态\n                refundStatus: '',//退款状态\n                platform: '',//平台\n                company: '',//公司\n              },\n              currentPage4:0,\n              loading: true,\n              getLocalDataList: [],//请求的数据\n            }\n        },\n        mounted() {\n          this.getLocalData()\n        },\n        methods: {\n          transformStatus(){\n            this.$store.dispatch('dialogFromStatement')\n          },\n          getLocalData(){\n            getOrderReceivable().then(res=>{\n              console.log(123);\n              if(res.status === 200){\n                this.getLocalDataList = res.data.rows;\n                this.loading = false;\n              }\n\n            })\n          },\n          //点击行\n          handleSelectedRow(row){\n            this.$refs.OrderTable.toggleRowSelection(row);\n          },\n          handleSizeChange(val) {\n            console.log(`每页 ${val} 条`);\n          },\n          handleCurrentChange(val) {\n            console.log(`当前页: ${val}`);\n          },\n          //当选择项发生变化时会触发该事件\n          handleSelectionChange(val){\n            this.handSelectDataList = val;\n          },\n          //数格式转换\n          formatTime(row) { //转换时间\n            return new Date(row.businessDate);\n          },\n          formatStatus(row) { //单据状态\n            return (row.status === 'Save' && '保存') || (row.status === 'Audited' && '审核');\n          },\n          formatSettleStatus(row) { //对账状态\n            return (row.settleStatus === \"UnSettled\" && '未对账') || (row.settleStatus === \"Part\" && '部分对账') || (row.settleStatus === 'Completely' && '完全对账');\n          },\n          formatDifferenceProcessingStatus(row) { //差异处理状态\n            return (row.differenceProcessingStatus === \"Y\" && '是') || (row.differenceProcessingStatus === \"N\" && '否');\n          },\n          formatReconStatus(row) { //退款状态\n            return (row.reconStatus === 'UnSettled' && '未退款') || (row.reconStatus === 'Part' && '部分退款') || (row.reconStatus === 'Completely' && '完全退款')\n          },\n\n          formatOrderType(row) {\n            //退款状态\n            return (row.orderType === '0' && '平台订单') || (row.orderType === '1' && '手工订单')\n          },\n        }\n    }\n</script>\n<style scoped>\n  .el-row .el-date-editor,.el-input,.el-select{\n    width: 100%;\n    max-width: 220px;\n  }\n  .box-card .el-row{\n    margin-bottom: 0;\n  }\n  .el-form-item{\n    margin-bottom: 10px;\n  }\n  .box-card{\n    margin-bottom: 20px;\n    padding-bottom: 0;\n  }\n</style>\n"
  },
  {
    "path": "src/page/reportForms/ReceivablesBalance.vue",
    "content": "<template>\n    <div class=\"order-receivable\">\n      <h3 class=\"head_title\">收款对账余额表</h3>\n      <batchStatement></batchStatement>\n      <template>\n        <el-row>\n          <el-button size=\"mini\" type=\"primary\" @click=\"transformStatus\">条件查询</el-button>\n          <el-button size=\"mini\" type=\"primary\">导出</el-button>\n        </el-row>\n      </template>\n      <template>\n        <el-form :model=\"form\">\n          <el-row >\n            <el-col  :md=\"8\" >\n              <el-form-item label=\"业务日期\" :label-width=\"formLabelWidth\">\n                <div class=\"block\">\n                  <el-date-picker\n                    size=\"small\"\n                    v-model=\"form.time\"\n                    type=\"daterange\"\n                    range-separator=\"至\"\n                    start-placeholder=\"开始日期\"\n                    end-placeholder=\"结束日期\">\n                    </el-date-picker>\n                </div>\n              </el-form-item>\n            </el-col>\n          </el-row>\n        </el-form>\n      </template>\n      <template>\n        <el-row :gutter=\"20\">\n          <el-col :span=\"12\">\n            <el-card class=\"box-card\">\n              <h5>订单应收未对账</h5>\n              <el-form :model=\"form\">\n                <el-row >\n                  <el-col  :md=\"12\" >\n                    <el-form-item label=\"期初余额:\" :label-width=\"formLabelWidth\">\n                      <el-input size=\"mini\"  placeholder=\"请输入内容\"></el-input>\n                    </el-form-item>\n                  </el-col>\n                  <el-col  :md=\"12\" >\n                    <el-form-item label=\"本期总金额:\" :label-width=\"formLabelWidth\">\n                      <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择单据状态\">\n                        <el-option label=\"全部\" value=\"shanghai\"></el-option>\n                        <el-option label=\"保存\" value=\"Save\"></el-option>\n                        <el-option label=\"审核\" value=\"Audited\"></el-option>\n                      </el-select>\n                    </el-form-item>\n                  </el-col>\n                </el-row>\n                <el-row >\n                  <el-col  :md=\"12\" >\n                    <el-form-item label=\"本期已对账:\" :label-width=\"formLabelWidth\">\n                      <el-input size=\"mini\"  placeholder=\"请输入内容\"></el-input>\n                    </el-form-item>\n                  </el-col>\n                  <el-col  :md=\"12\" >\n                    <el-form-item label=\"对后期末余额:\" :label-width=\"formLabelWidth\">\n                      <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择单据状态\">\n                        <el-option label=\"全部\" value=\"shanghai\"></el-option>\n                        <el-option label=\"保存\" value=\"Save\"></el-option>\n                        <el-option label=\"审核\" value=\"Audited\"></el-option>\n                      </el-select>\n                    </el-form-item>\n                  </el-col>\n                </el-row>\n              </el-form>\n              <template>\n                <h5>订单明细</h5>\n                <el-table\n                  border\n                  v-loading=\"loading\"\n                  ref=\"OrderTable\"\n                  :data=\"getLocalDataList\"\n                  highlight-current-row\n                  height=\"300\">\n                  <el-table-column\n                    type=\"selection\"\n                    width=\"60\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"billNo\"\n                    label=\"单据编号\"\n                    width=\"200\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"platform\"\n                    label=\"平台\"\n                    width=\"200\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderNo\"\n                    label=\"平台订单号\"\n                    width=\"250\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"totalAmount\"\n                    label=\"总金额\"\n                    width=\"80\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"businessDate\"\n                    label=\"业务日期\"\n                    width=\"100\"\n                    :formatter=\"formatTime\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settleAmount\"\n                    label=\"已对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"unsettleAmount\"\n                    label=\"未对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderTotalAmount\"\n                    label=\"订单总金额\"\n                    width=\"100\">\n                  </el-table-column>\n                </el-table>\n              </template>\n            </el-card>\n          </el-col>\n          <el-col :span=\"12\">\n            <el-card class=\"box-card\">\n              <h5>交易流水未对账</h5>\n              <el-form :model=\"form\">\n                <el-row >\n                  <el-col  :md=\"12\" >\n                    <el-form-item label=\"期初余额:\" :label-width=\"formLabelWidth\">\n                      <el-input size=\"mini\"  placeholder=\"请输入内容\"></el-input>\n                    </el-form-item>\n                  </el-col>\n                  <el-col  :md=\"12\" >\n                    <el-form-item label=\"本期总金额:\" :label-width=\"formLabelWidth\">\n                      <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择单据状态\">\n                        <el-option label=\"全部\" value=\"shanghai\"></el-option>\n                        <el-option label=\"保存\" value=\"Save\"></el-option>\n                        <el-option label=\"审核\" value=\"Audited\"></el-option>\n                      </el-select>\n                    </el-form-item>\n                  </el-col>\n                </el-row>\n                <el-row >\n                  <el-col  :md=\"12\" >\n                    <el-form-item label=\"本期已对账:\" :label-width=\"formLabelWidth\">\n                      <el-input size=\"mini\"  placeholder=\"请输入内容\"></el-input>\n                    </el-form-item>\n                  </el-col>\n                  <el-col  :md=\"12\" >\n                    <el-form-item label=\"对后期末余额:\" :label-width=\"formLabelWidth\">\n                      <el-select size=\"small\" v-model=\"form.documentsState\" placeholder=\"请选择单据状态\">\n                        <el-option label=\"全部\" value=\"shanghai\"></el-option>\n                        <el-option label=\"保存\" value=\"Save\"></el-option>\n                        <el-option label=\"审核\" value=\"Audited\"></el-option>\n                      </el-select>\n                    </el-form-item>\n                  </el-col>\n                </el-row>\n              </el-form>\n              <template>\n                <h5>流水明细</h5>\n                <el-table\n                  border\n                  v-loading=\"loading\"\n                  ref=\"OrderTable\"\n                  :data=\"getLocalDataList\"\n                  highlight-current-row\n                  height=\"300\">\n                  <el-table-column\n                    type=\"selection\"\n                    width=\"60\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"billNo\"\n                    label=\"单据编号\"\n                    width=\"200\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"platform\"\n                    label=\"平台\"\n                    width=\"200\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderNo\"\n                    label=\"平台订单号\"\n                    width=\"250\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"totalAmount\"\n                    label=\"总金额\"\n                    width=\"80\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"businessDate\"\n                    label=\"业务日期\"\n                    width=\"100\"\n                    :formatter=\"formatTime\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"settleAmount\"\n                    label=\"已对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"unsettleAmount\"\n                    label=\"未对账金额\"\n                    width=\"100\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"orderTotalAmount\"\n                    label=\"订单总金额\"\n                    width=\"100\">\n                  </el-table-column>\n                </el-table>\n              </template>\n            </el-card>\n          </el-col>\n        </el-row>\n      </template>\n    </div>\n</template>\n\n<script>\n  import {getOrderReceivable} from '../../axios/api'\n  import moment from 'moment'\n\n  import batchStatement from '../../components/filterBox/batchStatement'\n    export default {\n        name: 'orderReceivable',\n        components: {\n          batchStatement\n        },\n        data () {\n            return {\n              formLabelWidth: '120px',\n              loading: true,\n              form: {\n                time: '',//时间\n                documentsState: '',//单据状态\n                checkState: '', //对账状态\n                differenceStatus: '',//差异处理状态\n                refundStatus: '',//退款状态\n                platform: '',//平台\n                company: '',//公司\n              },\n              getLocalDataList: [], //请求的数据\n            }\n        },\n        mounted(){\n          this.getLocalData()\n        },\n        methods: {\n          transformStatus(){\n            this.$store.dispatch('dialogFromStatement')\n          },\n          getLocalData(){\n            getOrderReceivable().then(res=>{\n              console.log(123);\n              if(res.status === 200){\n                this.getLocalDataList = res.data.rows;\n                this.loading = false;\n              }\n            })\n          },\n          //数格式转换\n          formatTime(row) { //转换时间\n            if(row.businessDate){\n              return moment(row.businessDate).format(\"YYYY-MM-DD\");\n            }\n          },\n        }\n    }\n</script>\n<style scoped>\n  .el-row .el-date-editor,.el-input,.el-select{\n    width: 100%;\n    max-width: 300px;\n  }\n  .el-form-item{\n  margin-bottom:0;\n}\n  .container .el-row{\n    height:auto;\n  }\n  .el-row{\n    margin-bottom: 0;\n  }\n  h5{\n    margin: 0;\n  }\n  .el-table{\n    margin-top: 8px;\n  }\n</style>\n"
  },
  {
    "path": "src/page/set/structure.vue",
    "content": "<template>\n  <div class=\"platform-setup\">\n    <h3 class=\"head_title\">平台管理</h3>\n    <div class=\"search-btn\">\n      <div class=\"search\">\n        <el-input v-model=\"searchText\" size=\"mini\" placeholder=\"请输入内容\"></el-input>\n        <el-button type=\"primary\" size=\"mini\" @click=\"searchClick\">搜索</el-button>\n      </div>\n      <div class=\"btn-box\">\n        <el-button type=\"primary\" size=\"mini\" @click=\"addPlat\">新增</el-button>\n        <el-button type=\"success\" size=\"mini\" @click=\"modify\">修改</el-button>\n        <el-button type=\"danger\" size=\"mini\" @click=\"ordPlatformDele\">删除</el-button>\n      </div>\n    </div>\n    <template>\n      <el-table\n        fit\n        border\n        :data=\"dataPlatform\"\n        @row-click=\"platformDefult\"\n        highlight-current-row\n        height=\"335\">\n        <el-table-column\n          type=\"index\"\n          label=\"序号\"\n          width=\"100\">\n        </el-table-column>\n        <el-table-column\n          prop=\"number\"\n          label=\"渠道编码\"\n          width=\"180\">\n        </el-table-column>\n        <el-table-column\n          prop=\"name\"\n          label=\"渠道名称\"\n          width=\"140\">\n        </el-table-column>\n        <el-table-column\n          prop=\"payChannelName\"\n          label=\"渠道类型\"\n          width=\"140\">\n        </el-table-column>\n        <el-table-column\n          prop=\"remarks\"\n          label=\"备注\"\n          width=\"280\">\n        </el-table-column>\n        <el-table-column\n          prop=\"mchId\"\n          label=\"商户号\"\n          width=\"140\">\n        </el-table-column>\n        <el-table-column\n          prop=\"companyName\"\n          label=\"所属公司\"\n          width=\"280\">\n        </el-table-column>\n\n      </el-table>\n    </template>\n    <template>\n      <div class=\"pagination\">\n        <el-pagination\n          @size-change=\"handleSizeChange\"\n          @current-change=\"handleCurrentChange\"\n          :current-page=\"business.selectPageNumber\"\n          :page-sizes=\"[100, 200, 300, 400]\"\n          :page-size=\"100\"\n          layout=\"total, sizes, prev, pager, next, jumper\"\n          :total=\"business.total\">\n        </el-pagination>\n      </div>\n    </template>\n    <hzl-dialog :show=\"model\"></hzl-dialog>\n  </div>\n\n</template>\n\n<script>\n  export default {\n    name: \"platformSetup\",\n    data() {\n      return {\n        model: false,\n        // selectedId: '',//选中的id\n        inputValue: '',\n        dataPlatform: [\n          {\n            number:\"666\",\n            name:'平台1',\n            payChannelName:'幸福西饼',\n            remarks:'这是个备注',\n            mchId:'商户号',\n            companyName:'鲁班七号公司',\n            id:'1',\n\n          }\n        ], //请求data\n        business: {\n          pageNumber: 1, //第几页\n          pageSize: 100, //每页展示数\n          total: 0, //总页数\n          selectPageNumber: 1 //选中的页数\n        },\n        searchText:'',\n        selectId:''\n      }\n    },\n    watch: {\n      $route(to, from) {\n        console.log(to);\n        if(to.fullPath =='/payChannel'){\n          this.getData();\n        }\n      }\n    },\n    mounted() {\n      this.getData()\n    },\n    methods: {\n\n      //新增\n      addPlat(){\n\n      },\n      //修改\n      modify(){\n        this.model = true;\n      },\n      //查询\n      searchClick: function() {\n        var searchmin = this.searchText;\n        this.getData();\n      },\n      getData() { //请求数据\n        var searchmin = this.searchText;\n        //此为请求data接口\n\n      },\n      //点击事件\n      platformDefult: function(row) {\n        this.selectId = row.id;\n        console.log(this.selectId)\n      },\n      handleSizeChange(val) { // 选择请求每页页数\n        this.business.pageSize = val;\n        this.getData()\n      },\n      handleCurrentChange(val) { //翻页\n        this.business.pageNumber = val;\n        this.getData()\n      },\n      ordPlatformDele() {\n        if(this.selectId) {\n         //删除接口\n//          {\n//\n//          }\n        }else{\n          this.$message.error('请选择要删除的平台')\n        }\n      }\n    }\n  }\n</script>\n\n<style scoped>\n  .search-btn{\n    display: -webkit-box;\n    display: flex;\n    padding: 15px 0;\n  }\n  .search-btn>div{\n    flex: 1;\n  }\n  .btn-box{\n    justify-content: flex-end;\n    display: flex;\n  }\n  .search{\n    display: -webkit-box;\n    display: flex;\n  }\n  .search .el-input{\n    margin-right: 10px;\n    width: 150px;\n  }\n\n</style>\n"
  },
  {
    "path": "src/page/set/updatePWD.vue",
    "content": "<template>\n  <div class=\"update-PWD\">\n     <el-form\n          :model=\"ruleForm\" :rules=\"rules\" ref=\"ruleForm\" label-width=\"0px\" class=\"demo-ruleForm\">\n          <el-form-item prop=\"oldpassword\">\n            <label for=\"\">原密码:</label>\n            <el-input\n              type=\"password\"\n              v-model=\"ruleForm.oldpassword\"\n              size=\"small\"\n              placeholder=\"原密码:\"></el-input>\n          </el-form-item>\n          <el-form-item prop=\"newpassword\">\n            <label for=\"\">新密码:</label>\n            <el-input\n              v-model=\"ruleForm.newpassword\"\n              type=\"password\"\n              size=\"small\"\n              placeholder=\"新密码:\">\n            </el-input>\n          </el-form-item>\n          <el-form-item prop=\"password\">\n            <label for=\"\">确认密码:</label>\n            <el-input\n              v-model=\"ruleForm.password\"\n              type=\"password\"\n              size=\"small\"\n              placeholder=\"确认密码:\">\n            </el-input>\n          </el-form-item>\n          <div class=\"login-btn\">\n            <el-button type=\"primary\" @click=\"submitForm('ruleForm')\">提交</el-button>\n          </div>\n\n        </el-form>\n  </div>\n</template>\n\n<script>\n    export default {\n        name: \"updatePWD\",\n        data(){\n            return{\n              showPassword: false, // 是否显示密码\n              captchaCodeImg:'',\n              userInfo:null,//用户信息\n              alertText: null, //提示的内容\n              ruleForm: {\n                oldpassword: '111111',//旧密码\n                newpassword: '666666',//密码\n                password:'666666',//确认密码\n              },\n              rules: {\n                oldpassword: [\n                  { required: true, message: '请输入原密码', trigger: 'blur' }\n                ],\n                newpassword: [\n                  { required: true, message: '请输入密码', trigger: 'blur' }\n                ],\n                password: [\n                  { required: true, message: '请确认密码', trigger: 'blur' }\n                ]\n              },\n            }\n        },\n        mounted(){\n\n        },\n        methods:{\n          submitForm(ruleForm){\n            this.$refs[ruleForm].validate((valid) => {\n            if(valid){\n              this.$message({type:'success',center:true,message:\"修改成功!!!\"})\n              this.ruleForm = {\n                oldpassword: '',//旧密码\n                newpassword: '',//密码\n                password:'',//确认密码\n              };\n            }else{\n              this.$message({type:'warning',center:true,message:\"请填写...\"})\n              return false;\n            }\n            })\n          }\n\n        },\n    }\n</script>\n\n<style scoped>\n  .el-input{\n    width: 32%\n  }\n  .el-form-item{\n    /* text-align: center; */\n    padding-left: 35%;\n  }\n  label{\n    display: inline-block;\n    width: 60px;\n  }\n  .login-btn{\n    text-align: center;\n  }\n  /* .el-form-item__error{\n    left: 20%;\n  } */\n\n</style>\n"
  },
  {
    "path": "src/page/upload/upload.vue",
    "content": "<template>\n    <div class=\"upload\">\n      <el-upload\n        class=\"upload-demo\"\n        ref=\"upload\"\n        action=\"https://jsonplaceholder.typicode.com/posts/\"\n        :on-preview=\"handlePreview\"\n        :on-remove=\"handleRemove\"\n        :file-list=\"fileList\"\n        :auto-upload=\"false\">\n        <el-button slot=\"trigger\" size=\"small\" type=\"primary\">选取文件</el-button>\n        <el-button style=\"margin-left: 10px;\" size=\"small\" type=\"success\" @click=\"submitUpload\">上传到服务器</el-button>\n        <div slot=\"tip\" class=\"el-upload__tip\">只能上传jpg/png文件，且不超过500kb</div>\n      </el-upload>\n    </div>\n</template>\n\n<script>\n    export default {\n        name: 'upload',\n        data () {\n            return {\n              fileList: [{\n                  name: 'food.jpeg',\n                  url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'},\n                {\n                  name: 'food2.jpeg',\n                  url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100'\n                }]\n            }\n        },\n      methods:{\n        submitUpload() {\n          this.$refs.upload.submit();\n        },\n        handleRemove(file, fileList) {\n          console.log(file, fileList);\n        },\n        handlePreview(file) {\n          console.log(file);\n        }\n      }\n    }\n</script>\n<style scoped>\n.upload-demo{\n  width: 360px;\n}\n</style>\n"
  },
  {
    "path": "src/page/verifyPlatform/VerifyBankStatement.vue",
    "content": "<template>\n    <div class=\"hello\">\n      银行对账\n    </div>\n</template>\n\n<script>\n    export default {\n        name: 'HelloWorld',\n        data () {\n            return {}\n        }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/page/verifyPlatform/VerifyReceivables.vue",
    "content": "<template>\n    <div class=\"verify-receivables\">\n      收款对账\n    </div>\n</template>\n\n<script>\n    export default {\n        name: 'verifyReceivables',\n        data () {\n            return {}\n        }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/page/verifyPlatform/verifyAutomate.vue",
    "content": "<template>\n    <div class=\"verify-automate\">\n      <h3 class=\"head_title\">自动对账</h3>\n      <getWebSocket></getWebSocket>\n      <template>\n        <el-row>\n          <el-button size=\"mini\" type=\"primary\" @click=\"changeDisabled\" :disabled=\"!disabled\">收款对账</el-button>\n          <el-button size=\"mini\" type=\"primary\" @click=\"changeDisabled\" :disabled=\"disabled\">退款对账</el-button>\n        </el-row>\n      </template>\n\n      <template>\n        <el-row :gutter=\"20\">\n          <el-col :span=\"12\">\n            <el-card class=\"box-card\">\n              <h3>参数选择</h3>\n              <el-form :model=\"form\">\n                <el-row >\n                  <el-col :md=\"24\">\n                    <el-form-item label=\"平台:\">\n                      <el-select size=\"small\" v-model=\"form.platform\" multiple collapse-tags placeholder=\"请选择\">\n                        <el-option\n                          v-for=\"item in options\"\n                          :key=\"item.value\"\n                          :label=\"item.label\"\n                          :value=\"item.value\">\n                        </el-option>\n                      </el-select>\n                    </el-form-item>\n\n                  </el-col>\n                  <el-col :md=\"24\">\n                    <el-form-item label=\"参与核销单据的业务日期小于等于:\" >\n                      <el-date-picker\n                        size=\"small\"\n                        v-model=\"form.time\"\n                        type=\"date\"\n                        placeholder=\"选择日期时间\">\n                      </el-date-picker>\n                    </el-form-item>\n                  </el-col>\n                  <el-col :md=\"24\">\n                    <el-form-item label=\"自动产生对账记录的对账日期为:\" >\n                      <el-date-picker\n                        size=\"small\"\n                        v-model=\"form.time\"\n                        type=\"date\"\n                        placeholder=\"选择日期时间\">\n                      </el-date-picker>\n                    </el-form-item>\n                  </el-col>\n                </el-row>\n              </el-form>\n            </el-card>\n          </el-col>\n          <el-col :span=\"12\">\n            <el-card class=\"box-card\">\n              <h3>规则选择</h3>\n              <el-form :model=\"form\">\n                <el-row >\n                  <el-button size=\"mini\" type=\"primary\">上移</el-button>\n                  <el-button size=\"mini\" type=\"primary\">下移</el-button>\n                </el-row>\n              </el-form>\n              <template>\n                <el-table\n                  border\n                  ref=\"orderTable\"\n                  :data=\"ruleList\"\n                  highlight-current-row\n                  max-height=\"164\"\n                  style=\"margin-top: 10px\"\n                  tooltip-effect=\"dark\"\n                  @row-click=\"rowClickPayment\">\n                  <el-table-column\n                    type=\"index\"\n                    label=\"序号\"\n                    width=\"60\">\n                  </el-table-column>\n                  <el-table-column\n                    prop=\"name\"\n                    label=\"对账方案\">\n                  </el-table-column>\n                  <el-table-column label=\"选中\" width=\"136\">\n                    <template slot-scope=\"scope\">\n                      <el-radio class=\"radio\" v-model=\"radio\"  :label=\"scope.$index\"  @change.native=\"getCurrentRow(scope.$index)\" >&nbsp;</el-radio>\n                    </template>\n                  </el-table-column>\n                </el-table>\n              </template>\n            </el-card>\n          </el-col>\n        </el-row>\n      </template>\n      <div class=\"execute-btn\">\n        <el-row>\n          <el-button size=\"small\" @click=\"clickAuto\" type=\"primary\">执行对账</el-button>\n          <el-button size=\"small\" type=\"primary\">退出</el-button>\n        </el-row>\n      </div>\n    </div>\n</template>\n\n<script>\n  import{mapState} from 'vuex'\n  import getWebSocket from \"../../components/getWebSocket/getWebSocket\"\n    export default {\n        name: 'verifyAutomate',\n        components:{\n          getWebSocket\n        },\n        data () {\n            return {\n              disabled: true,\n              radio: '1',\n              dialogVisible: false,\n              rulesId:'',\n              form: {\n                time: '',\n                platform:''\n              },\n              options: [{\n                value: '1',\n                label: '支付宝'\n              }, {\n                value: '2',\n                label: '微信'\n              }, {\n                value: '3',\n                label: '天猫'\n              }, {\n                value: '5',\n                label: '京东'\n              }, {\n                value: '9',\n                label: '美团'\n              }],\n              value5: [],\n              ruleList:[\n                {\n                  id:'1',\n                  name:'方案一'\n                },\n                {\n                  id:\"2\",\n                  name:'方案二'\n                }\n              ]\n            }\n        },\n        methods:{\n          //点击事件\n          rowClickPayment(row) {\n            console.log(row.id)\n            this.rulesId = row.id;\n            this.$refs.orderTable.toggleRowSelection(row)\n            this.radio = this.ruleList.indexOf(row);\n          },\n          //选中\n          getCurrentRow(val) {\n            console.log(val)\n          },\n          changeDisabled(){\n              this.disabled = !this.disabled;\n          },\n          //执行对账\n          clickAuto(){\n            if (this.form.platform == '') {\n              this.$message.error({message:\"请选择平台\",center: true});\n              return false\n            }\n            if (this.form.time === '') {\n              this.$message.error({message:\"请选择业务日期\",center: true});\n              return false\n            }\n\n            if (this.rulesId === '') {\n              this.$message.error({message:\"请选择对账规则\",center: true});\n              return false;\n            }\n            this.$store.dispatch('dialoggetWebSocket')\n          }\n        }\n    }\n</script>\n<style scoped>\n  .container .el-row{\n    margin-bottom: 0;\n  }\n  .container .el-row{\n    height: auto;\n  }\n  h5{\n    margin: 0;\n  }\n  .el-select{\n    width: 220px;\n  }\n\n  .el-form-item{\n    display: -webkit-box;\n    display: flex;\n  }\n  .execute-btn{\n    text-align: center;\n    margin-top: 20px;\n  }\n  .el-dialog__body{\n    height: auto;\n  }\n\n</style>\n"
  },
  {
    "path": "src/page/verifyRecord/VerifyBankStatementRecord.vue",
    "content": "<template>\n    <div class=\"hello\">\n      对账记录银行对账\n    </div>\n</template>\n\n<script>\n    export default {\n        name: 'HelloWorld',\n        data () {\n            return {}\n        }\n    }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/page/verifyRecord/VerifyReceivablesRecord.vue",
    "content": "<template>\n  <div class=\"bill\">\n    <div class=\"head_search\">\n      <h3 class=\"head_title\">对账记录收款对账</h3>\n      <el-button type=\"primary\" size=\"mini\">反对帐</el-button>\n      <el-button type=\"primary\" size=\"mini\">批量反对帐</el-button>\n      <!-- 传回父组件 -->\n      <search @orderSearchs=\"fliterOrder\"></search>\n    </div>\n    <div class=\"container\">\n      <template>\n        <el-table\n          border\n          v-loading=\"loading\"\n          ref=\"OrderTable\"\n          :data=\"getLocalDataList\"\n          highlight-current-row\n          height=\"410\"\n          @row-click=\"handleSelectedRow\"\n          @select=\"handleSelectionSingle\"\n          @selection-change=\"handleSelectionChange\">\n          <el-table-column\n            type=\"selection\"\n            width=\"60\">\n          </el-table-column>\n          <el-table-column\n            prop=\"billNo\"\n            label=\"单据编号\"\n            width=\"200\">\n          </el-table-column>\n          <el-table-column\n            prop=\"platform\"\n            label=\"平台\"\n            width=\"200\">\n          </el-table-column>\n          <el-table-column\n            prop=\"orderNo\"\n            label=\"平台订单号\"\n            width=\"250\">\n          </el-table-column>\n          <el-table-column\n            prop=\"totalAmount\"\n            label=\"总金额\"\n            width=\"80\">\n          </el-table-column>\n          <el-table-column\n            prop=\"status\"\n            label=\"单据状态\"\n            width=\"90\"\n            :formatter=\"formatStatus\">\n          </el-table-column>\n          <el-table-column\n            prop=\"businessDate\"\n            label=\"业务日期\"\n            width=\"100\"\n            :formatter=\"formatTime\">\n          </el-table-column>\n          <el-table-column\n            prop=\"settleStatus\"\n            label=\"对账状态\"\n            width=\"100\"\n            :formatter=\"formatSettleStatus\">\n          </el-table-column>\n          <el-table-column\n            prop=\"settleAmount\"\n            label=\"已对账金额\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"unsettleAmount\"\n            label=\"未对账金额\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"differenceProcessingStatus\"\n            label=\"差异处理状态\"\n            width=\"110\"\n            :formatter=\"formatDifferenceProcessingStatus\">\n          </el-table-column>\n          <el-table-column\n            prop=\"differenceProcessingAmount\"\n            label=\"差异处理金额\"\n            width=\"110\">\n          </el-table-column>\n          <el-table-column\n            prop=\"differenceProcessingRamarks\"\n            label=\"差异处理原因\"\n            width=\"130\">\n          </el-table-column>\n          <el-table-column\n            prop=\"reconStatus\"\n            label=\"退款状态\"\n            width=\"100\"\n            :formatter=\"formatReconStatus\">\n          </el-table-column>\n          <el-table-column\n            prop=\"unsettlementMoney\"\n            label=\"未退款金额\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"settlementMoney\"\n            label=\"已退款金额\"\n            width=\"100\">\n          </el-table-column>\n\n          <el-table-column\n            prop=\"orderType\"\n            label=\"单据类型\"\n            width=\"100\"\n            :formatter=\"formatOrderType\">\n          </el-table-column>\n          <el-table-column\n            prop=\"orderTotalAmount\"\n            label=\"订单总金额\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"commission\"\n            label=\"佣金\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"integral\"\n            label=\"积分\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"platformCoupon\"\n            label=\"平台优惠卷\"\n            width=\"110\">\n          </el-table-column>\n          <el-table-column\n            prop=\"companyCoupon\"\n            label=\"公司优惠卷\"\n            width=\"110\">\n          </el-table-column>\n          <el-table-column\n            prop=\"insurance\"\n            label=\"保险\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"freight\"\n            label=\"运费\"\n            width=\"100\">\n          </el-table-column>\n          <el-table-column\n            prop=\"sellerPayment\"\n            label=\"买家支付金额\"\n            width=\"110\">\n          </el-table-column>\n        </el-table>\n      </template>\n    </div>\n    <template>\n      <div class=\"pagination\">\n        <el-pagination\n          @size-change=\"handleSizeChange\"\n          @current-change=\"handleCurrentChange\"\n          :current-page=\"currentPage4\"\n          :page-sizes=\"[100, 200, 300, 400]\"\n          :page-size=\"100\"\n          layout=\"total, sizes, prev, pager, next, jumper\"\n          :total=\"totals\">\n        </el-pagination>\n      </div>\n    </template>\n\n  </div>\n</template>\n\n<script>\n  import {mapState} from 'vuex'\n  import moment from 'moment'\n  import {getOrderReceivable,getCompany} from '../../axios/api'\n  import search from '../../components/search/Search'\n  export default {\n    name: 'bill',\n    components: {\n      search,//高级搜索\n    },\n    data () {\n      return {\n        loading: true,\n        activeName: 'Whole',\n        getLocalDataList:[],//请求的数据\n        handSelectDataList:[],//选中的数据\n        btnInfo:[],\n        message: '',\n        totals:0,\n        currentPage4: 4,\n        uuidList: [],\n        treeData: {\n          name: 'My Tree',\n          children: [\n            { name: 'hello' },\n            { name: 'wat' },\n            {\n              name: 'child folder',\n              children: [\n                {\n                  name: 'child folder',\n                  children: [\n                    { name: 'hello' },\n                    { name: 'wat' ,\n                      children: [\n                        { name: 'wwww' },\n                        { name: 'eeee' }\n                      ]}\n                  ]\n                },\n                { name: 'hello' },\n                { name: 'wat' },\n                {\n                  name: 'child folder',\n                  children: [\n                    { name: 'hello' },\n                    { name: 'wat' }\n                  ]\n                }\n              ]\n            }\n          ]\n        }\n      }\n    },\n    computed: {\n      ...mapState({\n        verifyStatus:store=>store.verifyStatus,\n      })\n    },\n    mounted(){\n      this.getLocalData()\n    },\n    methods:{\n\n      //高级查询\n      fliterOrder(value){\n        console.log(JSON.stringify(value),\"这是高级查询组件传回来的...\")\n      },\n\n      handleSizeChange(val) {\n        console.log(`每页 ${val} 条`);\n      },\n      handleCurrentChange(val) {\n        console.log(`当前页: ${val}`);\n      },\n      handleClick() {\n        alert('button click');\n      },\n      /*请求数据*/\n      getLocalData(){\n        getOrderReceivable().then(res=>{\n          console.log(res);\n          if(res.status === 200){\n            this.getLocalDataList = res.data.rows;\n            this.totals = res.data.total;\n            this.loading = false;\n          }\n\n        })\n      },\n\n      getRowInfo(row){//获取点击的信息然后跳转\n        //let index = this.getLocalDataList.indexOf(row);\n        this.$store.dispatch('storeOrderListUUid',row.uuid);\n        this.$refs.OrderTable.toggleRowSelection(row);\n        this.$router.push({\n          name: 'orderDetail',\n          params: {id: row.uuid}\n        })\n      },\n      //点击行\n      handleSelectedRow(row){\n        if (row) {\n          var newId = row.billNo;\n          var selectArr = [];\n          this.getLocalDataList.forEach((value) => {\n            if (value.billNo === newId) {\n              selectArr.push(value);\n              if (typeof value.checked === 'undefined') {\n                this.$set(value, 'checked', true)\n              } else {\n                value.checked = !value.checked;\n              }\n            }\n\n          });\n          if (selectArr) {\n            selectArr.forEach((value) => {\n              this.$refs.OrderTable.toggleRowSelection(value, value.checked);\n            })\n          }\n        }\n      },\n      handleSelectionSingle(val) { //点击checkbox选中\n        if (val.length > 0) {\n          var listArr = [];\n          var item = val[val.length - 1];\n          var setNo = item.billNo;\n          this.getLocalDataList.forEach((value, index) => {\n            if (value.billNo === setNo) {\n              if (typeof value.checked === 'undefined') {\n                this.$set(value, 'checked', true);\n              } else {\n                value.checked = !value.checked;\n              }\n              listArr.push(value);\n            }\n          });\n          console.log(listArr);\n          listArr.forEach((value, index) => {\n            this.$refs.OrderTable.toggleRowSelection(value, value.checked);\n          })\n        }\n      },\n      //当选择项发生变化时会触发该事件\n      handleSelectionChange(val,rows){\n        if (rows) {\n          rows.forEach((value, index) => {\n            if (this.uuidList.indexOf(value.id) === -1) {\n              this.uuidList.push(value.id)\n            }\n          })\n        } else {\n          this.uuidList = []\n        }\n      },\n\n      //数格式转换\n      formatTime(row) { //转换时间\n        if(row.businessDate){\n          return moment(row.businessDate).format(\"YYYY-MM-DD\");\n        }\n      },\n      formatStatus(row) { //单据状态\n        return (row.status === 'Save' && '保存') || (row.status === 'Audited' && '审核');\n      },\n      formatSettleStatus(row) { //对账状态\n        return (row.settleStatus === \"UnSettled\" && '未对账') || (row.settleStatus === \"Part\" && '部分对账') || (row.settleStatus === 'Completely' && '完全对账');\n      },\n      formatDifferenceProcessingStatus(row) { //差异处理状态\n        return (row.differenceProcessingStatus === \"Y\" && '是') || (row.differenceProcessingStatus === \"N\" && '否');\n      },\n      formatReconStatus(row) { //退款状态\n        return (row.reconStatus === 'UnSettled' && '未退款') || (row.reconStatus === 'Part' && '部分退款') || (row.reconStatus === 'Completely' && '完全退款')\n      },\n      formatOrderType(row) { //退款状态\n        return (row.orderType === '0' && '平台订单') || (row.orderType === '1' && '手工订单')\n      },\n    },\n\n\n  }\n</script>\n<style scoped>\n\n</style>\n"
  },
  {
    "path": "src/router/index.js",
    "content": "/**\n * Created by 不动的推动者 on 2018/5/2.\n */\n//\nimport Vue from 'vue'\nimport Router from 'vue-router'\n\nconst Login = resolve => require(['../page/login/login'], resolve)\nconst Home = resolve => require(['../page/home/home'], resolve)\nconst Chart = resolve => require(['../page/chart/chart'], resolve)\nconst OrderReceivable = resolve => require(['../page/inquiry/OrderReceivable'], resolve)\nconst TransactionFlow =  resolve => require(['../page/inquiry/TransactionFlow'], resolve)\nconst SystemStatement = resolve => require(['../page/inquiry/SystemStatement'], resolve)\nconst orderDetail = resolve => require(['../page/inquiry/children/orderDetail'],resolve)\nconst orderAdd = resolve => require(['../page/inquiry/children/orderAdd'],resolve)\nconst BankFlow = resolve => require(['../page/inquiry/BankFlow'], resolve)\nconst VerifyReceivables = resolve => require(['../page/verifyPlatform/VerifyReceivables'], resolve)\nconst VerifyBankStatement = resolve => require(['../page/verifyPlatform/VerifyBankStatement'], resolve)\nconst VerifyReceivablesRecord = resolve => require(['../page/verifyRecord/VerifyReceivablesRecord'], resolve)\nconst VerifyBankStatementRecord = resolve => require(['../page/verifyRecord/VerifyBankStatementRecord'], resolve)\nconst OrderSummary =  resolve => require(['../page/reportForms/OrderSummary'], resolve)\nconst ReceivablesBalance = resolve => require(['../page/reportForms/ReceivablesBalance'], resolve)\nconst Upload = resolve => require(['../page/upload/upload'], resolve)\nconst Structure = resolve => require(['../page/set/structure'], resolve)\nconst UpdatePWD = resolve => require(['../page/set/updatePWD'], resolve)\nconst VerifyAutomate = resolve => require(['../page/verifyPlatform/verifyAutomate'], resolve)\n\nVue.use(Router);\n\n\nexport default new Router({\n  routes: [\n    {\n      path: '',\n      redirect: '/login'\n    },\n    {\n      path:'/home',\n      component: Home,\n      meta: { title: '自述文件' },\n      children: [\n        { //我的账户\n          path: '/chart',\n          component: Chart,\n          meta: { title: '我的账户' }\n        },\n        /**\n         * inquiry 单据查询\n         * **/\n        {//订单应收\n          path: '/orderReceivable',\n          component: OrderReceivable,\n          meta: { title: '应收单据' },\n        },\n        {//交易流水\n          path: '/transactionFlow',\n          component: TransactionFlow,\n          meta: { title: '交易流水' }\n        },\n        {//系统对账单\n          path: '/systemStatement',\n          component: SystemStatement,\n          meta: { title: '系统对账单' }\n        },\n        {//银行流水\n          path: '/bankFlow',\n          component: BankFlow,\n          meta: { title: '银行流水' }\n        },\n        {\n          path: '/orderDetail/:id',\n          component: orderDetail,\n          name: 'orderDetail',\n          meta: { title: '订单详情' }\n        },\n        {\n          path: '/orderAdd',\n          component: orderAdd,\n          meta: { title: '订单新增' }\n        },\n        /**\n         * verifyPlatform 对账平台\n         * **/\n        {\n          path: '/verifyAutomate',\n          component: VerifyAutomate,\n          meta: { title: '自动对账' }\n        },\n        {//对账平台\n          path: '/verifyReceivables',\n          component: VerifyReceivables,\n          meta: { title: '收款对账' }\n        },\n        {//银行对账\n          path: '/verifyBankStatement',\n          component: VerifyBankStatement,\n          meta: { title: '银行对账' }\n        },\n\n        /**\n         * verifyRecord 对账记录\n         * **/\n        {//银行对账单记录\n          path: '/verifyReceivablesRecord',\n          component: VerifyReceivablesRecord,\n          meta: { title: '收款对账记录' }\n        },\n        {//银行对账单记录\n          path: '/verifyBankStatementRecord',\n          component: VerifyBankStatementRecord,\n          meta: { title: '银行对账记录' }\n        },\n        /**\n         * reportForms报表\n         * **/\n        {//订单执行汇总表\n          path: '/orderSummary',\n          component: OrderSummary,\n          meta: { title: '订单执行汇总表' }\n        },\n        {//收款对账余额表\n          path: '/receivablesBalance',\n          component: ReceivablesBalance,\n          meta: { title: '收款对账余额表' }\n        },\n        {\n          path: '/Upload',\n          component: Upload,\n          meta: {title: '文件上传'}\n        },\n        /**\n        * 设置\n        * */\n        {\n          path: '/Structure',\n          component: Structure,\n          meta: { title: '组织架构'}\n        },\n        //修改密码\n        {\n          path: '/UpdatePWD',\n          component: UpdatePWD,\n          meta: { title: '修改密码'}\n        }\n      ]\n    },\n    {\n      path: '/login',\n      component: Login,\n      meta: { title: '登陆' }\n    }\n  ]\n\n\n})\n"
  },
  {
    "path": "src/store/index.js",
    "content": "/**\n * Created by 不动的推动者 on 2018/4/21.\n */\n//分离vuex方便维护\n// # 我们组装模块并导出 store 的地方\nimport Vue from 'vue'\nimport Vuex from 'vuex'\nimport actions from './modules/actions'\nimport mutations from './modules/mutations'\n\n\nVue.use(Vuex);\n\n\nconst state = {//存储状态\n  show: false,\n  author: 'Wise Wrong',\n  messages: 2,\n  userInfo:null, //用户信息\n  collapse:false,//折叠面板\n  companyValue:null, //选中的厂商\n  tags:null,//保存的\n  company:null, //公司\n  orderListUUid: null,//订单应收单条数据\n  verifyStatus: 'Whole', //Tabs 切换的状态 默认是全部\n  dialogFromAudit: false,//批量审核框\n  dialogFromUnAudit: false,//批量反审核\n  dialogFromDifferences: false,//批量差异对帐\n  dialogFromDelete: false,//批量删除\n  dialogFromStatement: false,//报表通用弹出框\n  dialoggetWebSocket:false, //websocket\n}\n\n\n\nexport default new Vuex.Store({\n  state,\n  actions,\n  mutations\n})\n"
  },
  {
    "path": "src/store/modules/actions.js",
    "content": "/**\n * Created by 不动的推动者 on 2018/5/2.\n */\nimport {\n  COLLAPSE,\n  COMPANY,\n  VERIFY_STATUS\n}from './mutation-type'\n\nexport default {\n  getCollapse({commit}){\n    commit('COLLAPSE');\n  },\n  getCompanyValue({commit},companyValue) { // 提交到mutations中处理\n    commit('COMPANY',companyValue)\n  },\n  getVerifyStatus({commit},verifyStatus){ //获取\n    commit('VERIFY_STATUS',verifyStatus)\n  },\n  storeOrderListUUid({commit},orderListInfo){ //存储\n    commit('ORDER_LIST_INFO',orderListInfo)\n  },\n  dialogFromAudit({commit}){ //批量审核\n    commit('DIALOG_FROM_AUDIT')\n  },\n  dialogFromUnAudit({commit}){ //批量反深恶黑\n    commit('DIALOG_FROM_UN_AUDIT')\n  },\n  dialogFromDifferences({commit}){ //批量差异对帐\n    commit('DIALOG_FROM_DIFFERENCES')\n  },\n  dialogFromDelete({commit}){ //批量删除\n    commit('DIALOG_FROM_DELETE')\n  },\n  dialogFromStatement({commit}){//报表通用弹出层\n    commit('DIALOG_FROM_STATEMENT')\n  },\n  dialoggetWebSocket({commit}){//websocket\n    commit('DIALOGGET_WEB_SOCKET')\n  },\n}\n"
  },
  {
    "path": "src/store/modules/mutation-type.js",
    "content": "/**\n * Created by 不动的推动者 on 2018/5/2.\n */\n//\nexport const COLLAPSE = 'COLLAPSE' //左侧边栏隐藏状态\nexport const COMPANY = 'COMPANY' //公司\nexport const VERIFY_STATUS = 'VERIFY_STATUS' //\nexport const ORDER_LIST_INFO = 'ORDER_LIST_INFO' //\nexport const DIALOG_FROM_AUDIT = 'DIALOG_FROM_AUDIT' //批量审核框\nexport const DIALOG_FROM_UN_AUDIT = 'DIALOG_FROM_UN_AUDIT' //批量反审核框\nexport const DIALOG_FROM_DIFFERENCES = 'DIALOG_FROM_DIFFERENCES'   //批量差异对帐\nexport const DIALOG_FROM_DELETE = 'DIALOG_FROM_DELETE' //批量删除\nexport const DIALOG_FROM_STATEMENT = 'DIALOG_FROM_STATEMENT' //报表通用弹出层\nexport const DIALOGGET_WEB_SOCKET = 'DIALOGGET_WEB_SOCKET' //websocket\n"
  },
  {
    "path": "src/store/modules/mutations.js",
    "content": "/**\n * Created by 不动的推动者 on 2018/5/2.\n */\nimport {\n  COLLAPSE,\n  COMPANY,\n  VERIFY_STATUS,\n  DIALOG_FROM_AUDIT,\n  DIALOG_FROM_UN_AUDIT,\n  DIALOG_FROM_DIFFERENCES,\n  DIALOG_FROM_DELETE,\n  DIALOG_FROM_STATEMENT\n}from './mutation-type'\n\nexport default {\n  //侧边栏\n  ['COLLAPSE'](state) {\n    state.collapse = !state.collapse\n  },\n  //将选择的公司\n  ['COMPANY'](state,obj) {\n    state.companyValue = obj;\n  },\n  ['VERIFY_STATUS'](state,obj){\n    state.verifyStatus = obj;\n  },\n  ['ORDER_LIST_INFO'](state,obj){\n    state.orderListUUid = obj;\n  },\n  ['DIALOG_FROM_AUDIT'](state){\n    state.dialogFromAudit = !state.dialogFromAudit;\n  },\n  ['DIALOG_FROM_UN_AUDIT'](state){\n    state.dialogFromUnAudit = !state.dialogFromUnAudit\n  },\n  ['DIALOG_FROM_DIFFERENCES'](state){\n    state.dialogFromDifferences = !state.dialogFromDifferences\n  },\n  ['DIALOG_FROM_DELETE'](state){\n    state.dialogFromDelete = !state.dialogFromDelete\n  },\n  ['DIALOG_FROM_STATEMENT'](state){\n    state.dialogFromStatement = !state.dialogFromStatement;\n    console.log(state.dialogFromStatement);\n  },\n  ['DIALOGGET_WEB_SOCKET'](state) { //websocket\n    state.dialoggetWebSocket = !state.dialoggetWebSocket;\n  },\n\n}\n"
  },
  {
    "path": "src/style/main.css",
    "content": "body{\n  font-family: \"Helvetica Neue\",Helvetica,\"PingFang SC\",\"Hiragino Sans GB\",\"Microsoft YaHei\",\"微软雅黑\",Arial,sans-serif;\n}\n#app{\n  height: 100vh;\n  width: 100vw;\n}\n\nul{\n  margin: 0;\n  padding: 0;\n}\n/*element-ui局部样式修改*/\n.el-tabs--border-card>.el-tabs__content{\n  padding-top: 0;\n}\n/*Element-ui弹出层样式调整*/\n.el-dialog__header{\n  padding: 15px 20px 10px;\n}\n.el-dialog__body{\n  padding: 0 20px;\n  border-top: 1px solid #eaeefb;\n  border-bottom: 1px solid #eaeefb;\n}\n.el-dialog__body .el-button--small{\n  padding: 5px 8px;\n}\n.el-dialog__body{\n  min-height: 160px;\n}\n.left-search-body{\n  border-right: 1px solid #eaeefb;\n  min-height: 160px;\n  padding-top: 10px;\n  padding-right: 10px;\n}\n.right-search-body{\n  -webkit-flex:1;\n  flex: 1;\n  padding:10px;\n}\n.btn-list .el-dropdown .el-button{\n  /*background: #d0e9ff;*/\n  /*border:none;*/\n  /*color: #333;*/\n  /*font-size: 13px;*/\n  /*padding: 5px 6px;*/\n}\n.el-dialog .el-input{\n  width: 220px;\n}\n.el-dialog .el-date-editor{\n  width: 220px;\n}\n.el-dialog__body{\n  padding-top:20px;\n}\n.el-dialog .el-form-item{\n  margin-bottom: 15px;\n}\n.el-dialog .el-form{\n  display: -webkit-flex;\n  display: flex;\n  flex-wrap: wrap;\n}\n.head_title{\n  margin: 0;\n  padding:12px 0;\n}\n.container .el-row{\n  /*background: #d0e9ff;*/\n  height:40px;\n  padding:5px 0;\n}\n.container table .el-button{\n  width: 50%;\n  padding: 0;\n}\n.container .el-dropdown{\n  padding:0 8px;\n}\n.container .el-tabs{\n  padding-left: 0;\n  padding-right: 0;\n}\n.verify-automate .el-form-item__label{\n  flex: 1;\n  font-size: 13px;\n}\n\n/*****HOME*****/\n#Home{\n  height: 100%;\n  overflow: hidden;\n  width: 100%;\n}\n.wrapper{\n  height: 100%;\n  width: 100%;\n  overflow: hidden;\n}\n/*main内容*/\n.main{\n  background: #f6f6f6;\n  position: absolute;\n  top: 60px;\n  left: 160px;\n  right: 0;\n  bottom: 0;\n  overflow-y: auto;\n  -webkit-transition: left .3s ease-in-out;\n  -o-transition: left .3s ease-in-out;\n  transition: left .3s ease-in-out;\n}\n.container{\n  padding: 10px 20px 0 20px;\n}\n.pagination{\n  margin-top: 10px;\n}\n.verify-automate .el-dialog__body{\n  min-height: 35px;\n}\n.verify-automate .el-dialog__footer{\n  padding: 10px 20px 10px;\n}\n/*标题*/\n.container h2{\n  margin:10px 0;\n}\n/*设置边框角度和阴影*/\n.container>div{\n  background: #fff;\n  border-radius: 10px;\n  box-shadow: 0 1px 3px rgba(26,26,26,.1);\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n  padding:0 20px 10px;\n\n}\n/*路由跳转动画*/\n.move-enter-active,\n.move-leave-active {\n  transition: opacity .5s;\n}\n.move-enter,\n.move-leave {\n  opacity: 0;\n}\n\n\n/*****HEADER 头部*****/\nheader{\n  display: flex;\n  position: relative;\n  width: 100%;\n  height: 60px;\n  line-height:60px;\n  font-size: 22px;\n  color: #fff;\n  background-color: #24292e;\n  -webkit-transition: all .3s ;\n  -moz-transition: all .3s ;\n  transition:all .3s ;\n\n}\n.collapse-btn{\n  float: left;\n  height: 100%;\n  padding:0 20px;\n  cursor: pointer;\n}\n.top-nav{\n  display: flex;\n  -webkit-box-flex:1;\n  flex:1;\n  justify-content: flex-end;\n}\n.top-nav>div{\n  cursor: pointer;\n  margin-right: 40px;\n}\n/*厂商*/\n.company{\n  margin-left: 15px;\n}\n/*消息*/\n.news{\n  position: relative;\n}\n.msg{\n  background-color: #d76662;\n  border-radius: 50%;\n  position: absolute;\n  top: 50%;\n  right: 0;\n  height: 8px;\n  width: 8px;\n  margin-top: -10px;\n  margin-right: -5px;\n}\n/*退出or设置*/\n.head .el-dropdown{\n  color: #fff;\n  font-size: 20px;\n}\n\n\n/*****SIDEBAR左侧边栏*****/\n#sidebar-left{\n  display: inline-block;\n  height: 100%;\n}\n#sidebar-left>ul{\n  height: 100%;\n}\n.el-menu-vertical-demo:not(.el-menu--collapse) {\n  width: 160px;\n  min-height: 400px;\n}\n.content-collapse{\n  left:64px;\n}\n\n/*****HEAD_SEARCH 搜索*****/\n.head_search{\n  align-items: center;\n  display: -webkit-flex;\n  display: flex;\n}\n.head_search .head_title{\n  -webkit-flex: 1;\n  flex: 1;\n  margin: 0;\n  padding: 0;\n}\n.search{\n  cursor: pointer;\n}\n.search-contain{\n  display: -webkit-flex;\n  display: flex;\n}\n.search .el-button{\n  padding-bottom: 5px;\n}\n\n\n/*****TAGS 顶部标签 *****/\n.tags{\n  display: -webkit-flex;\n  display: flex;\n  align-items: center;\n  background: #fff;\n  height: 30px;\n}\n.tags .tag-box{\n  -webkit-flex: 1;\n  flex: 1;\n}\n.tags ul{\n  align-content: center;\n  display: -webkit-flex;\n  display: flex;\n  padding-top: 2px;\n}\n.tags li{\n  align-items: center;\n  border-radius: 4px;\n  box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  border: 1px solid rgba(64,158,255,.2);\n  /* background-color: #7CBCE8; */\n  cursor: pointer;\n  display: -webkit-flex;\n  display: flex;\n  font-size: 12px;\n  height: 26px;\n  list-style: none;\n  line-height: 26px;\n  margin:0 6px;\n  padding: 0 6px;\n  white-space: nowrap;\n  -webkit-transition: all .5s ease-in;\n  -moz-transition: all .5s ease-in;\n  transition: all .5s ease-in;\n}\n.tags li a{\n  display: block;\n  color: #24292e;\n  text-decoration: none;\n}\n/*关闭标签按钮*/\n.tag-close-box .el-dropdown span{\n  color: #24292e;\n  cursor: pointer;\n  font-size: 14px;\n  margin-right: 10px;\n}\n/*选中状态*/\n.tags li.active{\n  background: #24292e;\n}\n.tags li.active a{\n  color: #fff;\n}\n/*删除*/\n.tag_delete{\n  border-radius: 50%;\n  color: #fff;\n  display: inline-block;\n  height: 16px;\n  line-height: 16px;\n  width: 16px;\n  margin-left: 3px;\n  text-align: center;\n  -webkit-transition: all .2s ease-in;\n  -moz-transition: all .2s ease-in;\n  transition: all .2s ease-in;\n\n}\n.tag_delete:hover{\n  background: #24292e;\n  color: #fff;\n\n}\n.tags .active .tag_delete:hover {\n  background: #fff;\n  color: #24292e;\n}\n\n/*****CHART系统首页*****/\n\n\n\n\n/*****INQUIRY单据查询*****/\n\n\n/*orderReceivable订单应收*/\n/*修改订单应收页面element-ui td样式*/\n.bill{\n  height: 100%;\n  /*padding:30px;*/\n  background: #fff;\n}\n.el-row{\n  margin-bottom: 15px;\n}\n\ntable .cell{\n  text-align: center;\n}\n\ntable .el-button+.el-button{\n  padding:5px 0 ;\n  margin-left: 0;\n}\n.el-table td{\n  padding:4px 0;\n}\n/*订单新增or订单修改*/\n.order-detail .el-tabs,.order-add .el-tabs{\n  min-height:334px;\n}\n.order-detail .el-tabs .btn-wrap,.order-add .el-tabs .btn-wrap{\n  margin:10px 0;\n}\n.order-detail .el-row,.order-add .el-row{\n  margin-bottom: 20px;\n}\n.order-detail .grid-content,.order-add .grid-content {\n  display: -ms-flexbox;\n  display:-webkit-flex;\n  display: flex;\n  align-items: center;\n  border-radius: 4px;\n  min-height: 36px;\n}\n.order-detail .grid-content>span,.order-add .grid-content>span{\n  display: block;\n  font-size:13px;\n  margin-right: 10px;\n  min-width:90px;\n  text-align: right;\n}\n.order-detail .grid-content .el-input,.order-add .grid-content .el-input{\n  -webkit-flex:1;\n  -ms-flex:1;\n  flex: 1;\n  max-width:194px;\n}\n\n/*右侧栏*/\n.el-submenu__title i{\n  color: #fff!important;\n}\n.el-menu-item i{\n  color: #fff!important;\n}\n\n"
  },
  {
    "path": "static/.gitkeep",
    "content": ""
  },
  {
    "path": "static/data/localData.json",
    "content": "{\n\"total\": 24,\n\"rows\": [\n\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"c43c5153-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"E20180305233729036300004\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 69,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"c43c5153-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 69,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 69,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"京东商城\",\n    \"billNo\": \"2018030519235636\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"c43c5153-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"E20180305233729036300004\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 69,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"c43c5153-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 69,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 69,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"京东商城\",\n\"billNo\": \"2018030519235636\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"9adcd2c3-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"805528222000021\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 116,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"9adcd2c3-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 116,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 116,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"外卖渠道,京东到家\",\n\"billNo\": \"2018030519235635\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": null,\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"9adcd2c3-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"805528222000021\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 116,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"9adcd2c3-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 116,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 116,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"外卖渠道,京东到家\",\n    \"billNo\": \"2018030519235635\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"9a1ed546-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"71812499281\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 79,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"9a1ed546-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 79,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 79,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"电商平台,京东商城\",\n\"billNo\": \"2018030519235634\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"9a1ed546-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"71812499281\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 79,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"9a1ed546-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 79,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 79,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"电商平台,京东商城\",\n    \"billNo\": \"2018030519235634\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"9adcc9b0-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"805528163000021\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 74,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"9adcc9b0-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 74,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 74,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"外卖渠道,京东到家\",\n\"billNo\": \"2018030519235633\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"9adcc9b0-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"805528163000021\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 74,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"9adcc9b0-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 74,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 74,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"外卖渠道,京东到家\",\n    \"billNo\": \"2018030519235633\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"c43c476b-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"E20180305233647071100004\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 10,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"c43c476b-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 10,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 10,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"微信订单\",\n\"billNo\": \"2018030519235632\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"c43c476b-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"E20180305233647071100004\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 10,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"c43c476b-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 10,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 10,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"微信订单\",\n    \"billNo\": \"2018030519235632\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"c43c4263-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"E20180305233633047600003\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 79,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"c43c4263-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 79,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 79,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"天猫普通订单\",\n\"billNo\": \"2018030519235631\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"c43c4263-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"E20180305233633047600003\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 79,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"c43c4263-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 79,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 79,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"天猫普通订单\",\n    \"billNo\": \"2018030519235631\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"c43c3d53-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"E20180305233613099200001\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 69,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"c43c3d53-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 69,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 69,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"饿了么，普通订单\",\n\"billNo\": \"2018030519235630\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"c43c3d53-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"E20180305233613099200001\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 69,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"c43c3d53-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 69,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 69,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"饿了么，普通订单\",\n    \"billNo\": \"2018030519235630\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"c43b5077-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"E20180305233554094700001\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 128,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"c43b5077-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 128,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 128,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"幸福,有赞普通订单\",\n\"billNo\": \"2018030519235629\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"c43b5077-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"E20180305233554094700001\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 128,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"c43b5077-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 128,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 128,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"幸福,有赞普通订单\",\n    \"billNo\": \"2018030519235629\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"d5f0fbe4-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"XF2018030523361414\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 180,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"d5f0fbe4-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 180,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 180,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"幸福官网,PC官网\",\n\"billNo\": \"2018030519235628\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"d5f0fbe4-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"XF2018030523361414\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 180,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"d5f0fbe4-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 180,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 180,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"幸福官网,PC官网\",\n    \"billNo\": \"2018030519235628\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"c43b555f-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"E20180305233557032100002\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 29,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"c43b555f-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 29,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 29,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"淘宝,普通订单\",\n\"billNo\": \"2018030519235627\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"c43b555f-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"E20180305233557032100002\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 29,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"c43b555f-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 29,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 29,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"淘宝,普通订单\",\n    \"billNo\": \"2018030519235627\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"c43b465f-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"E20180305233529037600008\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 79,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"c43b465f-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 79,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 79,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"加油,有赞普通订单\",\n    \"billNo\": \"2018030519235626\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n  {\n    \"creatorId\": null,\n    \"creator\": \"管理员\",\n    \"createTime\": \"2018-04-18T21:01:03.000+0000\",\n    \"operator\": null,\n    \"updaterId\": null,\n    \"updater\": null,\n    \"updateTime\": null,\n    \"seq\": 0,\n    \"params\": null,\n    \"examineId\": null,\n    \"examiner\": null,\n    \"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n    \"pageNumber\": 1,\n    \"pageSize\": 10,\n    \"uuid\": \"c43b465f-434d-11e8-a166-44a8421bb841\",\n    \"customer\": null,\n    \"customerId\": null,\n    \"batchId\": \"20180400092\",\n    \"orderNo\": \"E20180305233529037600008\",\n    \"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n    \"status\": \"Audited\",\n    \"orderTotalAmount\": 79,\n    \"orderReceivedAmount\": null,\n    \"orderUncollectedAmount\": null,\n    \"salesCompany\": null,\n    \"salesDepartment\": null,\n    \"salesman\": null,\n    \"auditor\": null,\n    \"auditTime\": null,\n    \"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n    \"company\": null,\n    \"remarks\": null,\n    \"totalSize\": null,\n    \"orderReceivableSupList\": [\n      {\n        \"creatorId\": null,\n        \"creator\": null,\n        \"createTime\": null,\n        \"operator\": null,\n        \"updaterId\": null,\n        \"updater\": null,\n        \"updateTime\": null,\n        \"seq\": 0,\n        \"params\": null,\n        \"examineId\": null,\n        \"examiner\": null,\n        \"examineTime\": null,\n        \"pageNumber\": 1,\n        \"pageSize\": 10,\n        \"orderNo\": null,\n        \"orderId\": null,\n        \"batchId\": null,\n        \"companyId\": null,\n        \"remarks\": null,\n        \"index\": null,\n        \"billNo\": null,\n        \"uuid\": \"c43b465f-434d-11e8-a166-44a8421bb841\",\n        \"collectionContent\": null,\n        \"collectionDate\": null,\n        \"transNo\": null,\n        \"unitPrice\": null,\n        \"number\": null,\n        \"unit\": null,\n        \"amount\": null,\n        \"platformCoupon\": null,\n        \"companyCoupon\": null,\n        \"voucher\": null,\n        \"integral\": null,\n        \"commission\": null,\n        \"serviceCharge\": null,\n        \"insurance\": null,\n        \"customerPaymentAmount\": null,\n        \"commodityNum\": null,\n        \"commodityName\": null,\n        \"freight\": null,\n        \"sendArea\": null,\n        \"sendStation\": null,\n        \"platform\": null,\n        \"haveOtherOrder\": null,\n        \"orderTypeBelong\": null,\n        \"orderSource\": null,\n        \"orderPickUpEmp\": null,\n        \"orderOperator\": null,\n        \"orderer\": null,\n        \"ordererPhone\": null,\n        \"receiver\": null,\n        \"receiverPhone\": null,\n        \"receiverAddress\": null,\n        \"delivery\": null,\n        \"deliveryTime\": null,\n        \"deliveryman\": null,\n        \"deliverymanPhone\": null,\n        \"store\": null,\n        \"payType\": null,\n        \"payState\": null,\n        \"couponName\": null,\n        \"orderStatus\": null,\n        \"invoiceContent\": null,\n        \"groupPurchaseVerificationCode\": null,\n        \"cancelReason\": null,\n        \"firstCommodityClass\": null,\n        \"secondCommodityClass\": null,\n        \"specification\": null,\n        \"productName\": null,\n        \"groupSKU\": null,\n        \"productNum\": null,\n        \"commodityOfficialPrice\": null,\n        \"commodityReceivablePrice\": null,\n        \"commodityVoucherNumber\": null,\n        \"paymentNumber\": null,\n        \"map\": {\n          \"insurance\": null,\n          \"serviceCharge\": null,\n          \"voucher\": null,\n          \"integral\": null,\n          \"freight\": null,\n          \"platformCoupon\": null,\n          \"commission\": null,\n          \"customerPaymentAmount\": null,\n          \"companyCoupon\": null\n        },\n        \"sku\": null,\n        \"skunum\": null\n      }\n    ],\n    \"reconciliationPlanInfoList\": null,\n    \"receivableRelationInfoList\": null,\n    \"settleAmount\": 0,\n    \"unsettleAmount\": 79,\n    \"settleStatus\": \"UnSettled\",\n    \"settlementStatus\": null,\n    \"settlementMoney\": null,\n    \"unsettlementMoney\": null,\n    \"settlementdMoney\": null,\n    \"cashCoupon\": null,\n    \"integral\": null,\n    \"commission\": null,\n    \"charge\": null,\n    \"freight\": null,\n    \"orderType\": \"0\",\n    \"totalAmount\": 79,\n    \"platformCoupon\": null,\n    \"companyCoupon\": null,\n    \"sellerPayment\": null,\n    \"platform\": \"加油,有赞普通订单\",\n    \"billNo\": \"2018030519235626\",\n    \"differenceProcessingStatus\": \"N\",\n    \"differenceProcessingAmount\": 0,\n    \"differenceProcessingRamarks\": null,\n    \"insurance\": null\n  },\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"c43b4148-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"E20180305233525018300003\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 228,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"c43b4148-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 228,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 228,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"幸福微商城,有赞普通订单\",\n\"billNo\": \"2018030519235624\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n},\n{\n\"creatorId\": null,\n\"creator\": \"管理员\",\n\"createTime\": \"2018-04-18T21:01:03.000+0000\",\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": \"2018-05-03T10:52:06.000+0000\",\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"uuid\": \"c43b3901-434d-11e8-a166-44a8421bb841\",\n\"customer\": null,\n\"customerId\": null,\n\"batchId\": \"20180400092\",\n\"orderNo\": \"E20180305233519006700004\",\n\"businessDate\": \"2018-03-04T16:00:00.000+0000\",\n\"status\": \"Audited\",\n\"orderTotalAmount\": 20,\n\"orderReceivedAmount\": null,\n\"orderUncollectedAmount\": null,\n\"salesCompany\": null,\n\"salesDepartment\": null,\n\"salesman\": null,\n\"auditor\": null,\n\"auditTime\": null,\n\"companyId\": \"34898ffd-3bd3-11e8-bc22-fcaa1468c9f5\",\n\"company\": null,\n\"remarks\": null,\n\"totalSize\": null,\n\"orderReceivableSupList\": [\n{\n\"creatorId\": null,\n\"creator\": null,\n\"createTime\": null,\n\"operator\": null,\n\"updaterId\": null,\n\"updater\": null,\n\"updateTime\": null,\n\"seq\": 0,\n\"params\": null,\n\"examineId\": null,\n\"examiner\": null,\n\"examineTime\": null,\n\"pageNumber\": 1,\n\"pageSize\": 10,\n\"orderNo\": null,\n\"orderId\": null,\n\"batchId\": null,\n\"companyId\": null,\n\"remarks\": null,\n\"index\": null,\n\"billNo\": null,\n\"uuid\": \"c43b3901-434d-11e8-a166-44a8421bb841\",\n\"collectionContent\": null,\n\"collectionDate\": null,\n\"transNo\": null,\n\"unitPrice\": null,\n\"number\": null,\n\"unit\": null,\n\"amount\": null,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"voucher\": null,\n\"integral\": null,\n\"commission\": null,\n\"serviceCharge\": null,\n\"insurance\": null,\n\"customerPaymentAmount\": null,\n\"commodityNum\": null,\n\"commodityName\": null,\n\"freight\": null,\n\"sendArea\": null,\n\"sendStation\": null,\n\"platform\": null,\n\"haveOtherOrder\": null,\n\"orderTypeBelong\": null,\n\"orderSource\": null,\n\"orderPickUpEmp\": null,\n\"orderOperator\": null,\n\"orderer\": null,\n\"ordererPhone\": null,\n\"receiver\": null,\n\"receiverPhone\": null,\n\"receiverAddress\": null,\n\"delivery\": null,\n\"deliveryTime\": null,\n\"deliveryman\": null,\n\"deliverymanPhone\": null,\n\"store\": null,\n\"payType\": null,\n\"payState\": null,\n\"couponName\": null,\n\"orderStatus\": null,\n\"invoiceContent\": null,\n\"groupPurchaseVerificationCode\": null,\n\"cancelReason\": null,\n\"firstCommodityClass\": null,\n\"secondCommodityClass\": null,\n\"specification\": null,\n\"productName\": null,\n\"groupSKU\": null,\n\"productNum\": null,\n\"commodityOfficialPrice\": null,\n\"commodityReceivablePrice\": null,\n\"commodityVoucherNumber\": null,\n\"paymentNumber\": null,\n\"map\": {\n\"insurance\": null,\n\"serviceCharge\": null,\n\"voucher\": null,\n\"integral\": null,\n\"freight\": null,\n\"platformCoupon\": null,\n\"commission\": null,\n\"customerPaymentAmount\": null,\n\"companyCoupon\": null\n},\n\"sku\": null,\n\"skunum\": null\n}\n],\n\"reconciliationPlanInfoList\": null,\n\"receivableRelationInfoList\": null,\n\"settleAmount\": 0,\n\"unsettleAmount\": 20,\n\"settleStatus\": \"UnSettled\",\n\"settlementStatus\": null,\n\"settlementMoney\": null,\n\"unsettlementMoney\": null,\n\"settlementdMoney\": null,\n\"cashCoupon\": null,\n\"integral\": null,\n\"commission\": null,\n\"charge\": null,\n\"freight\": null,\n\"orderType\": \"0\",\n\"totalAmount\": 20,\n\"platformCoupon\": null,\n\"companyCoupon\": null,\n\"sellerPayment\": null,\n\"platform\": \"幸福微商城,有赞普通订单\",\n\"billNo\": \"2018030519235622\",\n\"differenceProcessingStatus\": \"N\",\n\"differenceProcessingAmount\": 0,\n\"differenceProcessingRamarks\": null,\n\"insurance\": null\n}\n]\n}\n\n"
  },
  {
    "path": "static/data/tableCols.json",
    "content": "[\n  {\n    \"prop\": \"\",\n    \"label\": \"\",\n    \"width\": \"60\",\n    \"type\":\"selection\"\n  },\n  {\n    \"prop\": \"billNo\",\n    \"label\": \"单据编号\",\n    \"width\": \"200\"\n  },\n  {\n    \"prop\": \"platform\",\n    \"label\": \"平台\",\n    \"width\": \"200\"\n  },\n  {\n    \"prop\": \"orderNo\",\n    \"label\": \"平台订单号\",\n    \"width\": \"250\"\n  },\n  {\n    \"prop\": \"totalAmount\",\n    \"label\": \"总金额\",\n    \"width\": \"80\"\n  },\n  {\n    \"prop\": \"status\",\n    \"label\": \"单据状态\",\n    \"width\": \"90\"\n  },\n  {\n    \"prop\": \"businessDate\",\n    \"label\": \"业务日期\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"settleStatus\",\n    \"label\": \"对账状态\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"settleAmount\",\n    \"label\": \"已对账金额\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"unsettleAmount\",\n    \"label\": \"未对账金额\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"differenceProcessingStatus\",\n    \"label\": \"差异处理状态\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"differenceProcessingAmount\",\n    \"label\": \"差异处理金额\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"differenceProcessingRamarks\",\n    \"label\": \"差异处理原因\",\n    \"width\": \"130\"\n  },\n  {\n    \"prop\": \"reconStatus\",\n    \"label\": \"退款状态\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"unsettlementMoney\",\n    \"label\": \"未退款金额\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"settlementMoney\",\n    \"label\": \"已退款金额\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"orderType\",\n    \"label\": \"单据类型\",\n    \"width\": \"110\",\n    \"type\":\"\"\n  },\n  {\n    \"prop\": \"orderTotalAmount\",\n    \"label\": \"订单总金额\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"commission\",\n    \"label\": \"佣金\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"integral\",\n    \"label\": \"积分\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"platformCoupon\",\n    \"label\": \"平台优惠卷\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"companyCoupon\",\n    \"label\": \"公司优惠卷\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"insurance\",\n    \"label\": \"保险\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"freight\",\n    \"label\": \"运费\",\n    \"width\": \"110\"\n  },\n  {\n    \"prop\": \"sellerPayment\",\n    \"label\": \"买家支付金额\",\n    \"width\": \"120\"\n  }\n]"
  }
]