This commit is contained in:
hrx 2025-09-15 10:59:13 +08:00
parent ff1a27a96f
commit f91a860f9c
6 changed files with 30 additions and 29 deletions

View File

@ -88,7 +88,7 @@
class="cloud-contact-us-icon"></span> class="cloud-contact-us-icon"></span>
<p class="cloud-contact-us-tit" style="font-size: 14px;">售前咨询</p> <p class="cloud-contact-us-tit" style="font-size: 14px;">售前咨询</p>
</div> </div>
<div style=";display: flex;justify-content: center;align-items: center;" <div style="display: flex;justify-content: center;align-items: center;"
> >
<div v-if="!phone" <div v-if="!phone"
style="width: 80px;height: 25px;display: flex!important;justify-content: center;align-items: center"> style="width: 80px;height: 25px;display: flex!important;justify-content: center;align-items: center">

View File

@ -5,3 +5,4 @@ export default {
document.body.style.userSelect = 'none'; document.body.style.userSelect = 'none';
}, },
}; };

View File

@ -9,21 +9,21 @@
fixed fixed
prop="username" prop="username"
label="用户名" label="用户名"
width="150"> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="orgname" prop="orgname"
label="用户机构" label="用户机构"
width="120"> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="create_at" prop="create_at"
label="申请时间" label="申请时间"
width="180"> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="操作" label="操作"
width="150"> >
<template slot-scope="scope"> <template slot-scope="scope">
<div v-if="scope.row.type==='0'"> <div v-if="scope.row.type==='0'">
<el-button @click="handleClick(scope.row)" size="mini" type="primary">同意</el-button> <el-button @click="handleClick(scope.row)" size="mini" type="primary">同意</el-button>

View File

@ -141,28 +141,28 @@ module.exports = {
.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
}
} }
} })
})
// https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk // https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk
config.optimization.runtimeChunk('single') config.optimization.runtimeChunk('single')
} }