apply-clients 3.5.5-2 → 3.5.5-20

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.
Files changed (49) hide show
  1. package/build/dev-server.js +0 -8
  2. package/package.json +3 -2
  3. package/src/apply.js +2 -0
  4. package/src/components/android/AppTakePic.vue +182 -182
  5. package/src/components/product/Material/MaterialDetailed.vue +268 -268
  6. package/src/components/product/Process/Processes/contractModel.vue +424 -0
  7. package/src/components/product/ServiceView.vue +1028 -1028
  8. package/src/filiale/fugou/android/AppAddMaterialScience.vue +444 -440
  9. package/src/filiale/fugou/android/AppDevicesManagement.vue +521 -519
  10. package/src/filiale/fugou/android/AppInstallationDetails.vue +542 -541
  11. package/src/filiale/fugou/android/AppServiceControl.vue +1836 -1836
  12. package/src/filiale/fugou/android/AppZhihuanManagement.vue +3 -1
  13. package/src/filiale/fugou/android/printCharge.vue +162 -162
  14. package/src/filiale/fugou/android.js +16 -16
  15. package/src/filiale/fugou/pc/ExplorationSelect.vue +525 -525
  16. package/src/filiale/fugou/pc/ServiceControl.vue +1705 -1705
  17. package/src/filiale/fugou/pc/ServiceView.vue +941 -941
  18. package/src/filiale/fugou/pc/StopApplyList.vue +291 -0
  19. package/src/filiale/fugou/pc/SupervisoryServiceControl.vue +881 -0
  20. package/src/filiale/fugou/pc/addressAndUserinfoManagement.vue +1 -1
  21. package/src/filiale/fugou/pc/devicesManagement.vue +483 -483
  22. package/src/filiale/fugou/pc/printChargepc.vue +148 -148
  23. package/src/filiale/fugou/pc.js +3 -1
  24. package/src/filiale/gongyi/android/AppAddMaterialScience.vue +493 -493
  25. package/src/filiale/jinhuang/android/AppAddMaterialScience.vue +634 -0
  26. package/src/filiale/jinhuang/android.js +6 -0
  27. package/src/filiale/jinhuang/pc/addMaterialScience.vue +632 -0
  28. package/src/filiale/jinhuang/pc/addressAndUserinfoManagement.vue +39 -1
  29. package/src/filiale/jinhuang/pc.js +1 -0
  30. package/src/filiale/qianneng/android/AppChargeManagement.vue +686 -686
  31. package/src/filiale/qianneng/android.js +15 -15
  32. package/src/filiale/qianneng/pc/ApplyMaterialDetailed.vue +261 -261
  33. package/src/filiale/qianneng/pc/Applydetail.vue +417 -417
  34. package/src/filiale/qianneng/pc/InstallFunction.vue +188 -188
  35. package/src/filiale/qianneng/pc.js +29 -29
  36. package/src/filiale/ruihua/pc/ServiceControl.vue +1967 -1966
  37. package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +520 -520
  38. package/src/filiale/yangchunboneng/android/AppDevicesManagement.vue +645 -645
  39. package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1115 -1087
  40. package/src/filiale/yangchunboneng/android/AppServiceControl.vue +1703 -1706
  41. package/src/filiale/yangchunboneng/android/MaterIialOne.vue +176 -156
  42. package/src/filiale/yangchunboneng/pc/ApplyChargeList.vue +644 -617
  43. package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +30 -0
  44. package/src/filiale/yangchunboneng/pc/ServiceControl.vue +1 -4
  45. package/src/filiale/yangchunboneng/pc/ServiceView.vue +1007 -1007
  46. package/src/filiale/yangchunboneng/pc/SupervisoryList.vue +605 -605
  47. package/src/filiale/yangchunboneng/pc/SupervisoryListNew.vue +1 -0
  48. package/src/filiale/yangchunboneng/pc/chargeManagement.vue +1053 -1052
  49. package/src/filiale/yangchunboneng/pc/devicesManagement.vue +574 -574
@@ -30,6 +30,7 @@
30
30
  @click="$parent.$parent.$parent.showFileModal()">导入</button>
31
31
  <a type="button" class="btn btn-info head-but"
32
32
  href="/apply/download/excel/批量导入.xlsx" download>模板下载</a>
33
+ <button class="button_new button_spacing" style="width: max-content" @click="$parent.$parent.$parent.add('民用')">添加地址</button>
33
34
  </th>
34
35
  </tr>
35
36
  </template>
@@ -99,13 +100,37 @@
99
100
  </article>
100
101
  <footer slot="modal-footer" class="modal-footer"></footer>
101
102
  </modal>
103
+
104
+ <!-- 添加民用弹窗 -->
105
+ <modal :show.sync="showUserAddress" large backdrop="false" :width="900">
106
+ <header slot="modal-header" class="modal-header">
107
+ <button type="button" class="close" @click="closeUserAddress"><span>&times;</span></button>
108
+ <h4 class="modal-title">添加民用地址</h4>
109
+ </header>
110
+ <article slot="modal-body" class="modal-body">
111
+ <user-address
112
+ :f_filialeids="selectdata.f_filialeid || this.$login.f.orgid"
113
+ :usertype="false"
114
+ :onedata="'more'"
115
+ :row="{}"
116
+ :operation="'add'"
117
+ @cancel="closeUserAddress"
118
+ @confirm="closeUserAddress"
119
+ ></user-address>
120
+ </article>
121
+ <footer slot="modal-footer" class="modal-footer" style="display: none"></footer>
122
+ </modal>
102
123
  </template>
103
124
  <script>
104
125
  import {PagedList} from 'vue-client'
105
126
  import {HttpResetClass} from 'vue-client'
127
+ import UserAddress from 'address-client/src/components/UserAddress.vue'
106
128
 
107
129
  export default {
108
130
  title: '地址管理',
131
+ components: {
132
+ UserAddress
133
+ },
109
134
  props: {
110
135
  selectdata: {
111
136
  type: Object
@@ -124,13 +149,23 @@
124
149
  f_process_id: this.selectdata.f_process_id
125
150
  }
126
151
  }),
127
- showWork: false
152
+ showWork: false,
153
+ showUserAddress: false
128
154
  }
129
155
  },
130
156
  ready () {
131
157
  this.search()
132
158
  },
133
159
  methods: {
160
+ //添加方法
161
+ add(val){
162
+ if(val === '民用') {
163
+ this.showUserAddress = true
164
+ }
165
+ this.$refs.paged.$refs.grid.selectStore.selected = null
166
+ this.$dispatch('add',val)
167
+ this.showrightchange = false;
168
+ },
134
169
  showFileModal() {
135
170
  this.showFile = !this.showFile
136
171
  },
@@ -144,6 +179,9 @@
144
179
  // 将选的文件清空
145
180
  this.$refs.file.$el.querySelector('input').value = ''
146
181
  this.search()
182
+ },
183
+ closeUserAddress() {
184
+ this.showUserAddress = false
147
185
  }
148
186
  },
149
187
  events: {
@@ -3,6 +3,7 @@ import Vue from 'vue'
3
3
  let specialComp = {
4
4
  'apply-charge-management-new': (resolve) => { require(['./pc/chargeManagementNew'], resolve) },
5
5
  'apply-address-userinfo-management': (resolve) => { require(['./pc/addressAndUserinfoManagement'], resolve) },
6
+ 'add-material-science': (resolve) => { require(['./pc/addMaterialScience'], resolve) },
6
7
  'service-control': (resolve) => { require(['./pc/ServiceControl.vue'], resolve) }
7
8
  }
8
9
  exports.specialComp = specialComp