main #34

Merged
charles merged 191 commits from main into prod 2025-11-19 16:18:39 +08:00
6 changed files with 30 additions and 29 deletions
Showing only changes of commit f91a860f9c - Show all commits

View File

@ -1,3 +1,3 @@
{
"plugins": ["@babel/plugin-syntax-dynamic-import"]
}
}

View File

@ -24,7 +24,7 @@
<!-- </div>-->
<div @click="open2"
style="position:absolute;bottom:-40px;display: flex;justify-content: center;align-items: center;cursor: pointer">
<el-tooltip v-if="getHomePath()!=='/ncmatchHome/index'" class="item" effect="light" content="联系销售" placement="left">
<span class="el-icon-video-camera"
@ -88,7 +88,7 @@
class="cloud-contact-us-icon"></span>
<p class="cloud-contact-us-tit" style="font-size: 14px;">售前咨询</p>
</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"
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';
},
};

View File

@ -63,7 +63,7 @@
</li>
<li>
<span class="icon"><img
src="./img/3.png"
src="./img/3.png"
alt=""></span>
<div class="title">价值观</div>
<div class="description">

View File

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

View File

@ -141,28 +141,28 @@ module.exports = {
.end()
config
.optimization.splitChunks({
chunks: 'all',
cacheGroups: {
libs: {
name: 'chunk-libs',
test: /[\\/]node_modules[\\/]/,
priority: 10,
chunks: 'initial' // only package third parties that are initially dependent
},
elementUI: {
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
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
},
commons: {
name: 'chunk-commons',
test: resolve('src/components'), // can customize your rules
minChunks: 3, // minimum common number
priority: 5,
reuseExistingChunk: true
chunks: 'all',
cacheGroups: {
libs: {
name: 'chunk-libs',
test: /[\\/]node_modules[\\/]/,
priority: 10,
chunks: 'initial' // only package third parties that are initially dependent
},
elementUI: {
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
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
},
commons: {
name: 'chunk-commons',
test: resolve('src/components'), // can customize your rules
minChunks: 3, // minimum common number
priority: 5,
reuseExistingChunk: true
}
}
}
})
})
// https:// webpack.js.org/configuration/optimization/#optimizationruntimechunk
config.optimization.runtimeChunk('single')
}