页面修改
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
<el-col v-bind="grid2">
|
<el-col v-bind="grid2">
|
||||||
<el-form-item label="商品分类:" prop="cate_id">
|
<el-form-item label="商品分类:" prop="cate_id">
|
||||||
<el-select v-model="formValidate.cate_id" filterable :filter-method="dataFilter" clearable>
|
<el-select v-model="formValidate.cate_id" filterable :filter-method="dataFilter" clearable>
|
||||||
<el-option v-for="item in optionsMetaShow" :disabled="item.disabled === 0"
|
<el-option v-for="item in optionsMetaShow"
|
||||||
:value="item.value" :key="item.id" :label="item.label" ></el-option>
|
:value="item.value" :key="item.id" :label="item.label" ></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
<el-option v-for="item in queryTypeOptions" :key="item.key" :label="item.display_name" :value="item.key" />
|
<el-option v-for="item in queryTypeOptions" :key="item.key" :label="item.display_name" :value="item.key" />
|
||||||
</el-select>
|
</el-select>
|
||||||
<el-select v-model="cateId" clearable placeholder="商品分类" class="filter-item" filterable :filter-method="dataFilter" style="width: 130px">
|
<el-select v-model="cateId" clearable placeholder="商品分类" class="filter-item" filterable :filter-method="dataFilter" style="width: 130px">
|
||||||
<el-option v-for="item in optionsMetaShow" :disabled="item.disabled === 0"
|
<el-option v-for="item in optionsMetaShow"
|
||||||
:value="item.value"
|
:value="item.value"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.label"></el-option>
|
:label="item.label"></el-option>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
<el-option v-for="item in queryTypeOptions" :key="item.key" :label="item.display_name" :value="item.key" />
|
<el-option v-for="item in queryTypeOptions" :key="item.key" :label="item.display_name" :value="item.key" />
|
||||||
</el-select>
|
</el-select>
|
||||||
<el-select v-model="cateId" clearable placeholder="商品分类" class="filter-item" style="width: 130px">
|
<el-select v-model="cateId" clearable placeholder="商品分类" class="filter-item" style="width: 130px">
|
||||||
<el-option v-for="item in cateList" :disabled="item.disabled === 0"
|
<el-option v-for="item in cateList"
|
||||||
:value="item.value"
|
:value="item.value"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.label"></el-option>
|
:label="item.label"></el-option>
|
||||||
|
|||||||
+8
-8
@@ -33,14 +33,14 @@
|
|||||||
</el-button>
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item style="width:100%;">
|
<!-- <el-form-item style="width:100%;">-->
|
||||||
<div class="oauth-login" style="display:flex">
|
<!-- <div class="oauth-login" style="display:flex">-->
|
||||||
<div class="oauth-login-item" v-for="item in SysUserSocialTypeEnum" :key="item.type" @click="doSocialLogin(item)">
|
<!-- <div class="oauth-login-item" v-for="item in SysUserSocialTypeEnum" :key="item.type" @click="doSocialLogin(item)">-->
|
||||||
<img :src="item.img" height="25px" width="25px" alt="登录" >
|
<!-- <img :src="item.img" height="25px" width="25px" alt="登录" >-->
|
||||||
<span>{{item.title}}</span>
|
<!-- <span>{{item.title}}</span>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</el-form-item>
|
<!-- </el-form-item>-->
|
||||||
</el-form>
|
</el-form>
|
||||||
<!-- 底部 -->
|
<!-- 底部 -->
|
||||||
<div class="el-login-footer">
|
<div class="el-login-footer">
|
||||||
|
|||||||
+9
-9
@@ -8,7 +8,7 @@ function resolve(dir) {
|
|||||||
|
|
||||||
const CompressionPlugin = require('compression-webpack-plugin')
|
const CompressionPlugin = require('compression-webpack-plugin')
|
||||||
|
|
||||||
const name = process.env.VUE_APP_TITLE || '农场管理系统' // 网页标题
|
const name = process.env.VUE_APP_TITLE || '眼界甄选' // 网页标题
|
||||||
|
|
||||||
const port = process.env.port || process.env.npm_config_port || 80 // 端口
|
const port = process.env.port || process.env.npm_config_port || 80 // 端口
|
||||||
|
|
||||||
@@ -77,13 +77,13 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
// http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件
|
// http://doc.ruoyi.vip/ruoyi-vue/other/faq.html#使用gzip解压缩静态文件
|
||||||
new CompressionPlugin({
|
// new CompressionPlugin({
|
||||||
test: /\.(js|css|html)?$/i, // 压缩文件格式
|
// test: /\.(js|css|html)?$/i, // 压缩文件格式
|
||||||
filename: '[path].gz[query]', // 压缩后的文件名
|
// filename: '[path].gz[query]', // 压缩后的文件名
|
||||||
algorithm: 'gzip', // 使用gzip压缩
|
// algorithm: 'gzip', // 使用gzip压缩
|
||||||
minRatio: 0.8, // 压缩率小于1才会压缩
|
// minRatio: 0.8, // 压缩率小于1才会压缩
|
||||||
deleteOriginalAssets:true
|
// deleteOriginalAssets:true
|
||||||
})
|
// })
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
chainWebpack(config) {
|
chainWebpack(config) {
|
||||||
@@ -139,7 +139,7 @@ module.exports = {
|
|||||||
inline: /runtime\..*\.js$/
|
inline: /runtime\..*\.js$/
|
||||||
}])
|
}])
|
||||||
.end()
|
.end()
|
||||||
|
|
||||||
|
|
||||||
config
|
config
|
||||||
.optimization.splitChunks({
|
.optimization.splitChunks({
|
||||||
|
|||||||
Reference in New Issue
Block a user