apply-clients 5.0.35-93 → 5.0.35-94
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 +1 -1
- package/src/components/product/EngineeringSupervisory/EngineeringApplyStopInfo.vue +1 -1
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryList.vue +1 -1
- package/src/components/product/Function/functions/InstallFee.vue +2 -2
- package/src/components/product/Process/ExplorationSelect.vue +6 -0
- package/src/components/product/Process/Processes/Service/ServiceControl.vue +1 -0
package/package.json
CHANGED
|
@@ -754,9 +754,9 @@
|
|
|
754
754
|
this.addItem.f_charge_collectors = this.$login.f.name
|
|
755
755
|
this.addItem.f_charge_date = this.model.f_charge_date
|
|
756
756
|
this.addItem.f_charge_remarks = this.model.f_charge_remarks
|
|
757
|
-
if(this.model.f_payment_account
|
|
757
|
+
if(this.model.f_payment_account==='安泰'){
|
|
758
758
|
this.addItem.f_filiale ='燃气公司.安泰天然气'
|
|
759
|
-
}if(this.model.f_payment_account
|
|
759
|
+
} else if(this.model.f_payment_account==='欣泰'){
|
|
760
760
|
this.addItem.f_filiale ='欣泰工程公司'
|
|
761
761
|
}else{
|
|
762
762
|
this.addItem.f_filiale='迪泰公司'
|
|
@@ -156,6 +156,9 @@
|
|
|
156
156
|
<th>
|
|
157
157
|
<nobr>当前状态</nobr>
|
|
158
158
|
</th>
|
|
159
|
+
<th>
|
|
160
|
+
<nobr>工程编号</nobr>
|
|
161
|
+
</th>
|
|
159
162
|
<th>
|
|
160
163
|
<nobr>报建编号</nobr>
|
|
161
164
|
</th>
|
|
@@ -208,6 +211,9 @@
|
|
|
208
211
|
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
209
212
|
<nobr><font>{{row.f_sub_state!='完工' ? '未完工' :'完工'}}</font></nobr>
|
|
210
213
|
</td>
|
|
214
|
+
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
215
|
+
<nobr><font>{{row.f_project_number}}</font></nobr>
|
|
216
|
+
</td>
|
|
211
217
|
<td :class="[ row.isover ==='过期' ? 'p1' : row.isbeforeover === '预期提醒'? 'p':'' ]" style="text-align: center;">
|
|
212
218
|
<nobr><font>{{row.f_apply_num}}</font></nobr>
|
|
213
219
|
</td>
|
|
@@ -213,6 +213,7 @@
|
|
|
213
213
|
f_idnumber:this.models2.f_social_credit_code,
|
|
214
214
|
f_apply_source:this.models2.f_apply_source,
|
|
215
215
|
f_sub_state:'未完工',
|
|
216
|
+
f_project_number : this.models2.f_apply_num,
|
|
216
217
|
user:this.$login.f
|
|
217
218
|
}
|
|
218
219
|
await http.load('POST','rs/logic/newaddApplyproduct',{data:data}, {resolveMsg: null, rejectMsg: '转发失败,请联系开发人员'})
|