panchengyong
2024-11-14 5a445a8063e3b19c36b5989163fd3a179a476453
CK池样式修改
3 files modified
16 ■■■■ changed files
src/utils/nonTokenRequest.js 4 ●●●● patch | view | raw | blame | history
src/views/engine/vuser/vUserInfoIndex.vue 4 ●●●● patch | view | raw | blame | history
src/views/rpa/cookieIndex.vue 8 ●●●● patch | view | raw | blame | history
src/utils/nonTokenRequest.js
@@ -14,8 +14,8 @@
import {getTenantId} from "@/utils/auth";
export const service = axios.create({
  // axios中请求配置有baseURL选项,表示请求URL公共部分
  // baseURL: "http://localhost:8091",
  baseURL: "http://111.229.137.199:8091",
  baseURL: "http://localhost:8091",
  // baseURL: "http://111.229.137.199:8091",
  // baseURL: "http://47.102.98.249:8091", //zerocode
  //baseURL: "http://47.120.7.97:8091",
  // 超时
src/views/engine/vuser/vUserInfoIndex.vue
@@ -64,8 +64,8 @@
        </el-table-column>
        <el-table-column prop="introduction" label="简介" show-overflow-tooltip min-width="250"/>
        <el-table-column prop="ip" label="IP" min-width="80"/>
        <el-table-column prop="post" label="作品数" min-width="80"/>
        <el-table-column prop="" label="获赞/关注/粉丝" show-overflow-tooltip>
        <el-table-column prop="post" label="作品数" min-width="70"/>
        <el-table-column prop="" label="获赞/关注/粉丝" show-overflow-tooltip min-width="150">
          <template slot-scope="scope">
            {{scope.row.praise ? scope.row.praise : 0}} / {{scope.row.follow ? scope.row.follow : 0}} / {{scope.row.fans ? scope.row.fans : 0}}
          </template>
src/views/rpa/cookieIndex.vue
@@ -51,18 +51,18 @@
        <el-table-column prop="cookie" label="CK值" show-overflow-tooltip min-width="150"/>
        <el-table-column prop="createTime" label="创建时间" min-width="120"/>
        <el-table-column prop="lastAccessTime" label="最后使用时间" min-width="120"/>
        <el-table-column prop="isValid" label="状态" min-width="50">
<!--        <el-table-column prop="isValid" label="状态" min-width="50">
          <template slot-scope="scope">
            <span v-if="(scope.row.isValid === false)" style="color: #00afff">可用</span>
            <span v-if="(scope.row.isValid === true)" style="color: red">失效</span>
          </template>
        </el-table-column>
        </el-table-column> -->
        <el-table-column label="操作" min-width="100" fixed="right" align="center">
          <template slot-scope="scope">
            <el-button type="primary" size="small" @click="update(scope.row)">修改
            </el-button>
            <el-button type="danger" size="small" @click="deleted(scope.row.id)">删除
            </el-button>
       <!--     <el-button type="danger" size="small" @click="deleted(scope.row.id)">删除
            </el-button> -->
          </template>
        </el-table-column>
      </el-table>