apply-clients 4.1.74 → 4.1.77
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/package.json +2 -2
- package/src/components/product/Process/ExplorationSelect.vue +4 -1
- package/src/components/product/Process/Processes/InstallationDetails.vue +505 -489
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +322 -2
- package/src/components/product/Process/Processes/chargeManagement.vue +11 -11
- package/src/components/product/Process/Service/ServiceControl.vue +9 -1
- package/src/components/product/Process/ShowBackReason.vue +33 -32
- package/src/components/product/ServiceView.vue +1 -1
- package/src/components/product/Stop/StopApplyList.vue +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apply-clients",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.77",
|
|
4
4
|
"description": "报建前端模块",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"directories": {
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"system-clients": "3.1.87",
|
|
96
96
|
"system-phone": "1.1.18",
|
|
97
97
|
"url-loader": "^0.5.7",
|
|
98
|
-
"vue-client": "1.
|
|
98
|
+
"vue-client": "1.24.39",
|
|
99
99
|
"vue-hot-reload-api": "^1.2.0",
|
|
100
100
|
"vue-html-loader": "^1.0.0",
|
|
101
101
|
"vue-loader": "^8.2.1",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
</div>
|
|
18
18
|
<div class="form-group col-sm-5 button-range">
|
|
19
19
|
<button class="button_new button_spacing" style="width: max-content"
|
|
20
|
-
v-if="
|
|
20
|
+
v-if="$parent.$parent.projectStart"
|
|
21
21
|
@click="$parent.$parent.showModal = !$parent.$parent.showModal">工程发起</button>
|
|
22
22
|
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
23
23
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
@@ -322,6 +322,9 @@
|
|
|
322
322
|
}
|
|
323
323
|
},
|
|
324
324
|
computed: {
|
|
325
|
+
projectStart () {
|
|
326
|
+
return this.$login.r.includes('报建发起')
|
|
327
|
+
}
|
|
325
328
|
},
|
|
326
329
|
watch: {
|
|
327
330
|
'model.rows': {
|