This commit is contained in:
闫晓茹 2022-11-08 10:20:29 +08:00
parent 58b02d91c4
commit 4104a0585d
2 changed files with 7 additions and 6 deletions

View File

@ -6,7 +6,7 @@ ENV = 'development'
# 全医通护理站管理平台/开发环境 # 全医通护理站管理平台/开发环境
# VUE_APP_BASE_API = '/dev-api' # VUE_APP_BASE_API = '/dev-api'
VUE_APP_BASE_API = 'http://192.168.16.49:8080' VUE_APP_BASE_API = 'http://192.168.16.30:8080'
# 路由懒加载 # 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true VUE_CLI_BABEL_TRANSPILE_MODULES = true

View File

@ -127,7 +127,7 @@
:visible.sync="innerVisible4" :visible.sync="innerVisible4"
append-to-body append-to-body
width="1048px" width="1048px"
class="orderInfo"
> >
<el-form <el-form
:inline="true" :inline="true"
@ -135,6 +135,7 @@
:model="form" :model="form"
:rules="rules" :rules="rules"
label-width="120px" label-width="120px"
class="orderInfo"
> >
<div v-for="(item, index) in query" :key="index"> <div v-for="(item, index) in query" :key="index">
@ -523,7 +524,7 @@ export default {
}, },
// //
seeLook(row) { seeLook(row) {
this.innerVisible = true; this.innerVisible4 = true;
const id = row.orderNo; const id = row.orderNo;
// console.log(row); // console.log(row);
Detailed(id).then((res) => { Detailed(id).then((res) => {
@ -697,8 +698,8 @@ export default {
}; };
</script> </script>
<style scoped> <style scoped>
/* ::v-deep .el-dialog__body { ::v-deep .orderInfo{
height: 500px; height: 350px;
overflow-y: scroll; overflow-y: scroll;
} */ }
</style> </style>