This commit is contained in:
duanxiaohai 2024-09-11 17:20:36 +08:00
parent c7e395ec71
commit bb4ef50c88
2 changed files with 11 additions and 11 deletions

View File

@ -11,7 +11,7 @@
</div> </div>
</div> </div>
</div> </div>
<div style="width: 97.5%; position: relative" class="ta"> <div style="width: 97.5%; position: relative" >
<div class="backgroundVirtual"></div> <div class="backgroundVirtual"></div>
<el-table <el-table
border border
@ -69,7 +69,7 @@
</div> </div>
</div> </div>
</div> </div>
<div style="width: 97.5%; position: relative" class="ta"> <div style="width: 97.5%; position: relative" >
<div class="backgroundVirtual"></div> <div class="backgroundVirtual"></div>
<el-table <el-table
border border
@ -191,7 +191,7 @@
<!-- <div v-else class="text_1">未享受对象</div> --> <!-- <div v-else class="text_1">未享受对象</div> -->
</div> </div>
</div> </div>
<div style="width: 97.5%; position: relative" class="ta"> <div style="width: 97.5%; position: relative" >
<div class="backgroundVirtual"></div> <div class="backgroundVirtual"></div>
<el-table <el-table
border border
@ -856,7 +856,7 @@ const formData = reactive({
{ {
label: "服务内容", label: "服务内容",
property: "fwnr", property: "fwnr",
align: "left", align: "center",
}, },
{ {
label: "结果", label: "结果",
@ -1449,7 +1449,7 @@ const formData = reactive({
{ {
label: "服务内容", label: "服务内容",
property: "fwnr", property: "fwnr",
align: "left", align: "center",
}, },
{ {
label: "结果", label: "结果",
@ -1645,7 +1645,7 @@ const formData = reactive({
{ {
label: "服务内容", label: "服务内容",
property: "fwnr", property: "fwnr",
align: "left", align: "center",
}, },
{ {
label: "结果", label: "结果",
@ -1975,7 +1975,7 @@ const formData = reactive({
{ {
label: "服务内容", label: "服务内容",
property: "fwnr", property: "fwnr",
align: "left", align: "center",
}, },
{ {
label: "结果", label: "结果",
@ -3277,7 +3277,7 @@ onMounted(() => {
</style> </style>
<style lang="scss" scoped> <style lang="scss" scoped>
// //
.ta {
:deep(.el-pagination > .is-last) { :deep(.el-pagination > .is-last) {
color: #fff !important ; color: #fff !important ;
} }
@ -3311,5 +3311,5 @@ onMounted(() => {
background: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.14);
border: 1px solid #6bade1; border: 1px solid #6bade1;
} }
}
</style> </style>

View File

@ -15,8 +15,8 @@ export default defineConfig({
// 第一个代理 // 第一个代理
"/api": { "/api": {
// 匹配到啥来进行方向代理 // 匹配到啥来进行方向代理
// target: "http://10.0.0.65:8095/", //刘进 target: "http://10.0.0.65:8095/", //刘进
target: "http://220.191.238.50:996/", //线上 // target: "http://220.191.238.50:996/", //线上
changeOrigin: true, //是否支持跨域 changeOrigin: true, //是否支持跨域
//rewrite: (path) => path.replace(/^\/api/, '') // 如果不需要api 直接把路径上的api 替换成空,这个 //rewrite: (path) => path.replace(/^\/api/, '') // 如果不需要api 直接把路径上的api 替换成空,这个
}, },