apply-clients 3.3.92 → 3.3.94-2
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/build/dev-server.js +5 -38
- package/package.json +1 -1
- package/src/App.vue +20 -22
- package/src/components/android/AppServiceView.vue +20 -10
- package/src/components/android/AppSign.vue +143 -151
- package/src/components/android/Process/AppExplorationUser.vue +495 -495
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +317 -311
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +30 -2
- package/src/components/product/Material/MaterialDetailed.vue +0 -11
- package/src/main.js +26 -27
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
</div>
|
|
38
38
|
</div>
|
|
39
39
|
<div class="row" v-for="(i,row) in defnames">
|
|
40
|
-
<div :class="row.id === selectdata.actid ? 'item selectIndex' : 'item'">
|
|
40
|
+
<div :class="row.id === selectdata.actid ? 'item selectIndex' : 'item'" @click="shouju(row)">
|
|
41
41
|
{{row.defname}}
|
|
42
42
|
<span v-if="row.state === '结束'">({{ row.person }})</span>
|
|
43
43
|
<span v-if="row.state !== '结束' && row.actorexpression !== null && row.actorexpression.indexOf('PI') === 0">
|
|
@@ -48,6 +48,9 @@
|
|
|
48
48
|
</div>
|
|
49
49
|
<div class="arrow glyphicon glyphicon-menu-down" v-if="i != defnames.length-1" aria-hidden="true"></div>
|
|
50
50
|
</div>
|
|
51
|
+
<div class="row" v-for="(i,row) in shoufeis">
|
|
52
|
+
<apply-print-charge :selectdata="selectdata" :charge="shoufeis[i]" v-ref:print v-if="shouju2"></apply-print-charge>
|
|
53
|
+
</div>
|
|
51
54
|
</div>
|
|
52
55
|
</template>
|
|
53
56
|
|
|
@@ -58,13 +61,38 @@ export default {
|
|
|
58
61
|
props: ['selectdata'],
|
|
59
62
|
data () {
|
|
60
63
|
return {
|
|
61
|
-
defnames: []
|
|
64
|
+
defnames: [],
|
|
65
|
+
shouju2:false,
|
|
66
|
+
shoufeis:[]
|
|
62
67
|
}
|
|
63
68
|
},
|
|
64
69
|
ready () {
|
|
65
70
|
this.initial()
|
|
66
71
|
},
|
|
67
72
|
methods: {
|
|
73
|
+
async shouju(row){
|
|
74
|
+
delete row.id
|
|
75
|
+
row = Object.assign({},this.selectdata,row)
|
|
76
|
+
if(row.defname =='报装缴费'){
|
|
77
|
+
let http = new HttpResetClass()
|
|
78
|
+
let data = {
|
|
79
|
+
tablename: 't_charge_record',
|
|
80
|
+
condition: `f_process_id = '${this.selectdata.f_process_id}'`
|
|
81
|
+
}
|
|
82
|
+
let res = await http.load('POST', 'rs/sql/singleTable', {data:data}, {
|
|
83
|
+
resolveMsg: null,
|
|
84
|
+
rejectMsg: '收费信息查询失败!!!'
|
|
85
|
+
})
|
|
86
|
+
debugger
|
|
87
|
+
if(res.data.length >0){
|
|
88
|
+
this.shoufeis=res.data
|
|
89
|
+
this.shouju2=!this.shouju2
|
|
90
|
+
}else{
|
|
91
|
+
this.$showAlert('该数据没有缴费记录!!!', 'warning', 3000)
|
|
92
|
+
return
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
},
|
|
68
96
|
async initial() {
|
|
69
97
|
// 获取流程节点信息
|
|
70
98
|
let http = new HttpResetClass()
|
|
@@ -80,12 +80,6 @@
|
|
|
80
80
|
v-on:keyup.enter="$parent.$parent.search()"
|
|
81
81
|
condition="ma.f_material_number = '{}'">
|
|
82
82
|
</div>
|
|
83
|
-
<div class="form-group col-sm-3">
|
|
84
|
-
<label class="font_normal_body">材料审核:</label>
|
|
85
|
-
<input type="text" style="width: 60%" class="input_search" placeholder='材料审核' v-model="model.person"
|
|
86
|
-
v-on:keyup.enter="$parent.$parent.search()"
|
|
87
|
-
condition="ac.person = '{}'">
|
|
88
|
-
</div>
|
|
89
83
|
<div class="form-group col-sm-3">
|
|
90
84
|
<label for="startDate" class="font_normal_body">开始时间:</label>
|
|
91
85
|
<datepicker id="startDate" placeholder="开始日期"
|
|
@@ -123,7 +117,6 @@
|
|
|
123
117
|
<th>材料单位</th>
|
|
124
118
|
<th>材料数量</th>
|
|
125
119
|
<th>操作人</th>
|
|
126
|
-
<th>材料审核</th>
|
|
127
120
|
<th>操作时间</th>
|
|
128
121
|
</tr>
|
|
129
122
|
</template>
|
|
@@ -156,9 +149,6 @@
|
|
|
156
149
|
<td style="text-align: center;">
|
|
157
150
|
<nobr><font>{{row.f_operator}}</font></nobr>
|
|
158
151
|
</td>
|
|
159
|
-
<td style="text-align: center;">
|
|
160
|
-
<nobr><font>{{row.person}}</font></nobr>
|
|
161
|
-
</td>
|
|
162
152
|
<td style="text-align: center;">
|
|
163
153
|
<nobr><font>{{row.f_operation_date}}</font></nobr>
|
|
164
154
|
</td>
|
|
@@ -206,7 +196,6 @@ export default {
|
|
|
206
196
|
'f_material_style': '材料型号',
|
|
207
197
|
'f_material_unit': '材料单位',
|
|
208
198
|
'f_material_number': '材料数量',
|
|
209
|
-
'person': '材料审核',
|
|
210
199
|
'f_operator': '操作人',
|
|
211
200
|
'f_operation_date': '操作时间'
|
|
212
201
|
}
|
package/src/main.js
CHANGED
|
@@ -1,27 +1,26 @@
|
|
|
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
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
require('
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
})
|
|
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
|
+
// import applyAndroid from './applyAndroid'
|
|
12
|
+
|
|
13
|
+
all()
|
|
14
|
+
apply()
|
|
15
|
+
// applyAndroid()
|
|
16
|
+
ldap()
|
|
17
|
+
sale()
|
|
18
|
+
material()
|
|
19
|
+
system(false)
|
|
20
|
+
|
|
21
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
22
|
+
require('./expandcss.less')
|
|
23
|
+
new Vue({
|
|
24
|
+
el: 'body',
|
|
25
|
+
components: { App }
|
|
26
|
+
})
|