优化充值问题

pull/17/head
youngS 4 years ago
parent 25fb257a53
commit c93df04b18
  1. 1
      fir_client/src/components/user/FirUserOrders.vue
  2. 78
      fir_client/vue.config.js

@ -419,6 +419,7 @@
let out_trade_no = this.$route.params.out_trade_no; let out_trade_no = this.$route.params.out_trade_no;
if (out_trade_no) { if (out_trade_no) {
this.goto_pay(this.current_order_info); this.goto_pay(this.current_order_info);
this.$route.params.out_trade_no=undefined;
} }
} }
} else if (data.code === 1008) { } else if (data.code === 1008) {

@ -113,45 +113,45 @@ module.exports = {
return options return options
}) })
.end(); .end();
//
config.when(!IS_PROD, // config.when(!IS_PROD,
config => { // config => {
config // config
.plugin('ScriptExtHtmlWebpackPlugin') // .plugin('ScriptExtHtmlWebpackPlugin')
.after('html') // .after('html')
.use('script-ext-html-webpack-plugin', [{ // .use('script-ext-html-webpack-plugin', [{
// `runtime` must same as runtimeChunk name. default is `runtime` // // `runtime` must same as runtimeChunk name. default is `runtime`
inline: /runtime\..*\.js$/ // inline: /runtime\..*\.js$/
}]) // }])
.end(); // .end();
config // config
.optimization.splitChunks({ // .optimization.splitChunks({
chunks: 'all', // chunks: 'all',
cacheGroups: { // cacheGroups: {
libs: { // libs: {
name: 'chunk-libs', // name: 'chunk-libs',
test: /[\\/]node_modules[\\/]/, // test: /[\\/]node_modules[\\/]/,
priority: 10, // priority: 10,
chunks: 'initial' // only package third parties that are initially dependent // chunks: 'initial' // only package third parties that are initially dependent
}, // },
elementUI: { // elementUI: {
name: 'chunk-elementUI', // split elementUI into a single package // name: 'chunk-elementUI', // split elementUI into a single package
priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app // priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm // test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
}, // },
commons: { // commons: {
name: 'chunk-commons', // name: 'chunk-commons',
test: resolve('src/components'), // can customize your rules // test: resolve('src/components'), // can customize your rules
minChunks: 3, // minimum common number // minChunks: 3, // minimum common number
priority: 5, // priority: 5,
reuseExistingChunk: true // reuseExistingChunk: true
} // }
} // }
}); // });
config.optimization.runtimeChunk('single'); // config.optimization.runtimeChunk('single');
//
} // }
); // );
} }

Loading…
Cancel
Save