MrShi
2025-09-10 1b1f2b86549563bbbb18633c02fa1911e4f547e7
改bug
已修改5个文件
24 ■■■■ 文件已修改
frontWuhu/.env.development 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
frontWuhu/src/router/index.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
frontWuhu/src/views/business/appHall.vue 16 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
frontWuhu/src/views/business/serviceProviderResources.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
frontWuhu/src/views/system/menu.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
frontWuhu/.env.development
@@ -8,7 +8,8 @@
# VVUE_APP_API_BASE_URL='http://192.168.0.102:10031'
# 任康本地
VUE_APP_API_BASE_URL='http://192.168.1.54:10031'
# VUE_APP_API_BASE_URL='http://192.168.1.54:10031'
VUE_APP_API_BASE_URL = 'http://wuhu.dtkey.cn/hfznzzzd'
#焦松本地
# VUE_APP_API_BASE_URL='http://192.168.0.36:10011'
frontWuhu/src/router/index.js
@@ -67,7 +67,7 @@
router.beforeEach((to, from, next) => {
  if (to.path === '/business/screen') {
    // window.open('http://localhost:8080/#/maturity')
    window.open(process.env.VUE_APP_SCREENURL1 + '/screen/#/maturity')
    window.open(process.env.VUE_APP_SCREENURL2)
    next({ name: from.name })
    return
  }
frontWuhu/src/views/business/appHall.vue
@@ -14,7 +14,7 @@
            </div>
        </div>
        <div class="box_cate">
            <div class="list">
            <div class="list" v-if="list.length > 0">
                <div class="list_item" v-for="(item, index) in list" :key="index">
                    <div class="list_item_image">
                        <img :src="item.fullLog" alt="" />
@@ -30,8 +30,12 @@
                <div class="list_zw"></div>
                <div class="list_zw"></div>
            </div>
            <div class="list" v-else>
                <div class="list_wu">无数据</div>
            </div>
            <div class="pagination">
                <el-pagination
                    v-if="list.length > 0"
                    @current-change="handleCurrentChange"
                    :current-page="page"
                    :page-sizes="[12, 24, 36, 48]"
@@ -82,7 +86,8 @@
          capacity: 12,
          page: this.page,
          model: {
            applicationInfo: this.applicationInfo
            applicationInfo: this.applicationInfo,
            status: 0
          }
        }).then(res => {
          res.records.forEach((item) => {
@@ -191,6 +196,13 @@
                align-items: center;
                flex-wrap: wrap;
                justify-content: space-between;
                .list_wu {
                    width: 100%;
                    text-align: center;
                    margin: 50px 0;
                    font-size: 14px;
                    color: #666666;
                }
                .list_zw {
                    width: 24%;
                    height: 0;
frontWuhu/src/views/business/serviceProviderResources.vue
@@ -58,6 +58,7 @@
            </div>
            <div class="pagination">
                <el-pagination
                    v-if="list.length > 0"
                    @current-change="handleCurrentChange"
                    :current-page="page"
                    :page-sizes="[12, 24, 36, 48]"
frontWuhu/src/views/system/menu.vue
@@ -20,7 +20,7 @@
        @selection-change="handleSelectionChange"
      >
        <el-table-column type="selection" width="55" align="center" fixed="left"></el-table-column>
        <el-table-column prop="name" label="菜单名称"  fixed="left" align="center" min-width="160px"></el-table-column>
        <el-table-column prop="name" label="菜单名称"  fixed="left" min-width="160px"></el-table-column>
        <el-table-column prop="icon" label="图标" align="center" min-width="80px" class-name="table-column-icon">
          <template slot-scope="{row}">
            <i v-if="row.icon != null && row.icon !== ''" :class="{[row.icon]: true}"></i>