调整列宽

main
roger_work 3 weeks ago
parent 87f6bc48ea
commit 61da200d12
  1. 2
      .gitignore
  2. 2538
      package-lock.json
  3. 7
      package.json
  4. 6
      src/views/product/index.vue
  5. 1723
      yarn.lock

2
.gitignore vendored

@ -24,3 +24,5 @@ dist-ssr
*.sw?
src/env_config.js*
/node_modules.zip
/.vscode/

2538
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -1,8 +1,9 @@
{
"name": "dingxin_toolbox_vue",
"private": true,
"version": "0.0.0",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
@ -27,10 +28,10 @@
"ws": "^8.16.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.0",
"@vitejs/plugin-vue": "^5.2.4",
"sass": "^1.69.5",
"unplugin-auto-import": "^0.17.2",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.0"
"vite": "^6.4.1"
}
}

@ -250,9 +250,9 @@ onBeforeRouteLeave(
<!-- <el-button style="margin-right: 0">添加</el-button>-->
</el-form>
<el-table :data="tableData" style="width: 100%">
<el-table-column prop="project" label="所属项目" min-width="200"></el-table-column>
<el-table-column prop="prd_version" label="版本" min-width="200"></el-table-column>
<el-table-column prop="prd_status" label="版本状态" min-width="150"></el-table-column>
<el-table-column prop="project" label="所属项目" min-width="160"></el-table-column>
<el-table-column prop="prd_version" label="版本" min-width="160"></el-table-column>
<el-table-column prop="prd_status" label="版本状态" min-width="120"></el-table-column>
<el-table-column prop="prd_doc_link" label="产品原型链接" min-width="300" show-overflow-tooltip>
<template v-slot="scope">
<a target="_blank" style="color:#007bff;" v-if="scope.row.prd_doc_link!=null"

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save