Blame view

yanshouban/src/views/detect/information.vue 45.4 KB
6ee6b0b7   杨鑫   '最新'
1
2
3
4
5
6
7
8
9
10
11
  <template>
    <div style="background-color:#f7f7f7;padding:10px 10px;">
      <div class="zhuti" v-if="ggXin && detbox">
        <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">
            <el-form :inline="true" :model="formSel">
ab818baa   杨鑫   '1'
12
13
14
15
              <!-- <el-form-item label="商铺编号" prop="venueNumber">
                <el-select v-model="formSel.venueNumber" placeholder="请选择" style="width: 168px;margin-right: 15px">
                  <el-option :label="item.venueNumber" :value="item.venueNumber" v-for="(item,index) in this.tableData"
                    :key="index" />
6ee6b0b7   杨鑫   '最新'
16
                </el-select>
ab818baa   杨鑫   '1'
17
              </el-form-item> -->
6ee6b0b7   杨鑫   '最新'
18
              <el-form-item label="商铺名称" prop="shopName">
ab818baa   杨鑫   '1'
19
20
21
                <el-select v-model="formSel.shopName" placeholder="请选择" style="width: 168px;margin-right: 15px">
                  <el-option :label="item.shopName" :value="item.shopName" v-for="(item,index) in this.tableData"
                    :key="index" />
6ee6b0b7   杨鑫   '最新'
22
23
24
                </el-select>
              </el-form-item>
              <el-form-item label="所属区域" prop="belongingRegion">
ab818baa   杨鑫   '1'
25
26
27
28
29
30
31
32
33
34
35
                <el-select v-model="formSel.belongingRegion" placeholder="请选择" style="width: 168px;margin-right: 15px">
                  <el-option label="成华区" value="成华区"></el-option>
                  <el-option label="武侯区" value="武侯区"></el-option>
                  <el-option label="锦江区" value="锦江区"></el-option>
                  <el-option label="青羊区" value="青羊区"></el-option>
                  <el-option label="金牛区" value="金牛区"></el-option>
                  <el-option label="双流区" value="双流区"></el-option>
                  <el-option label="郫都区" value="郫都区"></el-option>
                  <el-option label="龙泉驿区" value="龙泉驿区"></el-option>
                  <el-option label="温江区" value="温江区"></el-option>
                </el-select>
6ee6b0b7   杨鑫   '最新'
36
37
38
39
40
41
42
43
              </el-form-item>
              <el-form-item label="建筑形式" prop="architecturalForm">
                <el-select v-model="formSel.architecturalForm" placeholder="请选择" style="width: 168px;margin-right: 15px">
                  <el-option label="框剪结构" value="框剪结构"></el-option>
                  <el-option label="区域二" value="区域二"></el-option>
                </el-select>
              </el-form-item>
  
ab818baa   杨鑫   '1'
44
              <!--     <el-input v-model="formSel.findLike" placeholder="请输入关键词"  suffix-icon="el-icon-search"
6ee6b0b7   杨鑫   '最新'
45
46
                style="width: 180px;margin-right: 15px" /> -->
            </el-form>
ab818baa   杨鑫   '1'
47
48
49
50
51
52
            <div> <el-button @click="onSubmit" style="background-color: #3F9B6A;color: #fff;padding:8px 15px;">查询
              </el-button>
              <el-button @click="resetting" class="buttonHover"
                style="color: #606266;border: 1px solid #DBDBDB;background-color: #fff;">重置
              </el-button>
            </div>
6ee6b0b7   杨鑫   '最新'
53
54
          </div>
          <div style="margin-bottom:20px;">
ab818baa   杨鑫   '1'
55
56
            <el-button @click="addbuss" style="background-color: #3F9B6A;color: #fff;padding:8px 15px;"
              icon="el-icon-circle-plus-outline">新增</el-button>
6ee6b0b7   杨鑫   '最新'
57
58
          </div>
          <!-- 表格 -->
a5801e96   杨鑫   '最新'
59
  
6ee6b0b7   杨鑫   '最新'
60
          <el-table :data="tableData.slice((currentPage - 1) * pageSize, currentPage * pageSize)"
ab818baa   杨鑫   '1'
61
62
63
64
65
            :header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"   tooltip-effect="dark custom-tooltip-effect">
            <el-table-column label="序号" min-width="80">
              <template slot-scope="scope">
                {{scope.$index +1 }}
              </template>
6ee6b0b7   杨鑫   '最新'
66
            </el-table-column>
ab818baa   杨鑫   '1'
67
            <el-table-column label="编号" prop="venueNumber" min-width="200" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
68
            </el-table-column>
ab818baa   杨鑫   '1'
69
            <el-table-column label="门牌号" prop="houseNumber" min-width="80" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
70
71
  
            </el-table-column>
ab818baa   杨鑫   '1'
72
            <el-table-column label="商铺名称" prop="shopName" min-width="250" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
73
74
  
            </el-table-column>
ab818baa   杨鑫   '1'
75
            <el-table-column label="所属区域" prop="belongingRegion" min-width="150" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
76
            </el-table-column>
ab818baa   杨鑫   '1'
77
            <el-table-column label="建筑形式" prop="architecturalForm" min-width="150" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
78
            </el-table-column>
ab818baa   杨鑫   '1'
79
            <el-table-column prop="detailedLocation" label="详细地址" min-width="300" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
80
            </el-table-column>
ab818baa   杨鑫   '1'
81
            <el-table-column label="实际使用面积" prop="actualUsableArea" min-width="150" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
82
            </el-table-column>
ab818baa   杨鑫   '1'
83
            <el-table-column label="归属部门" prop="belongingDepartment" min-width="150" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
84
            </el-table-column>
ab818baa   杨鑫   '1'
85
            <el-table-column label="负责人" prop="head" min-width="120" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
86
            </el-table-column>
a5801e96   杨鑫   '最新'
87
88
            <el-table-column label="商铺业态" prop="commercialForm" min-width="120" show-overflow-tooltip>
            </el-table-column>
ab818baa   杨鑫   '1'
89
            <el-table-column label="租赁状态" prop="rentalStatus" min-width="120" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
90
91
              <template slot-scope="scope">
                {{scope.row.rentalStatus=='0'?'待租':'已租'}}
ab818baa   杨鑫   '1'
92
              </template>
6ee6b0b7   杨鑫   '最新'
93
            </el-table-column>
ab818baa   杨鑫   '1'
94
            <el-table-column label="发布状态" prop="publishStatus" min-width="150" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
95
96
              <template slot-scope="scope">
                {{scope.row.publishStatus=='0'?'待发布':scope.row.publishStatus=='1'?'待审核':'已审核'}}
ab818baa   杨鑫   '1'
97
              </template>
6ee6b0b7   杨鑫   '最新'
98
            </el-table-column>
ab818baa   杨鑫   '1'
99
            <el-table-column label="租赁到期时间" prop="leaseExpirationDate" min-width="250" show-overflow-tooltip>
6ee6b0b7   杨鑫   '最新'
100
            </el-table-column>
ab818baa   杨鑫   '1'
101
            <el-table-column label="操作" min-width="160" fixed="right">
6ee6b0b7   杨鑫   '最新'
102
103
104
              <template slot-scope="scope">
                <div @click="handleEditForm(scope.row)" class="tableBtn greens">查看</div>
                <div class="tableBtn greens" @click="bianjilist(scope.row)">编辑</div>
ab818baa   杨鑫   '1'
105
                <div class="tableBtn greens" @click="closemsg(scope.row)">删除</div>
6ee6b0b7   杨鑫   '最新'
106
107
108
109
110
111
112
113
114
115
116
117
118
              </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>
      <!-- 新增············································· -->
      <div class="zhuti" v-if="ggXin == false">
ab818baa   杨鑫   '1'
119
120
121
        <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>
6ee6b0b7   杨鑫   '最新'
122
        </div>
ab818baa   杨鑫   '1'
123
124
125
126
        <div style="margin-top: 30px;">
          <div class="titles">
            基础信息
          </div>
6ee6b0b7   杨鑫   '最新'
127
  
ab818baa   杨鑫   '1'
128
          <div style="padding: 20px 20px 20px 0;">
6ee6b0b7   杨鑫   '最新'
129
            <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="140px" class="demo-ruleForm">
ab818baa   杨鑫   '1'
130
131
132
133
134
135
136
137
138
139
140
141
142
              <el-row :gutter="20">
                <el-col :span="12">
                  <el-form-item label="商铺名称" prop="shopName">
                    <el-input v-model="ruleForm.shopName" placeholder="请输入" style="margin-top:5px;"
                      maxlength="50"></el-input>
                  </el-form-item>
                </el-col>
                <el-col :span="12">
                  <el-form-item label="场地编号" prop="venueNumber">
                    <el-input v-model="ruleForm.venueNumber" disabled placeholder="将根据类型自动为资源编号"
                      style="margin-top:5px;"></el-input>
                  </el-form-item>
                </el-col>
6ee6b0b7   杨鑫   '最新'
143
  
ab818baa   杨鑫   '1'
144
              </el-row>
6ee6b0b7   杨鑫   '最新'
145
              <el-row :gutter="20">
ab818baa   杨鑫   '1'
146
147
148
149
150
151
152
153
154
155
156
157
158
159
                <el-col :span="12">
                  <el-form-item label="门牌号" prop="houseNumber">
                    <el-input v-model="ruleForm.houseNumber" placeholder="请输入" style="margin-top:5px;"
                      maxlength="20"></el-input>
                  </el-form-item>
                </el-col>
                <el-col :span="12">
                  <el-form-item label="建筑形式" prop="architecturalForm">
                    <el-select v-model="ruleForm.architecturalForm" placeholder="请选择" style="margin-top:5px;width: 100%;">
                      <el-option label="框剪结构" value="框剪结构"></el-option>
                      <el-option label="区域二" value="区域二"></el-option>
                    </el-select>
                  </el-form-item>
                </el-col>
6ee6b0b7   杨鑫   '最新'
160
              </el-row>
ab818baa   杨鑫   '1'
161
162
163
164
165
166
167
168
169
170
  
              <el-row :gutter="20">
                <el-col :span="12">
                  <el-form-item label="所属绿道段" prop="belongingGreenwaySection">
                    <el-select v-model="ruleForm.belongingGreenwaySection" placeholder="请选择"
                      style="margin-top:5px;width: 100%;" @change="lvdaoSel">
                      <el-option :label="item.name" :value="item.code" v-for="(item,index) in lvdaoList"
                        :key="index"></el-option>
                    </el-select>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
171
                </el-col>
ab818baa   杨鑫   '1'
172
173
174
175
176
177
178
179
                <el-col :span="12">
                  <el-form-item label="所属公园/步道" prop="belongingParkTrail">
                    <el-select v-model="ruleForm.belongingParkTrail" placeholder="请选择"
                      style="margin-top:5px;width: 100%;">
                      <el-option :label="item.name" :value="item.code" v-for="(item,index) in gongyuanList"
                        :key="index"></el-option>
                    </el-select>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
180
                </el-col>
6ee6b0b7   杨鑫   '最新'
181
              </el-row>
ab818baa   杨鑫   '1'
182
  
6ee6b0b7   杨鑫   '最新'
183
              <el-row :gutter="20">
ab818baa   杨鑫   '1'
184
185
186
187
188
189
                <el-col :span="12">
                  <el-form-item label="建筑面积" prop="floorSpace">
                    <el-input v-model="ruleForm.floorSpace" placeholder="请输入" style="margin-top:5px;">
                      <template slot="append">M<sup>2</sup></template>
                    </el-input>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
190
                </el-col>
ab818baa   杨鑫   '1'
191
192
193
194
195
196
                <el-col :span="12">
                  <el-form-item label="实际使用面积" prop="actualUsableArea">
                    <el-input v-model="ruleForm.actualUsableArea" placeholder="请输入" style="margin-top:5px;">
                      <template slot="append">M<sup>2</sup></template>
                    </el-input>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
197
198
                </el-col>
              </el-row>
ab818baa   杨鑫   '1'
199
  
6ee6b0b7   杨鑫   '最新'
200
201
              <el-row :gutter="20">
                <el-col :span="12">
ab818baa   杨鑫   '1'
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
                  <el-form-item label="所属区域" prop="belongingRegion">
                    <el-select v-model="ruleForm.belongingRegion" placeholder="请选择" style="margin-top:5px;width: 100%;">
                      <el-option label="成华区" value="成华区"></el-option>
                      <el-option label="武侯区" value="武侯区"></el-option>
                      <el-option label="锦江区" value="锦江区"></el-option>
                      <el-option label="青羊区" value="青羊区"></el-option>
                      <el-option label="金牛区" value="金牛区"></el-option>
                      <el-option label="双流区" value="双流区"></el-option>
                      <el-option label="郫都区" value="郫都区"></el-option>
                      <el-option label="龙泉驿区" value="龙泉驿区"></el-option>
                      <el-option label="温江区" value="温江区"></el-option>
                    </el-select>
                  </el-form-item>
                </el-col>
                <el-col :span="12">
                  <el-form-item label="归属部门" prop="belongingDepartment">
                    <el-input v-model="ruleForm.belongingDepartment" placeholder="请输入" style="margin-top:5px;"
                      maxlength="50">
                    </el-input>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
222
223
                </el-col>
              </el-row>
ab818baa   杨鑫   '1'
224
  
6ee6b0b7   杨鑫   '最新'
225
              <el-row :gutter="20">
ab818baa   杨鑫   '1'
226
227
228
229
230
                <el-col :span="12">
                  <el-form-item label="负责人" prop="head">
                    <el-input v-model="ruleForm.head" placeholder="请输入" style="margin-top:5px;" maxlength="20">
                    </el-input>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
231
                </el-col>
ab818baa   杨鑫   '1'
232
233
234
235
236
237
                <el-col :span="12">
                  <el-form-item label="详细位置" prop="detailedLocation">
                    <el-input v-model="ruleForm.detailedLocation" placeholder="请输入" style="margin-top:5px;"
                      maxlength="100">
                    </el-input>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
238
239
240
                </el-col>
              </el-row>
              <el-row :gutter="20">
a5801e96   杨鑫   '最新'
241
242
243
244
245
246
247
248
249
250
                <el-col :span="12">
                  <el-form-item label="商铺业态" prop="commercialForm">
                    <el-select v-model="ruleForm.commercialForm" placeholder="请选择" style="margin-top:5px;width: 100%;">
                      <el-option label="商超" value="商超"></el-option>
                    </el-select>
                  </el-form-item>
                </el-col>
  
              </el-row>
              <el-row :gutter="20">
6ee6b0b7   杨鑫   '最新'
251
                <el-col :span="24">
ab818baa   杨鑫   '1'
252
253
254
255
256
                  <el-form-item label="地图标点" prop="mapPunctuation">
                    <div style="width: 100%;height: 300px;">
                      <map-mark :sendChildDate="getChildDate"></map-mark>
                    </div>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
257
258
259
                </el-col>
              </el-row>
              <el-row :gutter="20">
ab818baa   杨鑫   '1'
260
261
262
263
                <el-col :span="12">
                  <el-form-item label="建筑图纸" prop="architecturalDrawings">
                    <upimg v-model="ruleForm.architecturalDrawings" :limit="5" :fileSize="1"></upimg>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
264
265
266
                </el-col>
              </el-row>
              <el-row :gutter="20">
ab818baa   杨鑫   '1'
267
268
269
270
271
                <el-col :span="12">
                  <el-form-item label="商铺描述" prop="shopDescription">
                    <el-input type="textarea" v-model="ruleForm.shopDescription" style="margin-top:5px;" placeholder="请输入"
                      maxlength="200"></el-input>
                  </el-form-item>
6ee6b0b7   杨鑫   '最新'
272
273
                </el-col>
              </el-row>
ab818baa   杨鑫   '1'
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
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
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
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
440
441
442
443
444
445
446
              <el-row :gutter="20">
                <el-col :span="12">
                  <el-form-item label="展示主图" prop="displayMainImage">
                    <upimg v-model="ruleForm.displayMainImage" :limit="1" :fileSize="1"></upimg>
                  </el-form-item>
                </el-col>
              </el-row>
              <el-row :gutter="20">
                <el-col :span="12">
                  <el-form-item label="其他图片/视频" prop="otherImageVideos">
  
                    <el-upload class="upload-demo" ref="upload" :on-remove="handleRemove" :action="uploadFileUrl"
                      :on-success="handleUploadSuccess" :file-list="fileData" :auto-upload="true">
                      <el-button style="background-color: #fff;color: #3F9B6A;border: 1px solid #dcdfe6;"
                        class="buttonHover" v-if="fileData.length==0">+点击上传</el-button>
                    </el-upload>
                  </el-form-item>
                </el-col>
              </el-row>
              <el-row :gutter="20">
                <el-col :span="12">
                  <el-form-item>
                    <div style="margin-top: 20px">
                      <el-button @click="addpush('ruleForm')"
                        style="background-color: #3F9B6A;color: #fff;">确定</el-button>
                      <el-button @click="colse(1)" class="buttonHover"
                        style="color: #606266;border: 1px solid #DBDBDB;background-color: #fff;">取消</el-button>
  
                    </div>
  
                  </el-form-item>
                </el-col>
              </el-row>
  
  
  
  
  
            </el-form>
          </div>
        </div>
      </div>
      <!-- 查看········································· -->
      <div class="zhuti" v-if='detbox == false'>
        <div style="height:58px;line-height:58px;">
          <div style="color:#0006"> <span>商铺基本信息</span> <span style="padding:0 5px;">></span> <span
              style="color:#000000e6">{{edit?'查看':'编辑'}}</span></div>
        </div>
          <el-tabs v-model="xiangTab">
            <el-tab-pane label="基础信息" name="first">
              <div style="margin-top: 30px;" class="editcss">
                <div class="titles">
                  基础信息
                </div>
                <div style="padding: 20px;">
                  <el-form :model="editbgid" :rules="rules" ref="ruleForm" label-width="140px" class="demo-ruleForm">
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="商铺名称" prop="shopName">
                          <div v-if="edit" class="duiqi">{{editbgid.shopName}}</div>
                          <el-input v-model="editbgid.shopName" placeholder="请输入" style="margin-top: 5px;" maxlength="50"
                            v-else></el-input>
                        </el-form-item>
                      </el-col>
                      <el-col :span="12">
                        <el-form-item label="场地编号" prop="venueNumber">
                          <div class="duiqi">{{editbgid.venueNumber}}</div>
                        </el-form-item>
                      </el-col>
                    </el-row>
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="门牌号" prop="houseNumber">
                          <div v-if="edit" class="duiqi">{{editbgid.houseNumber}}</div>
                          <el-input v-model="editbgid.houseNumber" placeholder="请输入" style="margin-top: 5px;" maxlength="50"
                            v-else></el-input>
                        </el-form-item>
                      </el-col>
                      <el-col :span="12">
                        <el-form-item label="建筑形式" prop="architecturalForm">
                          <div v-if="edit" class="duiqi">{{editbgid.architecturalForm}}</div>
                          <el-select v-model="editbgid.architecturalForm" placeholder="请选择" style="margin-top:5px;width: 100%;"
                            v-else>
                            <el-option label="框剪结构" value="框剪结构"></el-option>
                            <el-option label="区域二" value="区域二"></el-option>
                          </el-select>
                        </el-form-item>
                      </el-col>
                    </el-row>
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="所属绿道段" prop="belongingGreenwaySection">
                          <div v-if="edit" class="duiqi">{{editbgid.belongingGreenwaySection}}</div>
                          <el-select v-model="editbgid.belongingGreenwaySection" placeholder="请选择"
                            style="margin-top:5px;width: 100%;" @change="lvdaoBian" v-else>
                            <el-option :label="item.name" :value="item.code" v-for="(item,index) in lvdaoList"
                              :key="index"></el-option>
  
                          </el-select>
                        </el-form-item>
                      </el-col>
                      <el-col :span="12">
                        <el-form-item label="所属公园/步道" prop="belongingParkTrail">
                          <div v-if="edit" class="duiqi">{{editbgid.belongingParkTrail}}</div>
                          <el-select v-model="editbgid.belongingParkTrail" placeholder="请选择" style="margin-top:5px;width: 100%;"
                            v-else>
                            <el-option :label="item.name" :value="item.code" v-for="(item,index) in biangongyuanList"
                              :key="index"></el-option>
                          </el-select>
                        </el-form-item>
                      </el-col>
                    </el-row>
  
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="建筑面积" prop="floorSpace">
                          <div v-if="edit" class="duiqi">{{editbgid.floorSpace}}</div>
                          <el-input v-model="editbgid.floorSpace" placeholder="请输入" style="margin-top:5px;" v-else>
                            <template slot="append">M<sup>2</sup></template>
                          </el-input>
                        </el-form-item>
                      </el-col>
                      <el-col :span="12">
                        <el-form-item label="实际使用面积" prop="actualUsableArea">
                          <div v-if="edit" class="duiqi">{{editbgid.actualUsableArea}}</div>
                          <el-input v-model="editbgid.actualUsableArea" placeholder="请输入" style="margin-top:5px;" v-else>
                            <template slot="append">M<sup>2</sup></template>
                          </el-input>
                        </el-form-item>
                      </el-col>
                    </el-row>
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="所属区域" prop="belongingRegion">
                          <div v-if="edit" class="duiqi">{{editbgid.belongingRegion}}</div>
                          <el-select v-model="editbgid.belongingRegion" placeholder="请选择" style="margin-top:5px;width: 100%;"
                            v-else>
                            <el-option label="成华区" value="成华区"></el-option>
                            <el-option label="武侯区" value="武侯区"></el-option>
                            <el-option label="锦江区" value="锦江区"></el-option>
                            <el-option label="青羊区" value="青羊区"></el-option>
                            <el-option label="金牛区" value="金牛区"></el-option>
                            <el-option label="双流区" value="双流区"></el-option>
                            <el-option label="郫都区" value="郫都区"></el-option>
                            <el-option label="龙泉驿区" value="龙泉驿区"></el-option>
                            <el-option label="温江区" value="温江区"></el-option>
                          </el-select>
                        </el-form-item>
                      </el-col>
                      <el-col :span="12">
                        <el-form-item label="归属部门" prop="belongingDepartment">
                          <div v-if="edit" class="duiqi">{{editbgid.belongingDepartment}}</div>
                          <el-input v-model="editbgid.belongingDepartment" placeholder="请输入" style="margin-top:5px;" v-else />
                        </el-form-item>
                      </el-col>
                    </el-row>
  
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="负责人" prop="head">
                          <div v-if="edit" class="duiqi">{{editbgid.head}}</div>
                          <el-input v-model="editbgid.head" placeholder="请输入" style="margin-top:5px;" maxlength="30" v-else>
                          </el-input>
                        </el-form-item>
                      </el-col>
                      <el-col :span="12">
                        <el-form-item label="详细位置" prop="detailedLocation">
                          <div v-if="edit" class="duiqi">{{editbgid.detailedLocation}}</div>
                          <el-input v-model="editbgid.detailedLocation" placeholder="请输入" style="margin-top:5px;" v-else
                            maxlength="100" />
                        </el-form-item>
                      </el-col>
                    </el-row>
a5801e96   杨鑫   '最新'
447
448
449
450
451
452
453
454
455
456
457
458
  <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="商铺业态" prop="commercialForm">
                          <div v-if="edit" class="duiqi">{{editbgid.commercialForm}}</div>
                          <el-select v-model="ruleForm.commercialForm" placeholder="请选择" style="margin-top:5px;width: 100%;" v-else>
                            <el-option label="商超" value="商超"></el-option>
                          </el-select>
                          </el-input>
                        </el-form-item>
                      </el-col>
  
                    </el-row>
ab818baa   杨鑫   '1'
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
  
                    <el-row :gutter="20">
                      <el-col :span="24">
                        <el-form-item label="地图标点" prop="mapPunctuation">
                          <div style="width: 100%;height: 300px;">
                            <MapXian :message="parentMessage" :edit='edit' :sendMap='getChildDate'></MapXian>
                          </div>
                        </el-form-item>
                      </el-col>
                    </el-row>
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="建筑图纸" prop="architecturalDrawings">
                          <upimg v-model="editbgid.architecturalDrawings" :limit="5" :fileSize="1" v-if="edit==false"></upimg>
                           <div v-else>
                               <img :src="item" alt="" style="width:140px;height:140px;" v-for="item in editbgid.architecturalDrawings.split(',')" >
                           </div>
  
                        </el-form-item>
                      </el-col>
                    </el-row>
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="商铺描述" prop="shopDescription">
                          <div v-if="edit" class="duiqi">{{editbgid.shopDescription}}</div>
                          <el-input type="textarea" v-model="editbgid.shopDescription" style="margin-top:5px;" placeholder="请输入"
                            v-else></el-input>
                        </el-form-item>
                      </el-col>
                    </el-row>
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="展示主图" prop="displayMainImage">
                          <upimg v-model="editbgid.displayMainImage" :limit="1" :fileSize="1" v-if="edit==false"></upimg>
                          <img :src="editbgid.displayMainImage" alt="" style="width:140px;height:140px;" v-else>
                        </el-form-item>
                      </el-col>
                    </el-row>
                    <el-row :gutter="20">
                      <el-col :span="12">
                        <el-form-item label="其他图片/视频" prop="otherImageVideos">
                          <div v-if="edit" class="duiqi">{{editbgid.otherImageVideos}}</div>
                          <el-upload class="upload-demo" ref="upload" :on-remove="handleRemove" :action="uploadFileUrl"
                            :on-success="handleUploadSuccess" :file-list="fileData" :auto-upload="true"
                            v-else>
                            <el-button style="background-color: #fff;color: #3F9B6A;border: 1px solid #dcdfe6;"
                              class="buttonHover" v-if="fileData.length==0 && edit==false">+点击上传</el-button>
                          </el-upload>
                        </el-form-item>
                      </el-col>
                    </el-row>
  
                  </el-form>
                </div>
              </div>
            </el-tab-pane>
156fa163   杨鑫   'z'
515
            <el-tab-pane label="历史租赁信息" name="second" v-if="edit">
ab818baa   杨鑫   '1'
516
517
              <div style="margin-top: 30px;" class="editcss">
                <div class="titles">
156fa163   杨鑫   'z'
518
                  历史租赁信息
ab818baa   杨鑫   '1'
519
                </div>
a5801e96   杨鑫   '最新'
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
                <div style="margin:20px 0;">
                  <el-table :data="lishiData"
                    :header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"   tooltip-effect="dark custom-tooltip-effect">
                    <el-table-column label="承租人" min-width="80" prop="tenantName">
  
                    </el-table-column>
                    <el-table-column label="租赁期限" prop="leaseStartDate" min-width="200" show-overflow-tooltip>
                    </el-table-column>
                    <el-table-column label="经营类型" prop="houseNumber" min-width="80" show-overflow-tooltip>
  
                    </el-table-column>
                    <el-table-column label="租金/周期" prop="shopName" min-width="250" show-overflow-tooltip>
  <template slot-scope="scope">
             {{scope.row.contractAmount}}/{{scope.row.intendedLeaseTerm}}
  
            </template>
                    </el-table-column>
                    <el-table-column label="当前状态" prop="belongingRegion" min-width="150" show-overflow-tooltip>
                    </el-table-column>
  
                    <!-- <el-table-column label="操作" min-width="160" fixed="right">
                      <template slot-scope="scope">
                        <div @click="handleEditForm(scope.row)" class="tableBtn greens">查看</div>
                      </template>
                    </el-table-column> -->
                  </el-table>
                </div>
ab818baa   杨鑫   '1'
547
548
               </div>
            </el-tab-pane>
156fa163   杨鑫   'z'
549
            <!-- <el-tab-pane label="租赁信息" name="third" v-if="edit">
ab818baa   杨鑫   '1'
550
551
552
553
554
              <div style="margin-top: 30px;" class="editcss">
                <div class="titles">
                  租赁信息
                </div>
               </div>
156fa163   杨鑫   'z'
555
556
            </el-tab-pane> -->
        <!--    <el-tab-pane label="人流情况" name="fourth" v-if="edit">
ab818baa   杨鑫   '1'
557
558
559
560
561
562
563
564
565
566
567
568
              <div style="margin-top: 30px;" class="editcss">
                <div class="titles">
                  人流情况
                </div>
               </div>
            </el-tab-pane>
            <el-tab-pane label="物业维护记录" name="five" v-if="edit">
              <div style="margin-top: 30px;" class="editcss">
                <div class="titles">
                  物业维护记录
                </div>
               </div>
156fa163   杨鑫   'z'
569
            </el-tab-pane> -->
ab818baa   杨鑫   '1'
570
571
572
573
574
575
576
577
578
579
580
581
582
          </el-tabs>
  <el-row :gutter="20">
                      <el-col :span="12">
                          <div style="padding-left:160px;">
                            <el-button @click="editpush()" style="background-color: #3F9B6A;color: #fff;"
                              v-if="!edit">确定</el-button>
                            <el-button @click="colse(2)" class="buttonHover"
                              style="color: #606266;border: 1px solid #DBDBDB;background-color: #fff;">取消</el-button>
  
                          </div>
  
                      </el-col>
                    </el-row>
6ee6b0b7   杨鑫   '最新'
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
      </div>
  
  
  
  
    </div>
  </template>
  
  <script>
    import {
      getAlls,
      addList,
      editList,
      delList,
      likeGet,
      lvdaoduan,
a5801e96   杨鑫   '最新'
599
600
      gongyuan,
      zulxin
6ee6b0b7   杨鑫   '最新'
601
602
    } from '../../api/information';
    import {
ab818baa   杨鑫   '1'
603
604
      getToken,
      removeToken
6ee6b0b7   杨鑫   '最新'
605
606
607
608
609
610
611
612
613
614
615
616
617
618
    } from '@/utils/auth'
    import {
      uploadUrl
    } from '@/utils/request'
    import MapMark from "@/components/MapContainer/MapMark";
    import MapXian from "@/components/MapContainer/MapXian";
    import upimg from "@/components/ImageUpload/index";
    import upvidio from "@/components/fujianUpload/index";
    import axios from 'axios';
    export default {
      name: 'information',
      data() {
        return {
          uploadFileUrl: uploadUrl, // 请求地址
ab818baa   杨鑫   '1'
619
620
          fileData: [],
          xiangTab:'first',
6ee6b0b7   杨鑫   '最新'
621
622
          edit: true, //编辑
          formInline: {},
ab818baa   杨鑫   '1'
623
624
          ggXin: true, //新增
          detbox: true, //查看
6ee6b0b7   杨鑫   '最新'
625
          formSel: {
ab818baa   杨鑫   '1'
626
627
628
629
            venueNumber: '',
            shopName: '',
            belongingRegion: '',
            architecturalForm: '',
6ee6b0b7   杨鑫   '最新'
630
631
632
633
            pageNumber: 1,
            pageSize: 10,
          },
          currentPage: 1,
ab818baa   杨鑫   '1'
634
          total: 0,
6ee6b0b7   杨鑫   '最新'
635
636
637
          flag: false,
          pageSize: 10,
          tableData: [],
ab818baa   杨鑫   '1'
638
          editbgid: {
6ee6b0b7   杨鑫   '最新'
639
  
ab818baa   杨鑫   '1'
640
          },
6ee6b0b7   杨鑫   '最新'
641
642
643
644
          pageindex: {
            pageNumber: 1,
            pageSize: 10,
          },
ab818baa   杨鑫   '1'
645
646
647
648
649
650
651
652
653
          ruleForm: {
            shopName: '',
            venueNumber: '',
            houseNumber: '',
            architecturalForm: '',
            actualUsableArea: '',
            belongingRegion: '',
            belongingDepartment: '',
            head: '',
a5801e96   杨鑫   '最新'
654
            commercialForm:'',
ab818baa   杨鑫   '1'
655
656
657
658
659
660
661
662
663
664
            detailedLocation: '',
            mapPunctuation: '',
            shopDescription: '',
            displayMainImage: '',
            architecturalDrawings: '',
            otherImageVideos: '',
            belongingGreenwaySection: '',
            belongingParkTrail: '',
            floorSpace: '',
          },
6ee6b0b7   杨鑫   '最新'
665
          rules: {
ab818baa   杨鑫   '1'
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
            shopName: [{
              required: true,
              message: '请输入商铺名称',
              trigger: 'blur'
            }, ],
            houseNumber: [{
              required: true,
              message: '请输入门牌号',
              trigger: 'blur'
            }, ],
            architecturalForm: [{
              required: true,
              message: '请选择建筑形式',
              trigger: 'change'
            }],
            actualUsableArea: [{
                required: true,
                message: '请输入实际使用面积',
                trigger: 'blur'
              }
            ],
            belongingRegion: [{
              required: true,
              message: '请选择所属区域',
              trigger: 'change'
            }],
            head: [{
              required: true,
              message: '请输入负责人',
              trigger: 'blur'
            }, ],
            detailedLocation: [{
              required: true,
              message: '请输入详细位置',
              trigger: 'blur'
            }, ],
ab818baa   杨鑫   '1'
702
703
704
705
706
707
708
709
710
711
712
713
714
715
            belongingGreenwaySection: [{
              required: true,
              message: '请选择所属绿道段',
              trigger: 'change'
            }],
            // belongingParkTrail:[
            //   { required: true, message: '请选择所属公园/步道', trigger: 'change' }
            // ],
          },
          //地图标点的经纬度
          mapData: {},
          parentMessage: {},
          lvdaoList: [],
          gongyuanList: [],
a5801e96   杨鑫   '最新'
716
717
          biangongyuanList: [],
          lishiData:[]
6ee6b0b7   杨鑫   '最新'
718
719
        }
      },
ab818baa   杨鑫   '1'
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
      components: {
        MapMark,
        MapXian,
        upimg,
        upvidio
      },
      watch: { // 监听,当路由发生变化的时候执行
        '$route.query.xin': {
          handler(toPath, fromPath) {
            if (this.$route.query.xin) {
              this.addbuss()
            }
            if (this.$route.query.chakan) {
              this.handleEditForm(this.$route.query.chakan)
            }
            if (this.$route.query.bian) {
              this.bianjilist(this.$route.query.bian)
            }
  
          },
          deep: true, // 深度监听
          immediate: true, // 第一次初始化渲染就可以监听到
        }
6ee6b0b7   杨鑫   '最新'
743
744
745
746
747
  
      },
  
      mounted() {
  
ab818baa   杨鑫   '1'
748
        this.getAll()
6ee6b0b7   杨鑫   '最新'
749
750
751
752
753
754
755
756
757
  
      },
  
      methods: {
        onCreated(editor) {
          this.editor = Object.seal(editor) // 一定要用 Object.seal() ,否则会报错
        },
        //查询全数据
        async getAll() {
ab818baa   杨鑫   '1'
758
          const res = await getAlls(this.pageindex)
6ee6b0b7   杨鑫   '最新'
759
          this.tableData = res.data.content
ab818baa   杨鑫   '1'
760
          this.total = res.data.content.length
6ee6b0b7   杨鑫   '最新'
761
          const lvdao = await lvdaoduan()
ab818baa   杨鑫   '1'
762
763
764
          const gongyaun = await gongyuan()
          this.lvdaoList = lvdao.data
          this.biangongyuanList = gongyaun.data
6ee6b0b7   杨鑫   '最新'
765
        },
ab818baa   杨鑫   '1'
766
767
768
769
770
771
772
        async gongyuan(value) {
          const gongyaun = await gongyuan()
          this.gongyuanList = gongyaun.data.filter(item => item.superior == value);
        },
        async gongyuan1(value) {
          const gongyaun = await gongyuan()
          this.biangongyuanList = gongyaun.data.filter(item => item.superior == value);
6ee6b0b7   杨鑫   '最新'
773
        },
6ee6b0b7   杨鑫   '最新'
774
        //获取当前时间
ab818baa   杨鑫   '1'
775
776
777
778
779
780
781
782
783
784
785
        updateCurrentTime() {
          const now = new Date();
          const year = now.getFullYear();
          const month = (now.getMonth() + 1).toString().padStart(2, '0');
          const day = now.getDate().toString().padStart(2, '0');
          const hours = now.getHours().toString().padStart(2, '0');
          const minutes = now.getMinutes().toString().padStart(2, '0');
          const seconds = now.getSeconds().toString().padStart(2, '0');
  
          return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
        },
6ee6b0b7   杨鑫   '最新'
786
787
        //查看编辑
        bianji() {
a5801e96   杨鑫   '最新'
788
  
ab818baa   杨鑫   '1'
789
          if (this.edit) {
6ee6b0b7   杨鑫   '最新'
790
791
792
793
794
            this.edit = false
  
          }
        },
        //列表编辑
ab818baa   杨鑫   '1'
795
796
797
798
        bianjilist(item) {
          this.detbox = false
          this.editbgid = item
          this.parentMessage = JSON.parse(item.mapPunctuation)
a5801e96   杨鑫   '最新'
799
          console.log(item)
ab818baa   杨鑫   '1'
800
801
802
803
804
805
806
807
808
809
          const fileMsg = {
            name: '文件',
            url: item.otherImageVideos
          }
          // 将文件地址存储在 uploadedFiles 数组中
          this.fileData.push(fileMsg)
          this.$nextTick(() => {
            this.edit = false
  
          })
6ee6b0b7   杨鑫   '最新'
810
811
        },
        //新增确定
ab818baa   杨鑫   '1'
812
813
        addpush(formName) {
          this.$refs[formName].validate((valid) => {
6ee6b0b7   杨鑫   '最新'
814
            if (valid) {
ab818baa   杨鑫   '1'
815
816
              if (this.fileData.length != 0) {
                this.ruleForm.otherImageVideos = this.fileData[0].url
6ee6b0b7   杨鑫   '最新'
817
              }
ab818baa   杨鑫   '1'
818
819
820
821
822
823
824
825
826
827
              this.ruleForm.createDate = this.updateCurrentTime()
              this.ruleForm.mapPunctuation = JSON.stringify(this.mapData)
              this.ruleForm.rentalStatus = 0
              this.ruleForm.publishStatus = 0
  
              addList(this.ruleForm).then(res => {
                 this.fileData= []
                this.ggXin = true
                this.getAll()
              })
6ee6b0b7   杨鑫   '最新'
828
829
830
831
832
833
834
835
836
837
838
  
            } else {
              this.$message({
                message: '请填写完整信息',
                type: 'error'
              })
              return false;
            }
          })
        },
        //取消
ab818baa   杨鑫   '1'
839
840
841
842
843
844
        colse(val) {
          if (val == 1) {
            this.ggXin = true
          } else if (val == 2) {
            this.detbox = true
            this.edit = true
6ee6b0b7   杨鑫   '最新'
845
846
847
          }
        },
        //删除
ab818baa   杨鑫   '1'
848
        closemsg(item) {
6ee6b0b7   杨鑫   '最新'
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
          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') {
                delList({
                  id: item.id
                }).then(res => {
ab818baa   杨鑫   '1'
865
866
867
868
                  this.$message({
                    message: '删除成功',
                    type: 'success'
                  })
6ee6b0b7   杨鑫   '最新'
869
870
871
872
873
874
875
876
877
878
879
880
                  this.getAll()
                  done();
                })
              } else {
                done();
              }
            }
          })
        },
  
        //查询
        async onSubmit() {
ab818baa   杨鑫   '1'
881
882
883
          const res = await getAlls(this.formSel)
          this.tableData = res.data.content
          this.total = res.data.content.length
6ee6b0b7   杨鑫   '最新'
884
885
886
887
        },
        //查看点击
        handleEditForm(item) {
  
a5801e96   杨鑫   '最新'
888
889
890
891
892
893
894
895
896
897
898
899
900
          zulxin({venueNumber:item.venueNumber}).then(res=>{
            this.lishiData = res.data
       this.lishiData.map(item=>{
              item.earnestMoney =this.$decrypt(item.earnestMoney)
              item.contractAmount =this.$decrypt(item.contractAmount)
              item.lessorName =this.$decrypt(item.lessorName)
              item.telephone =this.$decrypt(item.telephone)
              item.bankAccount =this.$decrypt(item.bankAccount)
              item.tenantName =this.$decrypt(item.tenantName)
              item.tenantTelephone =this.$decrypt(item.tenantTelephone)
              item.tenantBankAccount =this.$decrypt(item.tenantBankAccount)
            })
          })
6ee6b0b7   杨鑫   '最新'
901
          this.editbgid = item
ab818baa   杨鑫   '1'
902
          this.parentMessage = JSON.parse(item.mapPunctuation)
6ee6b0b7   杨鑫   '最新'
903
904
905
906
          this.detbox = false
  
        },
        //查看编辑确定
ab818baa   杨鑫   '1'
907
908
909
910
911
912
913
914
        async editpush() {
          if (this.fileData.length != 0) {
            this.editbgid.otherImageVideos = this.fileData[0].url
          }
          this.editbgid.updateDate = this.updateCurrentTime()
          if(Object.keys(this.mapData).length != 0){
            this.editbgid.mapPunctuation = JSON.stringify(this.mapData)
          }
6ee6b0b7   杨鑫   '最新'
915
          await editList(this.editbgid)
ab818baa   杨鑫   '1'
916
          this.fileData= []
6ee6b0b7   杨鑫   '最新'
917
918
919
920
          this.detbox = true
          this.edit = true
          this.getAll()
        },
ab818baa   杨鑫   '1'
921
922
923
924
925
926
927
928
929
930
931
932
933
        //新增
        addbuss() {
          this.fileData = []
          this.ggXin = false
          this.ruleForm = {
            shopName: '',
            venueNumber: '',
            houseNumber: '',
            architecturalForm: '',
            actualUsableArea: '',
            belongingRegion: '',
            belongingDepartment: '',
            head: '',
a5801e96   杨鑫   '最新'
934
            commercialForm:'',
ab818baa   杨鑫   '1'
935
936
937
938
939
940
941
942
            detailedLocation: '',
            mapPunctuation: '',
            shopDescription: '',
            belongingGreenwaySection: '',
            belongingParkTrail: '',
            floorSpace: ''
          }
        },
6ee6b0b7   杨鑫   '最新'
943
944
945
946
947
948
949
  
        handleCurrentChange(val) {
          this.currentPage = val
        },
        handleSizeChange(val) {
          this.pageSize = val
        },
ab818baa   杨鑫   '1'
950
951
952
        //获取地图点击的经纬度
        getChildDate(mapData) {
          this.mapData = mapData
6ee6b0b7   杨鑫   '最新'
953
  
ab818baa   杨鑫   '1'
954
        },
6ee6b0b7   杨鑫   '最新'
955
956
957
        //重置按钮
        resetting() {
          this.formSel = {
ab818baa   杨鑫   '1'
958
959
960
961
962
963
964
965
966
              venueNumber: '',
              shopName: '',
              belongingRegion: '',
              architecturalForm: '',
              pageNumber: 1,
              pageSize: 10,
            },
            this.sel_input = ''
          this.getAll()
6ee6b0b7   杨鑫   '最新'
967
        },
ab818baa   杨鑫   '1'
968
969
970
971
972
        lvdaoSel(vaule) {
          // console.log(vaule)
          this.editbgid.belongingParkTrail = ''
          this.ruleForm.belongingParkTrail = ''
          this.gongyuan(vaule)
6ee6b0b7   杨鑫   '最新'
973
        },
ab818baa   杨鑫   '1'
974
975
976
        lvdaoBian(vaule) {
          this.editbgid.belongingParkTrail = ''
          this.gongyuan1(vaule)
6ee6b0b7   杨鑫   '最新'
977
978
979
980
981
982
        },
        handleRemove(file, fileList) {
          this.fileData = []
        },
        handleUploadSuccess(response, file, fileList) {
          const fileMsg = {
ab818baa   杨鑫   '1'
983
984
            name: file.name,
            url: file.response.data.url,
6ee6b0b7   杨鑫   '最新'
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
          }
          // 将文件地址存储在 uploadedFiles 数组中
          this.fileData.push(fileMsg);
        },
      }
    }
  </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;
    }
  
    .formSearch {
      display: flex;
      width: 100%;
      font-size: 14px;
      justify-content: space-between;
    }
  
    .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;
    }
  
  
    :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;
    }
  
    .pagination {
      text-align: right;
      line-height: 20px;
    }
  
    /deep/ .el-pagination__total {
      margin-top: 4px;
    }
  
  
  
    .dialog_css {
      padding: 0px;
    }
ab818baa   杨鑫   '1'
1100
1101
1102
1103
1104
  
    .dialog_xin {
      padding: 0px;
    }
  
6ee6b0b7   杨鑫   '最新'
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
    /deep/.el-dialog__body {
      padding: 0px;
    }
  
    /deep/ .el-dialog__header {
      background-color: #fff;
      padding: 0
    }
  
    /deep/.el-dialog__title {
      color: #000;
    }
  
    .el-row {
  
  
      &:last-child {
        margin-bottom: 0;
      }
    }
  
    /deep/ .avatar-uploader .el-upload {
      border: 1px dashed #d9d9d9;
      border-radius: 6px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
  
  
    .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;
    }
  
  
    ::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-col {
      padding: 0 !important;
    }
6ee6b0b7   杨鑫   '最新'
1187
  
ab818baa   杨鑫   '1'
1188
1189
1190
1191
1192
1193
    .titles {
      font-size: 16px;
      position: relative;
      padding-left: 14px;
      font-weight: 600;
    }
6ee6b0b7   杨鑫   '最新'
1194
  
ab818baa   杨鑫   '1'
1195
1196
1197
1198
1199
    .titles::before {
      content: '';
      width: 4px;
      height: 16px;
      background-color: #3F9B6A;
6ee6b0b7   杨鑫   '最新'
1200
      position: absolute;
ab818baa   杨鑫   '1'
1201
      top: 1px;
6ee6b0b7   杨鑫   '最新'
1202
      left: 0;
ab818baa   杨鑫   '1'
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
      border-radius: 5px;
    }
  
    ::v-deep .editcss {
      font-size: 14px;
  
      .el-form-item__label {
        color: #0006;
      }
    }
  
    .el-row {
      margin-bottom: 16px;
    }
  
    .duiqi {
      line-height: 40px;
    }
6ee6b0b7   杨鑫   '最新'
1221
1222
1223
1224
  </style>
  <style lang="scss" scoped>
    ::v-deep .bian_css {
      .el-dialog__header {
ab818baa   杨鑫   '1'
1225
1226
1227
1228
1229
        padding: 10px 20px 20px 20px;
      }
  
      .el-dialog__body {
        padding: 5px;
6ee6b0b7   杨鑫   '最新'
1230
      }
6ee6b0b7   杨鑫   '最新'
1231
1232
    }
  
ab818baa   杨鑫   '1'
1233
1234
1235
1236
    ::v-deep .xinFrom {
      .el-input--mini .el-input__inner {
        height: 36px;
        line-height: 36px;
6ee6b0b7   杨鑫   '最新'
1237
      }
ab818baa   杨鑫   '1'
1238
1239
1240
1241
  
      .el-range-editor--mini.el-input__inner {
        height: 36px;
        width: 100%;
6ee6b0b7   杨鑫   '最新'
1242
1243
      }
    }
ab818baa   杨鑫   '1'
1244
1245
1246
  
    ::v-deep .buttonHover:hover {
      color: #3f9b6a !important;
6ee6b0b7   杨鑫   '最新'
1247
1248
1249
1250
      border-color: #c5e1d2 !important;
      background-color: #ecf5f0 !important;
      outline: none;
    }
ab818baa   杨鑫   '1'
1251
1252
  
    ::v-deep .el-pagination__total {
6ee6b0b7   杨鑫   '最新'
1253
1254
1255
1256
      position: absolute;
      left: 10px;
    }
  
ab818baa   杨鑫   '1'
1257
1258
1259
    ::v-deep .el-input-group__append {
      height: 32px;
    }
6ee6b0b7   杨鑫   '最新'
1260
  </style>