apply-clients 3.5.5-3 → 3.5.5-31
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 +4 -16
- package/package.json +4 -2
- package/src/App.vue +25 -25
- package/src/apply.js +141 -141
- package/src/components/QXClient.js +333 -0
- package/src/components/SignTools.js +65 -0
- package/src/components/product/Function/Service/FunctionServiceControl.vue +497 -497
- package/src/components/product/MaterialsManage/MaterialsBase.vue +181 -181
- package/src/components/product/MaterialsManage/MaterialsManage.vue +60 -60
- package/src/components/product/Process/Processes/contractModel.vue +437 -458
- package/src/components/product/Supervisory/SupervisoryList.vue +452 -452
- package/src/filiale/dingcheng/pc/SupervisoryList.vue +441 -441
- package/src/filiale/fugou/android/AppAddMaterialScience.vue +20 -16
- package/src/filiale/fugou/android/AppDevicesManagement.vue +3 -1
- package/src/filiale/fugou/android/AppInstallationDetails.vue +2 -1
- package/src/filiale/fugou/android/AppZhihuanManagement.vue +3 -1
- package/src/filiale/fugou/pc/StopApplyList.vue +291 -0
- package/src/filiale/fugou/pc/SupervisoryServiceControl.vue +881 -0
- package/src/filiale/fugou/pc/addressAndUserinfoManagement.vue +1 -1
- package/src/filiale/fugou/pc.js +3 -1
- package/src/filiale/gongyi/android/AppDisclosurerecord.vue +214 -214
- package/src/filiale/gongyi/android/AppInstallationDetails.vue +500 -500
- package/src/filiale/gongyi/android/AppLegacyIssues.vue +309 -309
- package/src/filiale/gongyi/android/AppSign.vue +170 -170
- package/src/filiale/gongyi/android/AppSupplementalAgreement.vue +298 -298
- package/src/filiale/gongyi/android.js +18 -18
- package/src/filiale/gongyi/pc/ApplyUpload.vue +371 -371
- package/src/filiale/gongyi/pc/PcAddLogs.vue +221 -221
- package/src/filiale/gongyi/pc/PcDisclosurerecord.vue +218 -218
- package/src/filiale/gongyi/pc/PcLegacyIssues.vue +309 -309
- package/src/filiale/gongyi/pc/SupervisoryServiceControl.vue +894 -894
- package/src/filiale/gongyi/pc/SupervisoryServiceView.vue +1005 -1005
- package/src/filiale/gongyi/pc/addMaterialScience.vue +575 -575
- package/src/filiale/gongyi/pc/chargeManagement.vue +765 -765
- package/src/filiale/gongyi/pc/supplementalAgreement.vue +277 -277
- package/src/filiale/gongyi/pc.js +24 -24
- package/src/filiale/hongda/pc/SupervisoryList.vue +422 -422
- package/src/filiale/jingyang/pc/SupervisoryList.vue +459 -459
- package/src/filiale/jinhuang/android/AppAddMaterialScience.vue +635 -0
- package/src/filiale/jinhuang/android.js +6 -0
- package/src/filiale/jinhuang/pc/ContractList.vue +220 -0
- package/src/filiale/jinhuang/pc/addMaterialScience.vue +638 -0
- package/src/filiale/jinhuang/pc/addressAndUserinfoManagement.vue +39 -1
- package/src/filiale/jinhuang/pc.js +2 -0
- package/src/filiale/qianneng/pc/Applydetail.vue +417 -417
- package/src/filiale/ruihua/pc/ServiceControl.vue +2 -1
- package/src/filiale/yangchunboneng/android/AppChargeManagement.vue +2 -2
- package/src/filiale/yangchunboneng/android/AppExplorationUser.vue +570 -518
- package/src/filiale/yangchunboneng/android/AppInstallationMaterial.vue +1113 -1087
- package/src/filiale/yangchunboneng/android/AppServiceControl.vue +0 -3
- package/src/filiale/yangchunboneng/android/MaterIialOne.vue +176 -156
- package/src/filiale/yangchunboneng/pc/ApplyChargeList.vue +644 -617
- package/src/filiale/yangchunboneng/pc/ExplorationSelect.vue +592 -547
- package/src/filiale/yangchunboneng/pc/ServiceControl.vue +2112 -2115
- package/src/filiale/yangchunboneng/pc/SupervisoryListNew.vue +684 -683
- package/src/filiale/yangchunboneng/pc/chargeManagement.vue +4 -3
- package/src/main.js +3 -3
- package/~/chatbot/main.py +0 -57
|
@@ -1820,7 +1820,8 @@ events: {
|
|
|
1820
1820
|
// 失去焦点出触发事件
|
|
1821
1821
|
'onchange' (index) {
|
|
1822
1822
|
if (this.show_data.defname === '报装申请' || this.show_data.defname === '信息确认') {
|
|
1823
|
-
|
|
1823
|
+
let f_user_name = this.getLableValue('用户名称')
|
|
1824
|
+
this.setLabelValue("用户名称", f_user_name.trim())
|
|
1824
1825
|
if (
|
|
1825
1826
|
this.show_data.fields[index].label === '区/县' ||
|
|
1826
1827
|
this.show_data.fields[index].label === '街道/乡镇' ||
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
3
|
<div class="col-sm-12 col-xs-12 form-group app-btn">
|
|
4
|
-
<button class="btn btn-info" @click.prevent="showCharge = true">收费</button>
|
|
4
|
+
<button v-show="Vue.user.f_role_name.includes('报建收费')" class="btn btn-info" @click.prevent="showCharge = true">收费</button>
|
|
5
5
|
</div>
|
|
6
6
|
<div class="col-sm-12 col-xs-12">
|
|
7
7
|
<list :model="model" partial='list'>
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
<p class="col-xs-8 text-left input-font">{{ row.f_confirm_date }}</p>
|
|
49
49
|
</div>
|
|
50
50
|
<div class="row">
|
|
51
|
-
<button v-if="row.f_charge_status !== '退款'&& row.f_charge_status !== '作废' && $parent.$parent.isEmpty1(row.f_confirm_person)" style="background-color:#499edf;float: right" class="btn btn-info" @click="$parent.$parent.showConfirmModal(row)">确认收款</button>
|
|
51
|
+
<button v-if="row.f_charge_status !== '退款'&& row.f_charge_status !== '作废' && $parent.$parent.isEmpty1(row.f_confirm_person)&& Vue.user.f_role_name.includes('确认收款')" style="background-color:#499edf;float: right" class="btn btn-info" @click="$parent.$parent.showConfirmModal(row)">确认收款</button>
|
|
52
52
|
</div>
|
|
53
53
|
</div>
|
|
54
54
|
</div>
|