address-client 4.0.13 → 4.0.15
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.
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/package.json +1 -1
- package/src/filiale/yangchun/AddAreaMsg.vue +1 -1
- package/src/filiale/yangchun/AreaList.vue +1 -1
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
2
|
-
gradle.version=5
|
|
1
|
+
#Wed Jul 09 14:51:09 CST 2025
|
|
2
|
+
gradle.version=8.5
|
package/package.json
CHANGED
|
@@ -413,7 +413,7 @@ export default {
|
|
|
413
413
|
}, {resolveMsg: null, rejectMsg: '获取地址失败!'})
|
|
414
414
|
this.sliceArea = []
|
|
415
415
|
req.data.forEach((row) => {
|
|
416
|
-
this.sliceArea.push({label: row.name, value: {name: row.name, code:row.
|
|
416
|
+
this.sliceArea.push({label: row.name, value: {name: row.name, code:row.id}})
|
|
417
417
|
})
|
|
418
418
|
},
|
|
419
419
|
//初始化小区添加小区
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
<div class="col-sm-4 form-group button-range">
|
|
42
42
|
<button class="button_search button_spacing" @click="search()" >查询</button>
|
|
43
43
|
<button class="button_search button_spacing" @click="$parent.$parent.batchDelete()" v-if="this.$login.r.includes('小区批量删除')">批量删除</button>
|
|
44
|
-
<button v-if="!$parent.$parent.f_special"
|
|
44
|
+
<button v-if="!$parent.$parent.f_special && this.$login.r.includes('添加小区')" class="button_new button_spacing" style="width: max-content;" @click="$parent.$parent.add('小区')">添加小区</button>
|
|
45
45
|
<button v-if="$parent.$parent.f_special"class="button_new button_spacing" style="width: max-content;" @click="$parent.$parent.add('单位')">添加单位</button>
|
|
46
46
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
47
47
|
<export-excel :data="$parent.$parent.getCondition"
|
|
Binary file
|