Commit 051a8a7b by yuzhenWang

Merge branch 'feature-20250827wyz-写业务' into 'test'

表格组件发测试

See merge request !30
parents f0e68a43 26ba6893
...@@ -97,6 +97,7 @@ watch( ...@@ -97,6 +97,7 @@ watch(
<style scoped lang="scss"> <style scoped lang="scss">
.commonDialog-container { .commonDialog-container {
width: 100%; width: 100%;
box-sizing: border-box;
} }
.titleBox { .titleBox {
width: 100%; width: 100%;
...@@ -114,5 +115,4 @@ watch( ...@@ -114,5 +115,4 @@ watch(
align-items: center; align-items: center;
padding: 20px 0; padding: 20px 0;
} }
</style> </style>
...@@ -59,7 +59,6 @@ ...@@ -59,7 +59,6 @@
<!-- 表格插槽 --> <!-- 表格插槽 -->
<slot name="table"></slot> <slot name="table"></slot>
</el-row> </el-row>
</el-card> </el-card>
</div> </div>
...@@ -223,6 +222,7 @@ onMounted(() => { ...@@ -223,6 +222,7 @@ onMounted(() => {
<style scoped> <style scoped>
.commonPage-container { .commonPage-container {
width: 100%; width: 100%;
box-sizing: border-box;
} }
.cardStyle { .cardStyle {
...@@ -261,11 +261,7 @@ onMounted(() => { ...@@ -261,11 +261,7 @@ onMounted(() => {
/* 搜索表单容器样式 */ /* 搜索表单容器样式 */
.search-form-container { .search-form-container {
display: flex;
flex-wrap: wrap;
gap: 12px;
width: 100%; width: 100%;
align-items: flex-end;
} }
/* 响应式调整 */ /* 响应式调整 */
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<template #searchForm> <template #searchForm>
<el-form :model="queryParams" ref="queryRef" label-width="78px"> <el-form :model="queryParams" ref="queryRef" label-width="78px">
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="8"> <el-col :sm="12" :lg="6" :xs="24">
<el-form-item label="创建时间"> <el-form-item label="创建时间">
<el-date-picker <el-date-picker
v-model="dateRange" v-model="dateRange"
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
></el-date-picker> ></el-date-picker>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :sm="12" :lg="6" :xs="24">
<el-form-item label="流程编号" prop="fnaNo"> <el-form-item label="流程编号" prop="fnaNo">
<el-input <el-input
v-model="queryParams.fnaNo" v-model="queryParams.fnaNo"
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
/> />
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :sm="12" :lg="6" :xs="24">
<el-form-item label="客户姓名" prop="customerName"> <el-form-item label="客户姓名" prop="customerName">
<el-input <el-input
v-model="queryParams.customerName" v-model="queryParams.customerName"
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :sm="12" :lg="6" :xs="24">
<el-form-item label="状态" prop="status"> <el-form-item label="状态" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择" clearable> <el-select v-model="queryParams.status" placeholder="请选择" clearable>
<el-option <el-option
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<template #searchForm> <template #searchForm>
<el-form :model="queryParams" ref="queryRef" label-width="100px"> <el-form :model="queryParams" ref="queryRef" label-width="100px">
<el-row :gutter="30"> <el-row :gutter="30">
<el-col :span="10"> <el-col :sm="12" :lg="8" :xs="24">
<el-form-item label="确认预约时间"> <el-form-item label="确认预约时间">
<el-date-picker <el-date-picker
v-model="dateRange" v-model="dateRange"
...@@ -19,14 +19,12 @@ ...@@ -19,14 +19,12 @@
start-placeholder="开始日期" start-placeholder="开始日期"
end-placeholder="结束日期" end-placeholder="结束日期"
@clear="clearDate" @clear="clearDate"
style="width: 100%"
></el-date-picker> ></el-date-picker>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="7"> <el-col :sm="12" :lg="8" :xs="24">
<el-form-item label="预约编号" prop="appointmentNo"> <el-form-item label="预约编号" prop="appointmentNo">
<el-input <el-input
style="width: 100%"
v-model="queryParams.appointmentNo" v-model="queryParams.appointmentNo"
placeholder="请输入预约编号" placeholder="请输入预约编号"
clearable clearable
...@@ -34,14 +32,9 @@ ...@@ -34,14 +32,9 @@
/> />
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="7"> <el-col :sm="12" :lg="8" :xs="24">
<el-form-item label="预约状态" prop="status"> <el-form-item label="预约状态" prop="status">
<el-select <el-select v-model="queryParams.status" placeholder="请选择" clearable>
v-model="queryParams.status"
placeholder="请选择"
clearable
style="width: 100%"
>
<el-option <el-option
v-for="dict in csf_ap_status" v-for="dict in csf_ap_status"
:key="dict.value" :key="dict.value"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment