Blame view

juvenile-prosecution-vue/src/views/business/MinorList.vue 16.3 KB
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
1
2
3
4
  <template>
    <a-card :bordered="false">
      <!-- 查询区域 -->
      <div class="table-page-search-wrapper">
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
5
        <a-form layout="inline" @keyup.enter.native="searchQuery" :label-col="labelCol" labelAlign="right">
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
6
7
8
          <a-row :gutter="24">
            <a-col :md="6" :sm="12">
              <a-form-item label="姓名">
416e1e27   wxy   未检人员删除、源数据管理查看
9
                <a-input placeholder="输入姓名查询" v-model="queryParam.name"></a-input>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
10
              </a-form-item>
8312c0f7   wxy   未成年人查询过滤
11
12
            </a-col>
            <a-col :md="6" :sm="12">
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
13
14
15
16
17
18
19
20
21
22
23
              <a-form-item label="身份证号">
                <a-input placeholder="输入身份证号查询" v-model="queryParam.identity"></a-input>
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="8">
              <a-form-item label="性别">
                <j-dict-select-tag v-model="queryParam.gender" dictCode="sex" placeholder="请选择性别" />
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="12">
              <a-form-item label="重点关注" :label-col="labelCol2">
8312c0f7   wxy   未成年人查询过滤
24
                <a-select v-model="queryParam.isReason"  placeholder="请选择" >
d1a8496e   wxy   批量导出
25
                  <a-select-option value="0">全部</a-select-option>
8312c0f7   wxy   未成年人查询过滤
26
27
28
29
                  <a-select-option value="1">是</a-select-option>
                  <a-select-option value="2">否</a-select-option>
                </a-select>
              </a-form-item>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
30
            </a-col>
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
            <a-col :md="6" :sm="12">
              <a-form-item label="学校">
                <a-input placeholder="输入学校名称查询" v-model="queryParam.schoolName"></a-input>
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="12">
              <a-form-item label="家庭住址">
                <a-input placeholder="输入家庭住址查询" v-model="queryParam.address"></a-input>
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="12">
              <a-form-item label="年龄">
                <a-select v-model="queryParam.age"  placeholder="请选择" >
                  <a-select-option value="0">全部</a-select-option>
                  <a-select-option value="6">6岁以下</a-select-option>
                  <a-select-option value="12">6岁-12岁</a-select-option>
                  <a-select-option value="18">12岁-18岁</a-select-option>
                </a-select>
              </a-form-item>
            </a-col>
            <a-col :md="6" :sm="12">
              <a-form-item label="重点关注原因" :label-col="labelCol2">
                <a-input placeholder="输入重点关注原因查询" v-model="queryParam.reason"></a-input>
              </a-form-item>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
55
56
57
58
            </a-col>
          </a-row>
        </a-form>
  
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
59
        <a-button @click="handleAdd" type="primary" icon="plus"  >新增</a-button>
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
60
61
        <a-button type="primary" icon="download" @click="handleExportXls('未检人员模板')" style="margin-left:8px;">模板导出
        </a-button>
62156ef2   wxy   数据分析
62
63
        <a-upload style="margin-left:8px;" name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader"
                  :action="importExcelUrl" @change="handleImportExcel">
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
64
65
          <a-button type="primary" icon="import">导入</a-button>
        </a-upload>
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
66
        <a-button type="primary" @click="searchQuery" icon="search" style="margin-left:8px;">查询</a-button>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
67
68
        <a-dropdown v-if="selectedRowKeys.length > 0" style="margin-left:8px;">
          <a-menu slot="overlay">
62156ef2   wxy   数据分析
69
70
71
72
            <a-menu-item key="1" @click="batchDel">
              <a-icon type="delete" />
              删除
            </a-menu-item>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
73
          </a-menu>
62156ef2   wxy   数据分析
74
75
76
          <a-button style="margin-left: 8px"> 批量操作
            <a-icon type="down" />
          </a-button>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
77
78
79
80
81
82
83
        </a-dropdown>
      </div>
      <!-- 查询区域-END -->
  
      <!-- table区域-begin -->
      <div>
        <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;margin-top: 16px;">
62156ef2   wxy   数据分析
84
85
          <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a
          style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
86
87
88
89
90
91
92
          <a style="margin-left: 24px" @click="onClearSelected">清空</a>
        </div>
  
        <a-table
          ref="table"
          size="middle"
          bordered
799ae8b3   wxy   把未成年人重点关注原因改为不从字典表获取
93
          rowKey="id"
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
94
95
96
97
98
99
100
101
          class="j-table-force-nowrap"
          :scroll="{x:true}"
          :columns="columns"
          :dataSource="dataSource"
          :pagination="ipagination"
          :loading="loading"
          :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
          @change="handleTableChange">
62156ef2   wxy   数据分析
102
          <span slot="longText" slot-scope="text,record">
0c19b627   wxy   未成年人新增修改
103
            <j-ellipsis :value="text" :length="15" />
62156ef2   wxy   数据分析
104
          </span>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
105
          <span slot="action" slot-scope="text, record">
62156ef2   wxy   数据分析
106
            <a @click="handleDetail(record)">查看</a>
416e1e27   wxy   未检人员删除、源数据管理查看
107
            <a-divider type="vertical" />
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
108
109
            <a @click="handleEdit(record)">编辑</a>
            <a-divider type="vertical" />
416e1e27   wxy   未检人员删除、源数据管理查看
110
111
112
             <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
               <a>删除</a>
             </a-popconfirm>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
113
          </span>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
114
115
116
        </a-table>
      </div>
  
62156ef2   wxy   数据分析
117
118
      <minor-modal ref="modalForm" @ok="modalFormOk" />
      <!--  详情  -->
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
119
120
      <a-modal v-model:visible="infoVisible" title="未成年信息" :footer=null :width="1000">
        <a-descriptions bordered size="middle" :column="2" class="desc_info">
9c110e9a   wxy   未检人员列表、详情、新增、编辑
121
122
          <a-descriptions-item label="户号">{{ info.householdNum }}</a-descriptions-item>
          <a-descriptions-item label="人员编号">{{ info.number }}</a-descriptions-item>
62156ef2   wxy   数据分析
123
124
125
126
          <a-descriptions-item label="姓名">{{ info.name }}</a-descriptions-item>
          <a-descriptions-item label="性别">{{ info.gender_dictText }}</a-descriptions-item>
          <a-descriptions-item label="年龄">{{ getAgeByIdentity(info.identity) }}</a-descriptions-item>
          <a-descriptions-item label="身份证号">{{ info.identity }}</a-descriptions-item>
ebeb57f1   wxy   详情添加学校名称、入学日期等字段,...
127
128
129
          <a-descriptions-item label="学校名称">{{ info.schoolName }}</a-descriptions-item>
          <a-descriptions-item label="入学年份">{{ info.startYear }}</a-descriptions-item>
          <a-descriptions-item label="是否失学">{{ info.school_dictText }}</a-descriptions-item>
62156ef2   wxy   数据分析
130
131
          <a-descriptions-item label="监护人">{{ info.guardian }}</a-descriptions-item>
          <a-descriptions-item label="监护人关系">{{ info.relation }}</a-descriptions-item>
799ae8b3   wxy   把未成年人重点关注原因改为不从字典表获取
132
          <a-descriptions-item label="重点关注原因">{{ info.reason }}</a-descriptions-item>
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
133
134
135
          <a-descriptions-item label="特殊原因" :span="2">{{ info.specialReason }}</a-descriptions-item>
          <a-descriptions-item label="家庭住址" :span="2">{{ info.address }}</a-descriptions-item>
          <a-descriptions-item label="备注" :span="2">{{ info.remark }}</a-descriptions-item>
62156ef2   wxy   数据分析
136
        </a-descriptions>
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
137
        <a-tabs v-model:activeKey="activeKey" type="card">
62156ef2   wxy   数据分析
138
          <a-tab-pane key="1" tab="家庭成员">
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
139
140
141
            <a-table bordered :columns="familyColumns" :data-source="familyDatas" :scroll="{ x: '100%', y: 240 }"
                     rowKey="id"
                     :loading="familyLoading" :pagination="familyPagination" size="middle" class="j-table-force-nowrap">
9c110e9a   wxy   未检人员列表、详情、新增、编辑
142
143
144
              <span slot="num" slot-scope="text,record">
                <j-ellipsis :value="text" :length="8" />
              </span>
62156ef2   wxy   数据分析
145
146
147
148
149
150
151
              <span slot="longText" slot-scope="text,record">
                <j-ellipsis :value="text" :length="18" />
              </span>
            </a-table>
          </a-tab-pane>
        </a-tabs>
      </a-modal>
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
152
153
154
155
156
    </a-card>
  </template>
  
  <script>
  
62156ef2   wxy   数据分析
157
158
159
160
  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  import { GetAge } from '@/utils/util'
  import MinorModal from './modules/MinorModal'
  import '@/assets/less/TableExpand.less'
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
161
  import { getAction, downFile } from '@api/manage'
62156ef2   wxy   数据分析
162
163
164
  import { FormTypes } from '@/utils/JEditableTableUtil'
  //引入JS方法
  import { filterDictTextByCache } from '@/components/dict/JDictSelectUtil'
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
165
  
62156ef2   wxy   数据分析
166
167
168
169
170
171
172
173
  export default {
    name: 'MinorList',
    mixins: [JeecgListMixin],
    components: {
      MinorModal
    },
    data() {
      return {
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
174
175
        labelCol: { style: { width: '70px' } },
        labelCol2: { style: { width: '100px' } },
62156ef2   wxy   数据分析
176
177
178
179
180
181
182
183
184
185
        activeKey: '1',
        infoVisible: false,
        info: {},
        description: '未成年人管理页面',
        // 表头
        columns: [
          {
            title: '序号',
            dataIndex: '',
            key: 'rowIndex',
9c110e9a   wxy   未检人员列表、详情、新增、编辑
186
            fixed: 'left',
62156ef2   wxy   数据分析
187
188
189
190
            width: 60,
            align: 'center',
            customRender: function(t, r, index) {
              return parseInt(index) + 1
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
191
            }
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
192
          },
62156ef2   wxy   数据分析
193
194
195
          {
            title: '姓名',
            align: 'center',
9c110e9a   wxy   未检人员列表、详情、新增、编辑
196
197
            fixed: 'left',
            width: 80,
62156ef2   wxy   数据分析
198
199
200
201
202
203
204
205
            dataIndex: 'name'
          },
          {
            title: '年龄',
            align: 'center',
            dataIndex: 'age',
            customRender: function(text, record) {
              return GetAge(record.identity)
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
206
207
            },
            sorter: true
62156ef2   wxy   数据分析
208
209
210
211
212
213
214
215
216
          },
          {
            title: '性别',
            align: 'center',
            dataIndex: 'gender_dictText'
          },
          {
            title: '学校名称',
            align: 'center',
0c19b627   wxy   未成年人新增修改
217
            dataIndex: 'schoolName',
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
218
219
            scopedSlots: { customRender: 'longText' },
            sorter: true
62156ef2   wxy   数据分析
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
          },
          {
            title: '入学年份',
            align: 'center',
            dataIndex: 'startYear'
          },
          {
            title: '是否失学',
            align: 'center',
            dataIndex: 'school_dictText'
          },
          {
            title: '家庭住址',
            align: 'center',
            dataIndex: 'address',
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
235
236
            scopedSlots: { customRender: 'longText' },
            sorter: true
62156ef2   wxy   数据分析
237
238
239
240
241
242
243
          },
          {
            title: '身份证号',
            align: 'center',
            dataIndex: 'identity'
          },
          {
62156ef2   wxy   数据分析
244
245
246
247
248
            title: '监护人',
            align: 'center',
            dataIndex: 'guardian'
          },
          {
ebeb57f1   wxy   详情添加学校名称、入学日期等字段,...
249
            title: '监护人关系',
62156ef2   wxy   数据分析
250
            align: 'center',
ebeb57f1   wxy   详情添加学校名称、入学日期等字段,...
251
            dataIndex: 'relation'
62156ef2   wxy   数据分析
252
253
          },
          {
ebeb57f1   wxy   详情添加学校名称、入学日期等字段,...
254
            title: '重点关注原因',
62156ef2   wxy   数据分析
255
            align: 'center',
799ae8b3   wxy   把未成年人重点关注原因改为不从字典表获取
256
            dataIndex: 'reason',
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
257
258
            scopedSlots: { customRender: 'longText' },
            sorter: true
62156ef2   wxy   数据分析
259
260
261
262
263
264
265
266
267
268
          },
          {
            title: '操作',
            dataIndex: 'action',
            align: 'center',
            fixed: 'right',
            width: 147,
            scopedSlots: { customRender: 'action' }
          }
        ],
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
269
270
271
272
273
274
275
276
277
        queryParam:{
          name:'',
          isReason:'0',
          reason:'',
          identity:'',
          schoolName:'',
          address:'',
          age:'0',
        },
62156ef2   wxy   数据分析
278
279
280
281
282
283
        url: {
          list: '/sys/minor/list',
          delete: '/sys/minor/delete',
          deleteBatch: '/sys/minor/deleteBatch',
          exportXlsUrl: '/sys/minor/exportXls',
          importExcelUrl: 'sys/minor/importExcel',
d1a8496e   wxy   批量导出
284
          familys: '/sys/minor/getFamilysByHouseholdNum'
62156ef2   wxy   数据分析
285
286
287
288
289
290
291
        },
        dictOptions: {},
        superFieldList: [],
        familyDatas: [],
        // 表头
        familyColumns: [
          {
62156ef2   wxy   数据分析
292
293
            title: '姓名',
            align: 'center',
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
294
            width: 80,
62156ef2   wxy   数据分析
295
296
297
298
299
            dataIndex: 'name'
          },
          {
            title: '身份证号',
            align: 'center',
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
300
            width: 170,
62156ef2   wxy   数据分析
301
302
303
304
305
            dataIndex: 'identity'
          },
          {
            title: '与户主的关系',
            align: 'center',
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
306
            width: 120,
62156ef2   wxy   数据分析
307
308
309
310
311
            dataIndex: 'relation'
          },
          {
            title: '行政区划',
            align: 'center',
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
312
            width: 120,
62156ef2   wxy   数据分析
313
            dataIndex: 'division',
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
314
            ellipsis: true,
62156ef2   wxy   数据分析
315
316
317
318
319
            scopedSlots: { customRender: 'longText' }
          },
          {
            title: '现住址',
            align: 'center',
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
320
321
            width: 200,
            ellipsis: true,
62156ef2   wxy   数据分析
322
323
324
325
326
327
            dataIndex: 'address',
            scopedSlots: { customRender: 'longText' }
          },
          {
            title: '是否犯罪',
            align: 'center',
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
328
            width: 100,
62156ef2   wxy   数据分析
329
330
331
332
333
334
335
336
337
            dataIndex: 'crime',
            customRender: (text) => {
              //字典值翻译通用方法
              return filterDictTextByCache('is_crime', text)
            }
          },
          {
            title: '犯罪原因',
            align: 'center',
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
338
339
            width: 200,
            ellipsis: true,
62156ef2   wxy   数据分析
340
341
342
343
344
345
            dataIndex: 'reason',
            scopedSlots: { customRender: 'longText' }
          },
          {
            title: '其他参考信息',
            align: 'center',
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
346
347
            width: 200,
            ellipsis: true,
62156ef2   wxy   数据分析
348
349
350
351
352
353
354
            dataIndex: 'other',
            scopedSlots: { customRender: 'longText' }
          }
        ],
        /* 分页参数 */
        familyPagination: {
          current: 1,
9c110e9a   wxy   未检人员列表、详情、新增、编辑
355
          pageSize: 20,
62156ef2   wxy   数据分析
356
357
358
359
360
          hideOnSinglePage: true,
          showTotal: (total, range) => {
            return range[0] + '-' + range[1] + ' 共' + total + '条'
          },
          showQuickJumper: true,
62156ef2   wxy   数据分析
361
          total: 0
9c110e9a   wxy   未检人员列表、详情、新增、编辑
362
        },
d1a8496e   wxy   批量导出
363
        familyLoading: false,
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
364
365
366
367
368
        /* 排序参数 */
        isorter:{
          column: 'age',
          order: 'asc',
        },
62156ef2   wxy   数据分析
369
370
371
372
373
374
375
376
377
378
379
      }
    },
    created() {
      this.getSuperFieldList()
    },
    computed: {
      importExcelUrl: function() {
        return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
      }
    },
    methods: {
d207eac9   wxy   添加根据身份证号、学校、家庭住址、...
380
381
382
383
384
385
386
387
388
389
390
      // handleTableChange(pagination, filters, sorter) {
      //   //分页、排序、筛选变化时触发
      //   //TODO 筛选
      //   console.log(pagination)
      //   if (Object.keys(sorter).length > 0) {
      //     this.isorter.column = sorter.field;
      //     this.isorter.order = "ascend" == sorter.order ? "asc" : "desc"
      //   }
      //   this.ipagination = pagination;
      //   this.loadData();
      // },
d1a8496e   wxy   批量导出
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
      handleExportXls(fileName){
        if(!fileName || typeof fileName != "string"){
          fileName = "导出文件"
        }
        let param = this.getQueryParams();
        if(this.selectedRowKeys && this.selectedRowKeys.length>0){
          param['selections'] = this.selectedRowKeys.join(",")
        }
        console.log("导出参数",param)
        downFile(this.url.exportXlsUrl,param).then((data)=>{
          if (!data) {
            this.$message.warning("文件下载失败")
            return
          }
          if (typeof window.navigator.msSaveBlob !== 'undefined') {
            window.navigator.msSaveBlob(new Blob([data],{type: 'application/vnd.ms-excel'}), fileName+'.xls')
          }else{
            let url = window.URL.createObjectURL(new Blob([data],{type: 'application/vnd.ms-excel'}))
            let link = document.createElement('a')
            link.style.display = 'none'
            link.href = url
            link.setAttribute('download', fileName+'.xls')
            document.body.appendChild(link)
            link.click()
            document.body.removeChild(link); //下载完成移除元素
            window.URL.revokeObjectURL(url); //释放掉blob对象
          }
        })
      },
62156ef2   wxy   数据分析
420
421
      getAgeByIdentity(identity) {
        return GetAge(identity)
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
422
      },
62156ef2   wxy   数据分析
423
      handleDetail(record) {
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
424
425
426
427
428
        var that = this
        that.info = record
        that.infoVisible = true
        that.familyDatas = []
        if (null !== record.householdNum && '' !== record.householdNum && undefined !== record.householdNum) {
9c110e9a   wxy   未检人员列表、详情、新增、编辑
429
          let params = { householdNum: record.householdNum }
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
430
          that.familyLoading = true
9c110e9a   wxy   未检人员列表、详情、新增、编辑
431
432
          getAction(this.url.familys, params).then(res => {
            if (res.success) {
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
433
              that.familyLoading = false
9c110e9a   wxy   未检人员列表、详情、新增、编辑
434
435
              that.familyDatas = res.result || []
            } else {
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
436
              that.familyLoading = false
9c110e9a   wxy   未检人员列表、详情、新增、编辑
437
438
439
440
            }
          })
        }
      },
62156ef2   wxy   数据分析
441
      initDictConfig() {
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
442
      },
62156ef2   wxy   数据分析
443
444
445
446
447
448
449
450
451
      getSuperFieldList() {
        let fieldList = []
        fieldList.push({ type: 'string', value: 'name', text: '姓名', dictCode: '' })
        fieldList.push({ type: 'int', value: 'gender', text: '性别', dictCode: '' })
        fieldList.push({ type: 'string', value: 'address', text: '家庭住址', dictCode: '' })
        fieldList.push({ type: 'string', value: 'identity', text: '身份证号', dictCode: '' })
        fieldList.push({ type: 'Text', value: 'reason', text: '重点关注原因', dictCode: '' })
        fieldList.push({ type: 'Text', value: 'remark', text: '备注', dictCode: '' })
        this.superFieldList = fieldList
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
452
453
      }
    }
62156ef2   wxy   数据分析
454
  }
50565778   wxy   新增未成年人、户籍信息、特殊学校、...
455
456
  </script>
  <style scoped>
62156ef2   wxy   数据分析
457
  @import '~@assets/less/common.less';
62156ef2   wxy   数据分析
458
  </style>
62156ef2   wxy   数据分析
459
  
9c110e9a   wxy   未检人员列表、详情、新增、编辑
460
  <style>
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
461
462
  .j-table-force-nowrap .ant-table-body {
    scrollbar-width: thin;
9c110e9a   wxy   未检人员列表、详情、新增、编辑
463
  }
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
  
  /* 设置滚动条的样式 */
  .j-table-force-nowrap .ant-table-body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  /* 滚动槽 */
  .j-table-force-nowrap .ant-table-body::-webkit-scrollbar-track {
    background: #f5f5f5;
  }
  
  /* 滚动条滑块 */
  .j-table-force-nowrap .ant-table-body::-webkit-scrollbar-thumb {
    background: #dedede;
    -webkit-box-shadow: none;
  }
  
  .desc_info .ant-descriptions-item-label {
    width: 140px;
  }
9e6b9d19   lifengge   修改未检人员页面删除弹框样式问题
485
486
487
488
  
  .ant-popover-inner-content {
    min-width: 150px;
  }
106c9657   lifengge   修改未检人员页面,含新增、编辑、查...
489
  </style>