Browse Source

修改

dev_kxc
xzt 1 year ago
parent
commit
bee325ac9e
  1. 5
      jwtech-admin-page/src/layout/components/Sidebar/Logo.vue
  2. 3
      jwtech-admin-page/src/settings.js
  3. 4
      jwtech-admin-page/src/views/loginbg.vue
  4. 6
      jwtech-admin-page/src/views/project/bid/index.vue
  5. 2
      jwtech-admin-page/src/views/project/special/options/basePage.vue
  6. 2
      jwtech-admin-page/vue.config.js

5
jwtech-admin-page/src/layout/components/Sidebar/Logo.vue

@ -35,9 +35,10 @@ export default {
}, },
data() { data() {
return { return {
title: "广东省水工程建设管理系统", title: "管理系统",
// title: '', // title: '',
logo: logoImg, // logo: logoImg,
logo: "",
}; };
}, },
created() { created() {

3
jwtech-admin-page/src/settings.js

@ -1,6 +1,5 @@
module.exports = { module.exports = {
// title: '安全知识图谱管理平台', title: '管理系统后台',
title: '广东省水工程建设管理系统后台',
/** /**
* 是否系统布局配置 * 是否系统布局配置

4
jwtech-admin-page/src/views/loginbg.vue

@ -2,8 +2,8 @@
<div class="login"> <div class="login">
<div class="logo-text" style="text-align: center"> <div class="logo-text" style="text-align: center">
<!-- <img src="@/assets/image/bg/title.png" style="width: 579px" alt="" /> --> <!-- <img src="@/assets/image/bg/title.png" style="width: 579px" alt="" /> -->
<img src="@/assets/logo/logo-shuili.jpg" alt="" /> <!-- <img src="@/assets/logo/logo-shuili.jpg" alt="" /> -->
<span>广东省水工程建设管理系统</span> <span>管理系统</span>
</div> </div>
<div class="wrapper"> <div class="wrapper">

6
jwtech-admin-page/src/views/project/bid/index.vue

@ -14,7 +14,7 @@
<el-col :span="22"> <el-col :span="22">
<!-- 搜索条件 --> <!-- 搜索条件 -->
<el-form <el-form
:model="queryParams" :model="proQueryParams"
ref="proQueryParams" ref="proQueryParams"
:inline="true" :inline="true"
label-width="68px" label-width="68px"
@ -191,8 +191,8 @@
<pagination <pagination
v-show="total > 0" v-show="total > 0"
:total="total" :total="total"
:page.sync="queryParams.pageNum" :page.sync="proQueryParams.pageNum"
:limit.sync="queryParams.pageSize" :limit.sync="proQueryParams.pageSize"
@pagination="getList" @pagination="getList"
/> />
</div> </div>

2
jwtech-admin-page/src/views/project/special/options/basePage.vue

@ -399,9 +399,9 @@ export default {
this.msgSuccess("新增成功"); this.msgSuccess("新增成功");
// this.open = false; // this.open = false;
// this.getList(); // this.getList();
this.$router.push("/project/special");
} }
}); });
this.$router.push("/project/special");
} }
} }
}); });

2
jwtech-admin-page/vue.config.js

@ -7,7 +7,7 @@ function resolve(dir) {
return path.join(__dirname, dir) return path.join(__dirname, dir)
} }
const name = defaultSettings.title || '广东省水工程建设管理系统' // 标题 const name = defaultSettings.title || '管理系统' // 标题
const port = process.env.port || process.env.npm_config_port || 80 // 端口 const port = process.env.port || process.env.npm_config_port || 80 // 端口

Loading…
Cancel
Save