Blame view

admin-web-master/src/views/scheme/sam.vue 20.2 KB
3f535f30   杨鑫   '初始'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  <template>
    <div style="background-color:#f7f7f7;padding:10px 10px;">
      <div class="zhuti">
        <div style="height:58px;line-height:58px;">
          <div style="color:#0006"> <span>招商方案管理</span> <span style="padding:0 5px;">></span> <span
              style="color:#000000e6">策略管理</span></div>
        </div>
        <div>
          <!-- 搜索 -->
          <div class="formSearch">
            <div class="demo-input-suffix">
              <div style="width:68px;height:36px;line-height:32px;">策略名称</div>
              <el-input placeholder="请输入" v-model="formSel.policyName" style="width:168px;margin-right: 15px">
              </el-input>
              <div style="width:68px;height:36px;line-height:32px;">适用资源</div>
              <el-select v-model="formSel.applicableResources" placeholder="请选择"
                style="width: 100px;margin-right: 5px">
                <el-option label="商铺" value="商铺" />
                <el-option label="场地" value="场地" />
                <el-option label="广告位" value="广告位" />
              </el-select>
             <!-- <div style="width:68px;height:36px;line-height:32px;">租期</div>
              <el-date-picker  style="width:168px;margin-right: 15px" v-model="plan_Time" value-format="yyyy-MM-dd HH:mm:ss"
                type="datetimerange" range-separator="-" start-placeholder="" end-placeholder=""   prefix-icon="none">
              </el-date-picker> -->
              <div style="width:68px;height:36px;line-height:32px;">经营类型</div>
4394f7f2   杨鑫   '策略'
27
28
              <el-input placeholder="请输入" v-model="formSel.businessType" style="width:168px;margin-right: 15px" />
  
3f535f30   杨鑫   '初始'
29
              <div style="width:68px;height:36px;line-height:32px;">是否出租</div>
7ab02d9a   杨鑫   问卷完成,最新
30
              <el-select v-model="formSel.isRental" placeholder="请选择"
3f535f30   杨鑫   '初始'
31
                 style="width:168px;margin-right: 15px">
4394f7f2   杨鑫   '策略'
32
                <el-option label="自营" value="0" />
3f535f30   杨鑫   '初始'
33
34
                <el-option label="是" value="1" />
              </el-select>
4394f7f2   杨鑫   '策略'
35
36
  
  
3f535f30   杨鑫   '初始'
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
            </div>
            <div>
              <el-button @click="onSubmit" style="background-color: #3F9B6A;color: #fff">检索
              </el-button>
              <el-button @click="resetting" class="buttonHover"
                style="color: #000;border: 1px solid #DBDBDB;background-color: #fff;">重置
              </el-button>
            </div>
          </div>
          <div style="margin:20px 0;">
            <el-button icon="el-icon-circle-plus-outline" @click="addbuss(1)"
              style="background-color: #3F9B6A;color: #fff;padding:8px 15px;">新增</el-button>
          </div>
  
          <!-- 表格 -->
          <el-table :data="tableData.slice((currentPage - 1) * pageSize, currentPage * pageSize)"
            :header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
           >
            <el-table-column label="序号" min-width="100"  >
              <template slot-scope="scope">
                {{scope.$index +1}}
                   </template>
            </el-table-column>
            <el-table-column label="策略名称" prop="policyName" min-width="200" >
            </el-table-column>
            <el-table-column label="适用资源" prop="applicableResources" min-width="100" >
            </el-table-column>
7ab02d9a   杨鑫   问卷完成,最新
64
            <el-table-column label="经营类型" prop="businessType" min-width="100">
3f535f30   杨鑫   '初始'
65
66
67
68
69
70
71
72
  
            </el-table-column>
            <el-table-column label="租金价格" prop="rentalPrice" min-width="150"  >
            </el-table-column>
            <el-table-column label="租期" prop="leaseTerm" min-width="100" >
            </el-table-column>
            <el-table-column label="是否出租" prop="isRental" min-width="100" >
              <template slot-scope="scope">
4394f7f2   杨鑫   '策略'
73
                {{scope.row.isRental == '0'?'自营':'是'}}
3f535f30   杨鑫   '初始'
74
75
                   </template>
            </el-table-column>
7ab02d9a   杨鑫   问卷完成,最新
76
  
4394f7f2   杨鑫   '策略'
77
  
3f535f30   杨鑫   '初始'
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
            <el-table-column label="操作" min-width="200" >
              <template slot-scope="scope">
                <div @click="handleEditForm(scope.row,1)" class="tableBtn greens">查看</div>
                <div @click="handleEditForm(scope.row,2)" class="tableBtn greens">编辑</div>
                <div @click="handleDelete(scope.row)" class="tableBtn greens">删除</div>
              </template>
            </el-table-column>
          </el-table>
          <div class="fenye">
            <el-pagination class="pagination" :hide-on-single-page="flag" background small :current-page="currentPage"
              :page-sizes="[10, 20, 50, 100]"  layout="total,prev, pager,next" :total="total "
              @size-change="handleSizeChange" @current-change="handleCurrentChange" />
          </div>
        </div>
      </div>
      <!-- 详情编辑页 -->
      <el-dialog :title="xiangqing==1?'详情页':'编辑页'" :visible.sync="xiang" custom-class='bian_css' style="padding: 0;" width="65%"
        center :close-on-click-modal="false" :show-close="false">
        <div style="padding:20px">
          <el-form  :model="secondData" ref="ruleForm"  label-width="80px">
            <el-form-item label="策略名称" prop="policyName">
              <el-input v-model="secondData.policyName"  style="width: 87%;margin-right: 15px" :disabled="xiangqing==1?true:false"></el-input>
            </el-form-item>
            <el-form-item label="适用资源" prop="applicableResources">
              <el-radio-group v-model="secondData.applicableResources" :disabled="xiangqing==1?true:false">
            <el-radio label="商铺" value="商铺">商铺</el-radio>
            <el-radio label="场地" value="场地">场地</el-radio>
            <el-radio label="广告位" value="广告位">广告位</el-radio>
              </el-radio-group>
            </el-form-item>
            <el-form-item label="策略模板" prop="policyTemplate">
              <el-select v-model="secondData.policyTemplate" style="width: 87%;margin-right: 15px" disabled>
eaa0f084   杨鑫   '1111'
110
                <el-option :label="item.policyName" :value="item.id" v-for="(item,index) in modelData" />
3f535f30   杨鑫   '初始'
111
112
113
114
115
116
117
118
119
120
121
122
              </el-select>
            </el-form-item>
            <el-row>
              <el-col :span="12">
                <el-form-item label="是否出租" prop="isRental">
                  <el-select v-model="secondData.isRental"  style="width: 72%;margin-right: 15px" :disabled="xiangqing==1?true:false">
                    <el-option label="否" value="0" />
                    <el-option label="是" value="1" />
                  </el-select>
                </el-form-item>
              </el-col>
              <el-col :span="12">
4394f7f2   杨鑫   '策略'
123
124
                <el-form-item label="经营类型" prop="businessType" v-if="secondData.applicableResources == '商铺'">
                  <el-input v-model="secondData.businessType" placeholder="请输入" style="width:  72%;margin-right: 15px"  maxlength="50" :disabled="xiangqing==1?true:false"></el-input>
3f535f30   杨鑫   '初始'
125
126
127
128
                </el-form-item>
              </el-col>
            </el-row>
            <el-row>
4394f7f2   杨鑫   '策略'
129
  
3f535f30   杨鑫   '初始'
130
131
132
133
134
135
136
137
138
139
              <el-col :span="12">
                <el-form-item label="租金价格" prop="rentalPrice">
                  <el-input v-model="secondData.rentalPrice"  style="width: 72%;margin-right: 15px;" :disabled="xiangqing==1?true:false">
                    <template slot="suffix"><span
                        style="position: absolute;top: 19px;right: 1px;width: 50px;">元/m<sup>2</sup></span></template>
                    <!-- <i slot="suffix" class="el-input__icon el-icon-date"></i> -->
                  </el-input>
  
                </el-form-item>
              </el-col>
3f535f30   杨鑫   '初始'
140
              <el-col :span="12">
4394f7f2   杨鑫   '策略'
141
142
143
144
145
146
147
                <el-form-item label="付款周期" prop="leaseTerm">
                  <el-select v-model="secondData.leaseTerm" placeholder="请选择" style="width: 72%;margin-right: 15px" :disabled="xiangqing==1?true:false">
                    <el-option label="日" value="日" />
                    <el-option label="月" value="月" />
                    <el-option label="季" value="季" />
                    <el-option label="年" value="年" />
                  </el-select>
3f535f30   杨鑫   '初始'
148
149
                </el-form-item>
              </el-col>
4394f7f2   杨鑫   '策略'
150
151
152
            </el-row>
  
            <el-row>
3f535f30   杨鑫   '初始'
153
154
155
156
157
158
159
              <el-col :span="12">
                <el-form-item label="租赁时段" prop="leaseDate">
                  <el-date-picker v-model="leaseDate" value-format="yyyy-MM-dd" type="daterange" range-separator="至"
                    start-placeholder="开始日期" end-placeholder="结束日期" style="width: 72%;" :disabled="xiangqing==1?true:false">
                  </el-date-picker>
                </el-form-item>
              </el-col>
3f535f30   杨鑫   '初始'
160
161
162
163
164
              <el-col :span="12">
                <el-form-item label="免租条件" prop="rentFreeCondition">
                  <el-input v-model="secondData.rentFreeCondition" style="width: 72%;" :disabled="xiangqing==1?true:false"></el-input>
                </el-form-item>
              </el-col>
4394f7f2   杨鑫   '策略'
165
166
167
  
            </el-row>
            <el-row>
3f535f30   杨鑫   '初始'
168
169
              <el-col :span="12">
                <el-form-item label="免租期" prop="rentFreePeriod">
3f535f30   杨鑫   '初始'
170
  
4394f7f2   杨鑫   '策略'
171
172
173
                  <el-select v-model="secondData.rentFreePeriod" placeholder="请选择" style="width: 72%;margin-right: 15px" :disabled="xiangqing==1?true:false">
                    <el-option :label="item" :value="item" v-for="item in 31" />
                  </el-select>
3f535f30   杨鑫   '初始'
174
175
                </el-form-item>
              </el-col>
3f535f30   杨鑫   '初始'
176
              <el-col :span="12">
4394f7f2   杨鑫   '策略'
177
178
179
180
181
                <el-form-item label="付款日" prop="payDay">
  
                  <el-select v-model="secondData.payDay" placeholder="请选择" style="width: 72%;margin-right: 15px" :disabled="xiangqing==1?true:false">
                    <el-option :label="item" :value="item" v-for="item in 31" />
                  </el-select>
3f535f30   杨鑫   '初始'
182
183
                </el-form-item>
              </el-col>
4394f7f2   杨鑫   '策略'
184
185
186
187
188
189
190
            </el-row>
             <el-row>
            <el-col :span="24">
                <el-form-item label="优惠政策" prop="preferentialPolicy">
                <div style="border: 1px solid #dddfe5;padding:20px;" v-html="secondData.preferentialPolicy" v-if="xiangqing==1"></div>
                  <wangEditor v-model="secondData.preferentialPolicy" ref="editor" :height="100" v-else></wangEditor>
  
3f535f30   杨鑫   '初始'
191
192
                </el-form-item>
              </el-col>
4394f7f2   杨鑫   '策略'
193
194
195
196
197
198
199
200
201
202
203
  
            </el-row>
            <el-row>
  
              <el-col :span="24">
                <el-form-item label="其他说明" prop="otherDescription">
            <div style="border: 1px solid #dddfe5;padding:20px;" v-html="secondData.otherDescription" v-if="xiangqing==1"></div>
                  <wangEditor v-model="secondData.otherDescription" ref="editor" :height="100" v-else></wangEditor>
                </el-form-item>
              </el-col>
  
3f535f30   杨鑫   '初始'
204
205
            </el-row>
          </el-form>
4394f7f2   杨鑫   '策略'
206
          <div style="display: flex;justify-content: flex-end;margin-top:20px;">
3f535f30   杨鑫   '初始'
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
            <el-button @click="closexaing(1)" class="buttonHover"
                    style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">取消</el-button>
            <el-button @click="addCheck()"
  
             style="background-color: #3F9B6A;color: #fff" v-if="xiangqing==2">确定</el-button>
  
  
          </div>
        </div>
  
      </el-dialog>
          <samXin :xinShow="ggXin" @childClose='childClose'></samXin>
    </div>
  </template>
  
  <script>
    import {
     ceGetAll,
     ceAdd,
     ceEdit,
     ceDel,
    } from '../../api/sam.js'
    import wangEditor from "@/components/editor/index"
    import upimg from "@/components/ImageUpload/index"
  import samXin from "./samXin"
    import {
      uploadUrl
    } from '@/utils/request'
    export default {
     components: { wangEditor ,upimg,samXin},
      data() {
        return {
          formInline: {},
          upload:uploadUrl,
          plan_Time:[],
          formSel: {
           policyName:'',
           applicableResources:'',
           businessType:'',
7ab02d9a   杨鑫   问卷完成,最新
246
           isRental:'',
3f535f30   杨鑫   '初始'
247
248
249
250
251
252
253
254
           isSelfOperated:'',
           pageNumber: 1,
           pageSize: 10,
          },
          secondData: {},
          xiangqing:0,
          xiang:false,
          currentPage: 1,
ab818baa   杨鑫   '1'
255
          total: 0,
3f535f30   杨鑫   '初始'
256
257
258
259
260
261
262
263
264
          flag: false,
          pageSize: 10,
          ggXin: false,
          tableData: [],
          pageindex: {
            pageNumber: 1,
            pageSize: 10,
             isTemplate: '1'
          },
eaa0f084   杨鑫   '1111'
265
266
267
268
269
          Modelpageindex: {
            pageNumber: 1,
            pageSize: 10,
             isTemplate: '0'
          },
3f535f30   杨鑫   '初始'
270
271
          fileList: [],
          paymentDate:[],
4394f7f2   杨鑫   '策略'
272
273
          leaseDate:[],
          modelData:[]
3f535f30   杨鑫   '初始'
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
        }
      },
  
      created() {
  
  
      },
      mounted() {
  this.getAll()
      },
  
      methods: {
        //查询全数据
        async getAll() {
          const res = await ceGetAll(this.pageindex)
3f535f30   杨鑫   '初始'
289
290
          this.tableData = res.data.content
            this.total  = res.data.content.length
eaa0f084   杨鑫   '1111'
291
292
            const ce = await ceGetAll(this.Modelpageindex)
            this.modelData = ce.data.content
3f535f30   杨鑫   '初始'
293
294
295
        },
  
        //删除记录按钮
7ab02d9a   杨鑫   问卷完成,最新
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
         handleDelete(val) {
            const h = this.$createElement;
            this.$msgbox({
              title: '消息',
              message: h('p', null, [
                h('span', null, '是否删除 '),
              ]),
              showCancelButton: true,
              showClose: false,
              confirmButtonText: '确定',
              cancelButtonText: '取消',
              customClass: 'oe-dialog-btn',
              beforeClose: (action, instance, done) => {
                if (action === 'confirm') {
                  ceDel({
                    id: val.id
                  }).then(res => {
                    this.getAll()
                    done();
                  })
                } else {
                  done();
                }
              }
            })
  
3f535f30   杨鑫   '初始'
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
        },
        //查询
        async onSubmit() {
   if(this.plan_Time.length!=0){
     this.formSel.leaseStartDate   = this.plan_Time[0]
     this.formSel.leaseEndDate   = this.plan_Time[1]
   }
   this.formSel.isTemplate = '1'
   const { createUser, createDate, ...rest } =  this.formSel
  
   // 将剩余的字段存储到this.zhong对象中
   this.formSel = rest
  
     const res = await ceGetAll(this.formSel)
     this.tableData = res.data.content
       this.total  = res.data.content.length
        },
  
        //详情点击
        handleEditForm(item,val) {
          this.secondData  = item
          this.xiangqing = val
          this.xiang = true
          this.paymentDate[0] = item.paymentStartDate
           this.paymentDate[1] = item.paymentEndDate
          this.leaseDate[0] = item.leaseStartDate
           this.leaseDate[1] = item.leaseEndDate
        },
  
        handleCurrentChange(val) {
          this.currentPage = val
        },
        handleSizeChange(val) {
          this.pageSize = val
        },
        closeFn() {
          this.ggXin = false
        },
        closexaing(val){
eaa0f084   杨鑫   '1111'
361
  
3f535f30   杨鑫   '初始'
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
          this.xiang = false
        },
        handleClick() {
  
        },
        //上传
  
        handlePreview(file) {
          console.log(file);
        },
        handleRemove(file, fileList) {
          console.log(file, fileList);
        },
        //重置按钮
        resetting() {
          this.formSel = {
  
              policyName:'',
              applicableResources:'',
              businessType:'',
7ab02d9a   杨鑫   问卷完成,最新
382
              isRental:'',
3f535f30   杨鑫   '初始'
383
384
385
386
387
388
389
390
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
              isSelfOperated:'',
              pageNumber: 1,
              pageSize: 10,
  
  
            },
            this.getAll()
  
        },
        childClose(msg) {
          this.ggXin = msg
          this.getAll()
        },
        addbuss(){
           this.ggXin = true
        },
        // 编辑确定
       async addCheck(){
         if (this.leaseDate.length !=0) {
           this.secondData.leaseStartDate = this.leaseDate[0]
           this.secondData.leaseEndDate = this.leaseDate[1]
         }
         if (this.paymentDate.length !=0) {
           this.secondData.paymentStartDate = this.paymentDate[0]
           this.secondData.paymentEndDate = this.paymentDate[1]
         }
          await ceEdit(this.secondData)
           this.xiang = false
           this.getAll()
        },
      }
    }
  </script>
  <style src="@wangeditor/editor/dist/css/style.css"></style>
  <style scoped>
    /deep/ .first-column-bg {
      background-color: #f4f4f5 !important;
    }
  
    .zhuti {
      padding: 0 20px 20px 20px;
      min-height: calc(100vh - 50px - 20px);
      background-color: #Fff;
  
    }
  
    /deep/ .el-form-item__content {
      line-height: 0;
    }
  
    ::v-deep .xinForm .el-form-item__content {
      line-height: 3;
    }
  
    .tableBtn {
      display: inline-block;
      margin-right: 10px;
7ab02d9a   杨鑫   问卷完成,最新
440
      cursor: pointer;
3f535f30   杨鑫   '初始'
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
    }
  
  
  
    .greens {
      color: #3F9B6A;
    }
  
  
    .fenye {
      margin-top: 20px;
      display: flex;
      justify-content: flex-end;
      position: relative;
    }
  
    /deep/ .el-pagination.is-background .el-pager li:not(.disabled).active {
      background-color: #3F9B6A;
    }
  
    .el-row {
      margin-bottom: 20px;
    }
  
    :last-child {
      margin-bottom: 0;
    }
  
    .el-col {
      border-radius: 4px;
    }
  
    .bg-purple-dark {
      background: #99a9bf;
    }
  
    .bg-purple {
      /* background: #d3dce6; */
    }
  
    .bg-purple-light {
      background: #e5e9f2;
    }
  
    .grid-content {
      border-radius: 4px;
      min-height: 36px;
    }
  
    .row-bg {
      padding: 10px 0;
      background-color: #f9fafc;
    }
  
    /deep/ .bg-purple[data-v-0e3fe4ec] {
      background: #fff;
      height: 50px;
    }
  
    /deep/ .el-form--label-top .el-form-item__label {
      padding: 0;
    }
  
    .demo-input-suffix {
      display: flex;
      margin-right: 20px;
      width: 83%;
    }
  
    .pagination {
      text-align: right;
      line-height: 20px;
    }
  
  
  
   /deep/ .dialog_css {
     margin-top: 11vh;
     margin-left: 13%;
     padding: 0px;
  
     .el-dialog__title {
       font-size: 12px;
     }
   }
  
    /deep/.el-dialog__body {
      padding: 0px;
    }
  
    /deep/ .el-dialog__header {
      background-color: #fff;
    }
  
    /deep/.el-dialog__title {
      color: #000;
    }
  
    .el-row {
      margin-bottom: 20px;
  
      &:last-child {
        margin-bottom: 0;
      }
    }
  
    /deep/ .avatar-uploader .el-upload {
      border: 1px dashed #d9d9d9;
      border-radius: 6px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
  
    .avatar-uploader .el-upload:hover {
      border-color: #409EFF;
    }
  
    .avatar-uploader-icon {
      font-size: 28px;
      color: #8c939d;
      width: 108px;
      height: 108px;
      line-height: 108px;
      /*text-align: center;*/
    }
  
    .avatar {
      width: 108px;
      height: 108px;
      display: block;
    }
  
    ::v-deep .el-tabs__item.is-active {
      color: #3F9B6A;
      opacity: 1;
    }
  
    /deep/ .el-tabs__nav-wrap::after {
      background-color: #fff;
    }
  
    ::v-deep .el-tabs__item:hover {
      color: #3F9B6A;
      cursor: pointer;
      opacity: 1;
    }
  
    /deep/ .el-tabs__active-bar {
      background-color: #389865;
    }
  
    /deep/ .el-table_2_column_13 {
      font-weight: 100;
    }
  
    ::v-deep .el-input__inner:focus {
      border: #3F9B6A 1px solid;
    }
  
    ::v-deep .el-input__inner:hover {
      border: #3F9B6A 1px solid;
    }
  
    ::v-deep .el-select .el-input.is-focus .el-input__inner {
      border-color: #3F9B6A
    }
  
    /* ::v-deep .el-steps .el-step__head.is-wait {
    background-color: red; /* 修改为你想要的颜色 */
  
    /* 修改未进行步骤的描述文字颜色 */
    ::v-deep .el-steps .el-step__description.is-wait {
      color: #999;
      /* 修改为你想要的颜色 */
    }
  
    /* 修改未进行步骤的图标颜色 */
    ::v-deep .el-steps .el-step__icon.is-text.is-wait {
      color: #999;
      /* 修改为你想要的颜色 */
    }
  
    /* 修改未进行步骤的边框色 */
    ::v-deep .el-steps .el-step__line.is-wait {
      border-color: #eee;
      /* 修改为你想要的颜色 */
    }
  
    ::v-deep .el-steps .is-process .el-step__line {
      background-color: #3F9B6A;
      /* 修改线的颜色 */
    }
  
    ::v-deep .el-steps .is-process .el-step__title {
      color: #fe7b6a;
      /* 修改进行中步骤的标题颜色 */
    }
  
    ::v-deep .el-steps .is-process .el-step__icon {
      color: #fff;
      /* 修改进行中步骤的图标颜色 */
      background: #3F9B6A;
      /* 修改进行中步骤图标的边框颜色 */
      border: 0px;
    }
  
    ::v-deep .el-step__icon-inner {
      line-height: 0
    }
  
    /* 线条长度 */
    ::v-deep .el-step.is-vertical .el-step__line {
      top: 30px;
      height: 60px;
    }
  
  
    ::v-deep .el-date-editor .el-range-separator {
      line-height: 24px;
    }
  
  </style>
  <style lang="scss" scoped>
    ::v-deep .xinFrom{
      padding-top:20px;
      .el-input--mini .el-input__inner{
        height:36px;
        line-height:36px;
      }
      .el-range-editor--mini.el-input__inner{
          height:36px;
          width:100%;
      }
    }
    ::v-deep .buttonHover:hover{
      color:#3f9b6a !important;
      border-color: #c5e1d2 !important;
      background-color: #ecf5f0 !important;
      outline: none;
    }
  ::v-deep .el-pagination__total {
      position: absolute;
      left: 10px;
    }
    ::v-deep .formSearch {
      display: flex;
      width: 100%;
      font-size: 14px;
      justify-content: space-between;
    }
    ::v-deep .el-radio-group{
      padding-top:14px;
    }
    ::v-deep .el-radio{
      font-weight:100 !important;
    }
     ::v-deep .bian_css{
      overflow-y:initial !important;
    }
  </style>