apply-clients 4.1.2 → 4.1.4-weinan

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 (37) hide show
  1. package/index.html +1 -1
  2. package/package.json +7 -5
  3. package/src/apply.js +81 -66
  4. package/src/applyAndroid.js +41 -39
  5. package/src/components/app_apply/AppChargeManagement.vue +619 -0
  6. package/src/components/app_apply/ApplyInfo.vue +56 -56
  7. package/src/components/app_apply/ApplyToDoList.vue +148 -165
  8. package/src/components/app_apply/PlaceControler.vue +258 -258
  9. package/src/components/app_apply/ServiceControl.vue +280 -267
  10. package/src/components/product/ApplyCharge/ApplyChargeList.vue +251 -251
  11. package/src/components/product/Function/InstallInfoSelect.vue +40 -27
  12. package/src/components/product/Function/StopApplyCrrdList.vue +1 -1
  13. package/src/components/product/Function/functions/StopInstall.vue +7 -1
  14. package/src/components/product/Process/ExplorationSelect.vue +82 -59
  15. package/src/components/product/Process/Processes/InstallationDetails.vue +276 -246
  16. package/src/components/product/Process/Processes/UserFireInfo.vue +409 -0
  17. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +1458 -99
  18. package/src/components/product/Process/Processes/addressAndUserinfoManagementPro.vue +1221 -0
  19. package/src/components/product/Process/Processes/chargeManagement.vue +47 -53
  20. package/src/components/product/Process/Processes/devicesDetails.vue +834 -0
  21. package/src/components/product/Process/Processes/materialshoufei.vue +182 -0
  22. package/src/components/product/Process/Processes/printCharge.vue +130 -130
  23. package/src/components/product/Process/Processes/recordcancel.vue +50 -0
  24. package/src/components/product/Process/Processes/selectUserinfo.vue +199 -0
  25. package/src/components/product/Process/Processes/splitMaterial.vue +358 -0
  26. package/src/components/product/Process/Service/ServiceControl.vue +1126 -703
  27. package/src/components/product/Process/ShowBackReason.vue +1 -0
  28. package/src/components/product/ServiceView.vue +82 -35
  29. package/src/components/product/Stop/StopApply.vue +101 -0
  30. package/src/components/product/Stop/StopApplyList.vue +257 -0
  31. package/src/components/product/Supervisory/SupervisoryControl.vue +7 -4
  32. package/src/components/product/Supervisory/SupervisoryList.vue +40 -27
  33. package/src/components/product/Supervisory/SupervisoryhCart.vue +0 -7
  34. package/src/components/product/Test.vue +8 -4
  35. package/src/components/product/VueUtils/ApplyUpload.vue +4 -4
  36. package/src/main.js +25 -23
  37. package/static/images/lefticon//347/237/251/345/275/2421183.png +0 -0
@@ -5,21 +5,21 @@
5
5
  <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
6
  <div class="row">
7
7
  <div class="form-group col-sm-4">
8
- <label class="font_normal_body">项目名称/客户名称/联系人:</label>
9
- <input type="text" class="input_search" v-model="model.f_user_name"
10
- v-on:keyup.enter="search" condition=" (f_entry_name like '%{}%' or f_user_name like '%{}%' or f_contact like '%{}%') " placeholder='三选一输入'>
8
+ <label class="font_normal_body">项目名称:</label>
9
+ <input type="text" class="input_search" v-model="model.f_entry_name"
10
+ v-on:keyup.enter="search" condition=" f_entry_name like '%{}%' " placeholder='请输入'>
11
11
  </div>
12
12
  <div class="form-group col-sm-3">
13
13
  <label class="font_normal_body">报建编号:</label>
14
14
  <input type="text" class="input_search" placeholder='报建编号' v-model="model.f_apply_num"
15
15
  v-on:keyup.enter="search"
16
- condition="f_apply_num = '{}'">
16
+ condition="f_apply_num like '%{}%'">
17
17
  </div>
18
18
  <div class="form-group col-sm-3">
19
19
  <label class="font_normal_body">合同编号:</label>
20
20
  <input type="text" class="input_search" placeholder='合同编号' v-model="model.f_contract_number"
21
21
  v-on:keyup.enter="search"
22
- condition="f_contract_number = '{}'">
22
+ condition="f_contract_number like '%{}%'">
23
23
  </div>
24
24
  <div class="form-group col-sm-2 button-range">
25
25
  <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
@@ -59,17 +59,29 @@
59
59
  close-on-select ></v-select>
60
60
  </div>
61
61
  <div class="form-group col-sm-3">
62
- <label class="font_normal_body">联系电话:</label>
63
- <input type="text" class="input_search" placeholder='联系电话' v-model="model.f_phone"
64
- v-on:keyup.enter="search"
65
- condition="f_phone like '%{}%'">
66
- </div>
67
- <div class="form-group col-sm-3">
68
- <label class="font_normal_body">用户地址:</label>
69
- <input type="text" class="input_search" placeholder='用户地址' v-model="model.f_address"
70
- v-on:keyup.enter="search"
71
- condition="f_address like '%{}%'">
62
+ <label class="font_normal_body">流程状态:</label>
63
+ <v-select
64
+ v-model="model.f_sub_state"
65
+ placeholder='流程状态'
66
+ condition="f_sub_state = '{}'"
67
+ :value.sync="model.f_sub_state"
68
+ :options='$parent.$parent.f_sub_state'
69
+ class="select select_list"
70
+ :value-single="true"
71
+ close-on-select ></v-select>
72
72
  </div>
73
+ <!-- <div class="form-group col-sm-3">-->
74
+ <!-- <label class="font_normal_body">联系电话:</label>-->
75
+ <!-- <input type="text" class="input_search" placeholder='联系电话' v-model="model.f_phone"-->
76
+ <!-- v-on:keyup.enter="search"-->
77
+ <!-- condition="f_phone like '%{}%'">-->
78
+ <!-- </div>-->
79
+ <!-- <div class="form-group col-sm-3">-->
80
+ <!-- <label class="font_normal_body">用户地址:</label>-->
81
+ <!-- <input type="text" class="input_search" placeholder='用户地址' v-model="model.f_address"-->
82
+ <!-- v-on:keyup.enter="search"-->
83
+ <!-- condition="f_address like '%{}%'">-->
84
+ <!-- </div>-->
73
85
  <div class="form-group col-sm-3">
74
86
  <label for="startDate" class="font_normal_body">开始时间:</label>
75
87
  <datepicker id="startDate" placeholder="开始日期"
@@ -100,10 +112,10 @@
100
112
  <tr>
101
113
  <th style="white-space: nowrap;">序号</th>
102
114
  <th style="white-space: nowrap;">报建编号</th>
103
- <th style="white-space: nowrap;">项目名称/客户名称/联系人</th>
115
+ <th style="white-space: nowrap;">项目名称</th>
104
116
  <th style="white-space: nowrap;">合同编号</th>
105
- <th style="white-space: nowrap;">电话</th>
106
- <th style="white-space: nowrap;">地址</th>
117
+ <!-- <th style="white-space: nowrap;">电话</th>-->
118
+ <!-- <th style="white-space: nowrap;">地址</th>-->
107
119
  <th style="white-space: nowrap;">报建类型</th>
108
120
  <th style="white-space: nowrap;">办理环节</th>
109
121
  <th style="white-space: nowrap;">流程状态</th>
@@ -119,17 +131,17 @@
119
131
  <nobr>{{row.f_apply_num}}</nobr>
120
132
  </td>
121
133
  <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
122
- <nobr>{{row.f_entry_name}}/{{row.f_user_name}}/{{row.f_contact}}</nobr>
134
+ <nobr>{{row.f_entry_name}}</nobr>
123
135
  </td>
124
136
  <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
125
137
  <nobr>{{row.f_contract_number}}</nobr>
126
138
  </td>
127
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
128
- <nobr>{{row.f_phone}}</nobr>
129
- </td>
130
- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
131
- <nobr>{{row.f_address}}</nobr>
132
- </td>
139
+ <!-- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">-->
140
+ <!-- <nobr>{{row.f_phone}}</nobr>-->
141
+ <!-- </td>-->
142
+ <!-- <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">-->
143
+ <!-- <nobr>{{row.f_address}}</nobr>-->
144
+ <!-- </td>-->
133
145
  <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
134
146
  <nobr>{{row.f_apply_type}}</nobr>
135
147
  </td>
@@ -164,7 +176,8 @@
164
176
  orgid: this.$login.f.orgid
165
177
  }
166
178
  }),
167
- defnames: [{label: '全部', value: ''}], // 流程节点
179
+ f_sub_state: [{label: '全部', value: ''}, {label: '完工', value: '完工'}, {label: '正在进行', value: '正在进行'}],
180
+ defnames: [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
168
181
  criteriaShow: false
169
182
  }
170
183
  },
@@ -193,7 +206,7 @@
193
206
  this.defnames = [{label: '全部', value: ''}, ...res.data]
194
207
  })
195
208
  } else {
196
- this.defnames = [{label: '全部', value: ''}]
209
+ this.defnames = [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')]
197
210
  }
198
211
  },
199
212
  check (val) {
@@ -48,15 +48,8 @@
48
48
  },
49
49
  //点击获取节点名
50
50
  getdefname(row){
51
- if(row.defname === this.$workflow_vue.start_activity){
52
51
  row = Object.assign({},this.selectdata,row)
53
52
  this.$dispatch('apply', row)
54
- }else if(this.check(row.actorexpression)){
55
- row = Object.assign({},this.selectdata,row)
56
- this.$dispatch('apply', row)
57
- }else{
58
- this.$showMessage("对不起,您没有查看此节点的权限!")
59
- }
60
53
  },
61
54
  // 检测是否有权限
62
55
  check(actorexpression){
@@ -1,7 +1,5 @@
1
1
  <template>
2
- <div class="basic-main" style="height: 100%">
3
- {{{ model }}}
4
- </div>
2
+
5
3
  </template>
6
4
 
7
5
  <script>
@@ -32,5 +30,11 @@
32
30
  </script>
33
31
 
34
32
  <style scoped>
35
-
33
+ .my-swipe .van-swipe-item {
34
+ color: #fff;
35
+ font-size: 20px;
36
+ line-height: 150px;
37
+ text-align: center;
38
+ background-color: #39a9ed;
39
+ }
36
40
  </style>
@@ -35,7 +35,7 @@
35
35
  <div class="right col-sm-7">
36
36
  <p :title="row.f_filename" class="clears"><strong>文件名:</strong>{{row.f_filename}}</p>
37
37
  <p :title="row.f_username" class="clears"><strong>操作员:</strong><span>{{row.f_username}}</span></p>
38
- <p :title="row.fusetype" class="clears"><strong>使用类型:</strong><span>{{row.fusetype}}</span></p>
38
+ <p :title="row.fusetype" class="clears"><strong>文件类型:</strong><span>{{row.fusetype}}</span></p>
39
39
  <p :title="row.f_uploaddate" class="clears"><strong>上传时间:</strong><span>{{row.f_uploaddate}}</span></p>
40
40
  <p :title="row.fremarks" class="clears"><strong>文件说明:</strong>{{row.fremarks}}</p>
41
41
  <p class="clears">
@@ -66,7 +66,7 @@
66
66
  class="select select_list"
67
67
  :value.sync="headers.fusetype"
68
68
  v-model="headers.fusetype"
69
- :options="$appdata.getParam('使用类型')"
69
+ :options="$appdata.getParam('文件类型')"
70
70
  :valueSingle="true"></input-select>
71
71
  </div>
72
72
  </div>
@@ -151,7 +151,7 @@ export default {
151
151
  })
152
152
 
153
153
  for (var i = 0; i < getFile.data.length; i++) {
154
- // 如果使用类型包含导入字样,则是execl文件导入的,不做显示
154
+ // 如果文件类型包含导入字样,则是execl文件导入的,不做显示
155
155
  if(getFile.data[i].fusetype&&(getFile.data[i].fusetype.includes('execl导入'))){
156
156
  getFile.data.splice(i,1)
157
157
  i--
@@ -208,7 +208,7 @@ export default {
208
208
  },
209
209
  computed: {
210
210
  typeOfUse () {
211
- return [{label: '全部', value: ''}, ...this.$appdata.getParam('使用类型')]
211
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('文件类型')]
212
212
  }
213
213
  },
214
214
  events: {
package/src/main.js CHANGED
@@ -1,23 +1,25 @@
1
- import Vue from 'vue'
2
- import App from './App'
3
- import { all } from 'vue-client'
4
- import {ldap} from 'ldap-clients'
5
- import {system} from 'system-clients'
6
- import {sale} from 'sale-client'
7
- import {material} from 'material-client'
8
-
9
- import apply from './apply'
10
-
11
- all()
12
- apply()
13
- ldap()
14
- sale()
15
- material()
16
- system(false)
17
-
18
- require('system-clients/src/styles/less/bootstrap.less')
19
- require('./expandcss.less')
20
- new Vue({
21
- el: 'body',
22
- components: { App }
23
- })
1
+ import Vue from 'vue'
2
+ import App from './App'
3
+ import { all } from 'vue-client'
4
+ import {ldap} from 'ldap-clients'
5
+ import {system} from 'system-clients'
6
+ import {sale} from 'sale-client'
7
+ import {material} from 'material-client'
8
+
9
+ import apply from './apply'
10
+ import applyAndroid from './applyAndroid'
11
+
12
+ applyAndroid()
13
+ all()
14
+ apply()
15
+ ldap()
16
+ sale()
17
+ material()
18
+ system(false)
19
+
20
+ require('system-clients/src/styles/less/bootstrap.less')
21
+ require('./expandcss.less')
22
+ new Vue({
23
+ el: 'body',
24
+ components: { App }
25
+ })