sale-client 3.5.247 → 3.5.249
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/revenue/third/{/346/227/245/347/205/247 → rizhao}/transferAuditCenter.vue +1 -1
- package/src/components/revenue/third/{/346/227/245/347/205/247 → rizhao}/transferAuditDisposeBasics.vue +4 -4
- package/src/filiale/ningjin/CardMeterCenter.vue +908 -0
- package/src/filiale/ningjin/ChangeMeter.vue +979 -0
- package/src/filiale/ningjin/ChargeRecordQuery.vue +100 -0
- package/src/filiale/ningjin/FileUserFiles.vue +1017 -0
- package/src/filiale/ningjin/FilesManage/UserEssentialInfoTest.vue +321 -0
- package/src/filiale/ningjin/HandplanQuery.vue +1200 -0
- package/src/filiale/ningjin/IOTMeterCenter.vue +806 -0
- package/src/filiale/ningjin/MeterReadAudit.vue +347 -0
- package/src/filiale/ningjin/MeterinfoTest.vue +921 -0
- package/src/filiale/ningjin/NoCardMeterCenter.vue +464 -0
- package/src/filiale/ningjin/ReplaceCardManage.vue +423 -0
- package/src/filiale/ningjin/Userinfo.vue +180 -0
- package/src/filiale/ningjin/common/userinfo_detail/ic_detail/RecordQueryUser.vue +249 -0
- package/src/filiale/ningjin/machineDown.vue +1112 -0
- package/src/filiale/ningjin/machineHand.vue +2068 -0
- package/src/filiale/ningjin/refund/IOTRefund.vue +244 -0
- package/src/filiale/ningjin/refund/RefundManage.vue +28 -0
- package/src/filiale/ningjin/refund/machineRefund.vue +200 -0
- package/src/filiale/ningjin/sale.js +36 -0
- package/src/filiale/shanxian/ChangeMeter.vue +968 -0
- package/src/filiale/shanxian/OtherChargeNew.vue +550 -0
- package/src/filiale/shanxian/ResetMeter.vue +969 -0
- package/src/filiale/shanxian/TransferManage.vue +18 -16
- package/src/filiale/shanxian/sale.js +6 -0
- package/src/main.js +27 -27
- package/src/sale.js +3 -3
- /package/src/components/revenue/third/{/346/227/245/347/205/247/transferAudit.vue" → rizhao/transferAudit.vue} +0 -0
package/package.json
CHANGED
package/src/components/revenue/third/{/346/227/245/347/205/247 → rizhao}/transferAuditCenter.vue
RENAMED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
value: data.val
|
|
44
44
|
})
|
|
45
45
|
try {
|
|
46
|
-
await this.$resetget(`http://193.168.1.50:
|
|
46
|
+
await this.$resetget(`http://193.168.1.50:8210/third/rs/content/images?path=${data.val.f_userinfo_code}`, {resolveMsg: null, rejectMsg: '获取数据错误!'})
|
|
47
47
|
// await this.$resetget(`http://127.0.0.1:8091/rs/content/images?path=${data.val.f_userinfo_code}`, {resolveMsg: null, rejectMsg: '获取数据错误!'})
|
|
48
48
|
.then(res => {
|
|
49
49
|
console.log('离谱啊', res)
|
|
@@ -87,8 +87,9 @@
|
|
|
87
87
|
placeholder="备注">
|
|
88
88
|
</div>
|
|
89
89
|
<div v-for="image in images" class="imgBox">
|
|
90
|
-
<span>用户{{row.value.f_newuser_name}}的过户资料</span>
|
|
91
|
-
<img :src="'data:image/'+'
|
|
90
|
+
<span style="">用户{{row.value.f_newuser_name}}的过户资料</span>
|
|
91
|
+
<!-- <img :src="'data:image/'+'pdf'+';base64,'+image" width="50%"/>-->
|
|
92
|
+
<embed :src="'data:application/pdf;base64,'+image" type="application/pdf" width="100%" height="600px" />
|
|
92
93
|
</div>
|
|
93
94
|
</div>
|
|
94
95
|
|
|
@@ -180,7 +181,6 @@
|
|
|
180
181
|
rejectMsg: '审核失败!!'
|
|
181
182
|
}).then((res) => {
|
|
182
183
|
if (res.data.code === 200) {
|
|
183
|
-
this.$resetpost('rs/logic/transferPass', row, {resolveMsg: '推送成功', rejectMsg: '推送失败!!'})
|
|
184
184
|
this.$showAlert('预约成功审核成功!!', 'success', 2000)
|
|
185
185
|
} else {
|
|
186
186
|
this.$showAlert('预约成功审核失败!!', 'danger', 2000)
|
|
@@ -215,6 +215,6 @@
|
|
|
215
215
|
}
|
|
216
216
|
.imgBox{
|
|
217
217
|
height: auto;
|
|
218
|
-
margin-bottom:
|
|
218
|
+
margin-bottom: 60px;
|
|
219
219
|
}
|
|
220
220
|
</style>
|