manage-client 3.2.209-1 → 3.2.210

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,10 +16,10 @@ var qtx= 'http://36.103.222.144:6300/'
16
16
  // var bendi = 'http://220.194.141.253:8600/'
17
17
  // var bendi = 'http://203.57.101.233:9001'
18
18
  // var bendi = 'http://172.168.1.11:9001/'
19
- var bendi = 'http://203.57.101.233:8400/'
19
+ // var bendi = 'http://203.57.101.233:8400/'
20
20
  // var bendi = 'http://121.36.106.17:8400/'
21
21
  // var fuwu = 'http://203.57.101.233:9001'
22
- var system = 'http://192.168.50.4:8400'
22
+ var bendi = 'http://192.168.50.4:8400'
23
23
  // 192.168.
24
24
  // var str = 'http://127.0.0.1:8080/manage', str2 = 'http://192.168.50.199:8300'
25
25
  // var str = 'http://192.168.10.233:8300', str2 = 'http://192.168.10.14:8300'
@@ -27,9 +27,9 @@ var proxyTable = {
27
27
  '/rs/logic/exportfile': {
28
28
  target: bendi
29
29
  },
30
- // '/rs/sql/otherChargeQuery': {
31
- // target: 'http://localhost:8080/'
32
- // },
30
+ '/rs/sql/inspectListNew': {
31
+ target: 'http://localhost:8080/'
32
+ },
33
33
  // '/rs/sql/BusinessType': {
34
34
  // target: 'http://localhost:8080/'
35
35
  // },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "3.2.209-1",
3
+ "version": "3.2.210",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div id="unit" class="flex-row">
3
- <div class="basic-main" @keyup.enter="search">
3
+ <div :class="{'basic-main':!useraddressShow,'binary-left':useraddressShow}" @keyup.enter="search">
4
4
  <div class="flex" v-if="!show">
5
5
 
6
6
  <criteria-paged :model="model" v-ref:paged @sort="sort">
@@ -178,7 +178,7 @@
178
178
  <nobr>{{row.f_orgname}}</nobr>
179
179
  </td>
180
180
  <td style="text-align: center;" v-if="row.f_state === '销户'&& row.num== 1">
181
- <nobr><a href="#" @click="$parent.$parent.$parent.enable(row)">启用</a></nobr>
181
+ <nobr><a href="#" @click="$parent.$parent.$parent.enable(row)">启用</a> | <a href="#" @click="$parent.$parent.$parent.modifyAddress(row)">修改地址</a></nobr>
182
182
  </td>
183
183
  <td style="text-align: center;" v-else>
184
184
  </td>
@@ -203,6 +203,13 @@
203
203
  <user-info-detail-manage-new :f_userinfo_id="rowdata.f_userinfo_id" @cancel-main="cancel"></user-info-detail-manage-new>
204
204
  </div>
205
205
  </div>
206
+ <div class="binary-right" v-show="useraddressShow">
207
+ <div class="flex">
208
+ <user-address v-ref:useraddressmsg
209
+ :f_filialeids.sync="f_filialeids"></user-address>
210
+
211
+ <user-address-change v-if="addressId" :address_id="addressId"></user-address-change>
212
+ </div>
206
213
  <modal :show.sync="showupload" v-if="showupload" width="80%" style="width:auto;" v-ref:modal middle backdrop="false">
207
214
  <article slot="modal-body">
208
215
  <upload :blodid="selected.f_userinfo_id" v-ref:upload isupload="false" takeimg="false" fusetype="销户" :isremark="false" style="width:auto" ></upload>
@@ -269,6 +276,9 @@
269
276
  bodyData: ["f_userinfo_id", "f_user_name", "f_operator", "f_operate_date", "f_state", "f_comments", "f_sendsuccess"],
270
277
  orgCondtionStr: '',
271
278
  show:false,
279
+ f_filialeids: this.$login.f.orgid,
280
+ useraddressShow: false,
281
+ addressId: '',
272
282
  rowdata:{},
273
283
  enableData: {
274
284
  f_reason: ''
@@ -310,6 +320,27 @@
310
320
  })
311
321
  },
312
322
  methods: {
323
+ modifyAddress(obj) {
324
+ this.addressId=obj.addrid
325
+ this.useraddressShow=true
326
+ this.$refs.useraddressmsg.cleardara()
327
+ this.$refs.useraddressmsg.initdata()
328
+ this.$refs.useraddressmsg.usertype=obj.f_user_type
329
+ this.$refs.useraddressmsg.operation='modify'
330
+ this.$refs.useraddressmsg.onedata='one'
331
+ this.$refs.useraddressmsg.model=Object.assign({},this.$refs.useraddressmsg.model,obj)
332
+ if(obj.f_special=='1'){
333
+ this.$refs.useraddressmsg.usertype = true
334
+ }else{
335
+ this.$refs.useraddressmsg.usertype = false
336
+ }
337
+ if (obj.f_slice_area) {
338
+ this.$refs.useraddressmsg.model.slice_area = [{
339
+ name: this.$refs.useraddressmsg.model.f_slice_area,
340
+ code: this.$refs.useraddressmsg.model.f_area_code
341
+ }]
342
+ }
343
+ },
313
344
  enable(row) {
314
345
  Object.assign(this.enableData, row)
315
346
  this.enbaleShow = true
@@ -481,6 +512,17 @@
481
512
  getfield() {
482
513
  return exportConfig.CancellationConfig
483
514
  }
515
+ },
516
+ events: {
517
+ 'cancel' () {
518
+ this.addressId=null
519
+ this.useraddressShow = false
520
+ },
521
+ 'confirm' () {
522
+ this.addressId=null
523
+ this.useraddressShow = false
524
+ this.search()
525
+ },
484
526
  }
485
527
  }
486
528
  </script>