4552de5c by 任超

style;样式修改

1 parent 6b3d617c
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
36 <!-- 列表区域 --> 36 <!-- 列表区域 -->
37 <div class="from-clues-content"> 37 <div class="from-clues-content">
38 <!-- table组件 --> 38 <!-- table组件 -->
39 <lb-table :page-size="pageData.size" :heightNum="225" :current-page.sync="pageData.current" 39 <lb-table :page-size="pageData.size" :heightNum="300" :current-page.sync="pageData.current"
40 :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" 40 :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange"
41 :column="tableData.columns" :data="tableData.data"> 41 :column="tableData.columns" :data="tableData.data">
42 </lb-table> 42 </lb-table>
......
...@@ -13,12 +13,18 @@ ...@@ -13,12 +13,18 @@
13 </el-select> 13 </el-select>
14 </el-form-item> 14 </el-form-item>
15 </el-col> 15 </el-col>
16 <el-col :span="6"> 16 <el-col :span="12">
17 <el-form-item label="汇交时间" prop="reportStartTime"> 17 <el-form-item label="汇交时间" prop="reportStartTime">
18 <el-date-picker type="date" class="width100" placeholder="开始日期" :picker-options="pickerOptionsStart" 18 <el-row :gutter="20">
19 clearable v-model="form.reportStartTime" value-format="yyyy-MM-dd"></el-date-picker> 19 <el-col :span="12">
20 <el-date-picker type="date" class="width100" placeholder="结束日期" :picker-options="pickerOptionsEnd" 20 <el-date-picker type="date" class="width100" placeholder="开始日期" :picker-options="pickerOptionsStart"
21 clearable v-model="form.reportEndTime" value-format="yyyy-MM-dd"></el-date-picker> 21 clearable v-model="form.reportStartTime" value-format="yyyy-MM-dd"></el-date-picker>
22 </el-col>
23 <el-col :span="12">
24 <el-date-picker type="date" class="width100" placeholder="结束日期" :picker-options="pickerOptionsEnd"
25 clearable v-model="form.reportEndTime" value-format="yyyy-MM-dd"></el-date-picker>
26 </el-col>
27 </el-row>
22 </el-form-item> 28 </el-form-item>
23 </el-col> 29 </el-col>
24 <el-col :span="6"> 30 <el-col :span="6">
...@@ -32,7 +38,7 @@ ...@@ -32,7 +38,7 @@
32 </el-row> 38 </el-row>
33 <el-row class="mt-10"> 39 <el-row class="mt-10">
34 <!-- 操作按钮 --> 40 <!-- 操作按钮 -->
35 <el-col :span="12" class="btnColRight"> 41 <el-col :span="24" class="btnColRight">
36 <btn nativeType="cz" @click="resetForm('ruleForm')">重置</btn> 42 <btn nativeType="cz" @click="resetForm('ruleForm')">重置</btn>
37 <btn nativeType="cx" @click="queryClick">查询</btn> 43 <btn nativeType="cx" @click="queryClick">查询</btn>
38 </el-col> 44 </el-col>
...@@ -68,7 +74,7 @@ export default { ...@@ -68,7 +74,7 @@ export default {
68 components: { 74 components: {
69 dataDetails, 75 dataDetails,
70 }, 76 },
71 data() { 77 data () {
72 return { 78 return {
73 isShow: false, 79 isShow: false,
74 // 开始结束日期限制 80 // 开始结束日期限制
...@@ -159,11 +165,11 @@ export default { ...@@ -159,11 +165,11 @@ export default {
159 }, 165 },
160 methods: { 166 methods: {
161 // 重置表单 167 // 重置表单
162 resetForm() { 168 resetForm () {
163 this.$refs.ruleForm.resetFields(); 169 this.$refs.ruleForm.resetFields();
164 }, 170 },
165 // 初始化数据 171 // 初始化数据
166 queryClick() { 172 queryClick () {
167 getDataReportPage({ ...this.form, ...this.pageData }).then((res) => { 173 getDataReportPage({ ...this.form, ...this.pageData }).then((res) => {
168 if (res.code === 200) { 174 if (res.code === 200) {
169 let { total, records } = res.result; 175 let { total, records } = res.result;
...@@ -173,11 +179,11 @@ export default { ...@@ -173,11 +179,11 @@ export default {
173 }); 179 });
174 }, 180 },
175 // 多选 181 // 多选
176 handleSelectionChange(val) {}, 182 handleSelectionChange (val) { },
177 // 上报 183 // 上报
178 handleEscalation() {}, 184 handleEscalation () { },
179 // 详情 185 // 详情
180 handleDetail(row) { 186 handleDetail (row) {
181 this.$refs.editLog.isShow(row); 187 this.$refs.editLog.isShow(row);
182 }, 188 },
183 }, 189 },
......