apply-clients 3.4.98-1 → 3.4.98-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/package.json
CHANGED
|
@@ -143,6 +143,7 @@
|
|
|
143
143
|
<data-grid v-if="$parent.showData" :model="model" partial='list' v-ref:grid class="list_area table_sy">
|
|
144
144
|
<template partial='head'>
|
|
145
145
|
<tr class="title">
|
|
146
|
+
<th style="white-space: nowrap;">操作</th>
|
|
146
147
|
<th style="white-space: nowrap;">序号</th>
|
|
147
148
|
<th style="white-space: nowrap;">工程编号</th>
|
|
148
149
|
<th style="white-space: nowrap;">客户名称</th>
|
|
@@ -156,11 +157,22 @@
|
|
|
156
157
|
<th style="white-space: nowrap;">报建日期</th>
|
|
157
158
|
<th style="white-space: nowrap;">付款笔数</th>
|
|
158
159
|
<th style="white-space: nowrap;">确认付款笔数</th>
|
|
159
|
-
<th style="white-space: nowrap;">操作</th>
|
|
160
160
|
</tr>
|
|
161
161
|
</template>
|
|
162
162
|
<template partial='body'>
|
|
163
163
|
<tr>
|
|
164
|
+
<td style="text-align: center;">
|
|
165
|
+
<dropdown>
|
|
166
|
+
<button @click="$parent.$parent.$parent.checkfuncs(row)" type="button" data-toggle="dropdown" style="border: 0px;background: none;">
|
|
167
|
+
<span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
|
|
168
|
+
</button>
|
|
169
|
+
<ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
|
170
|
+
<li v-for="(index,func) in $parent.$parent.$parent.funcs" v-if="$parent.$parent.$parent.$parent.showFunc(func.personexpression)">
|
|
171
|
+
<a href="#" @click="$parent.$parent.$parent.$parent.func(func,row)">{{func.title}}</a>
|
|
172
|
+
</li>
|
|
173
|
+
</ul>
|
|
174
|
+
</dropdown>
|
|
175
|
+
</td>
|
|
164
176
|
<td style="text-align: center;">
|
|
165
177
|
<nobr>{{$index+1}}</nobr>
|
|
166
178
|
</td>
|
|
@@ -200,18 +212,7 @@
|
|
|
200
212
|
<td style="text-align: center;">
|
|
201
213
|
<nobr>{{row.confirmtotal}}</nobr>
|
|
202
214
|
</td>
|
|
203
|
-
|
|
204
|
-
<dropdown>
|
|
205
|
-
<button @click="$parent.$parent.$parent.checkfuncs(row)" type="button" data-toggle="dropdown" style="border: 0px;background: none;">
|
|
206
|
-
<span class="glyphicon glyphicon-th-list" style="position: inherit;"></span>
|
|
207
|
-
</button>
|
|
208
|
-
<ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
|
|
209
|
-
<li v-for="(index,func) in $parent.$parent.$parent.funcs" v-if="$parent.$parent.$parent.$parent.showFunc(func.personexpression)">
|
|
210
|
-
<a href="#" @click="$parent.$parent.$parent.$parent.func(func,row)">{{func.title}}</a>
|
|
211
|
-
</li>
|
|
212
|
-
</ul>
|
|
213
|
-
</dropdown>
|
|
214
|
-
</td>
|
|
215
|
+
|
|
215
216
|
</tr>
|
|
216
217
|
</template>
|
|
217
218
|
</data-grid>
|
|
@@ -562,8 +562,8 @@
|
|
|
562
562
|
{resolveMsg: null, rejectMsg: '查询失败!!!'}
|
|
563
563
|
)
|
|
564
564
|
for (let i =0;i<res1.data.length;i++){
|
|
565
|
-
if (isEmpty(res1.data[i].f_confirm_person)
|
|
566
|
-
this.$showAlert(`当前${defname}
|
|
565
|
+
if (isEmpty(res1.data[i].f_confirm_person)){
|
|
566
|
+
this.$showAlert(`当前${defname}环节,费用未收费确认,请仔细检查并点击保存`, 'warning', 3000)
|
|
567
567
|
throw null
|
|
568
568
|
}
|
|
569
569
|
}
|
|
@@ -1615,7 +1615,7 @@
|
|
|
1615
1615
|
// let f_room_suffix = f_room ? this.config.f_room_suffix : ''
|
|
1616
1616
|
let f_room_suffix = f_room ? '室' : ''
|
|
1617
1617
|
|
|
1618
|
-
let f_address =
|
|
1618
|
+
let f_address = f_residential_area + f_building + f_building_suffix + f_unit + f_unit_suffix + f_floor + f_floor_suffix + f_room + f_room_suffix
|
|
1619
1619
|
this.setLabelValue("地址", f_address)
|
|
1620
1620
|
}
|
|
1621
1621
|
}
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
@click="$parent.$parent.showConfirmModal(row,'确认收款')"
|
|
114
114
|
>确认收款</button>
|
|
115
115
|
</nobr>
|
|
116
|
-
<nobr v-if="row.f_charge_status !== '退款'&& row.f_charge_status !== '作废' && row.f_confirm_person!=null&& row.f_auditor_person==null">
|
|
116
|
+
<!-- <nobr v-if="row.f_charge_status !== '退款'&& row.f_charge_status !== '作废' && row.f_confirm_person!=null&& row.f_auditor_person==null">
|
|
117
117
|
<button
|
|
118
118
|
type="button"
|
|
119
119
|
name="button"
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
:disabled="$parent.$parent.mark === 1 || row.f_charge_status === '作废'"
|
|
122
122
|
@click="$parent.$parent.showConfirmModal(row,'确认审核')"
|
|
123
123
|
>确认审核</button>
|
|
124
|
-
</nobr
|
|
124
|
+
</nobr>-->
|
|
125
125
|
<nobr v-if="row.f_charge_status !== '退款'">
|
|
126
126
|
<button
|
|
127
127
|
type="button"
|
|
@@ -520,7 +520,7 @@
|
|
|
520
520
|
<button type="button" class="btn btn-primary" @click="ConfirmPayment()">确认收款</button>
|
|
521
521
|
</footer>
|
|
522
522
|
</modal>
|
|
523
|
-
<modal v-if="showauditor" :show.sync="showauditor" v-ref:modal :backdrop="false" title="确认审核">
|
|
523
|
+
<!-- <modal v-if="showauditor" :show.sync="showauditor" v-ref:modal :backdrop="false" title="确认审核">
|
|
524
524
|
<header slot="modal-header" class="modal-header">
|
|
525
525
|
<button type="button" class="close" @click="closeModal"><span>×</span></button>
|
|
526
526
|
<h4 class="modal-title">确认审核</h4>
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
<footer slot="modal-footer" class="modal-footer">
|
|
638
638
|
<button type="button" class="btn btn-primary" @click="ConfirmPayment()">确认收款</button>
|
|
639
639
|
</footer>
|
|
640
|
-
</modal
|
|
640
|
+
</modal>-->
|
|
641
641
|
<modal v-if="showPrint" :show.sync="showPrint" v-ref:modal :large="true" :backdrop="false" title="打印预览">
|
|
642
642
|
<header slot="modal-header" class="modal-header">
|
|
643
643
|
<button type="button" class="close" @click="closeModal"><span>×</span></button>
|
|
@@ -794,7 +794,7 @@ export default {
|
|
|
794
794
|
{resolveMsg: null, rejectMsg: '查询失败!!!'}
|
|
795
795
|
)
|
|
796
796
|
for (let i =0;i<res1.data.length;i++){
|
|
797
|
-
if (isEmpty(res1.data[i].f_confirm_person)
|
|
797
|
+
if (isEmpty(res1.data[i].f_confirm_person)){
|
|
798
798
|
flag = false
|
|
799
799
|
}
|
|
800
800
|
}
|