sale-client 3.6.561 → 3.6.562
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/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/package.json +1 -1
- package/src/components/chargeNew/thirdSurplus.vue +17 -12
- package/.gradle/8.10/checksums/checksums.lock +0 -0
- package/.gradle/8.10/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.10/fileChanges/last-build.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.10/gc.properties +0 -0
- package/.gradle/file-system.probe +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Wed Jun 25 17:54:33 CST 2025
|
|
2
2
|
gradle.version=5.2.1
|
package/package.json
CHANGED
|
@@ -179,6 +179,7 @@
|
|
|
179
179
|
<article slot="modal-body" class="modal-body">
|
|
180
180
|
<file-upload class="my-file-uploader " name="UploadFile" class="btn btn-success" style="border-radius: 2px;"
|
|
181
181
|
action="rs/file/uploadFile" tagname="调价导入" v-ref:file :headers="headers" multiple></file-upload>
|
|
182
|
+
<button class="button_clear btn-gn" style="margin-top: 10px;background-color: #6aa6e2;" @click="downloadFiles()">模板下载
|
|
182
183
|
</article>
|
|
183
184
|
<footer slot="modal-footer" class="modal-footer">
|
|
184
185
|
</footer>
|
|
@@ -190,7 +191,7 @@ import Vue from 'vue'
|
|
|
190
191
|
|
|
191
192
|
export default {
|
|
192
193
|
title: '调价导入',
|
|
193
|
-
data() {
|
|
194
|
+
data () {
|
|
194
195
|
return {
|
|
195
196
|
model: new PagedList('rs/sql/getsurplus', 20, {items: '"*"', tablename: '"t_meterinfo"', orderitem: '"id"'}),
|
|
196
197
|
criteriaShow: false,
|
|
@@ -213,18 +214,22 @@ export default {
|
|
|
213
214
|
show: false
|
|
214
215
|
}
|
|
215
216
|
},
|
|
216
|
-
ready() {
|
|
217
|
+
ready () {
|
|
217
218
|
this.search()
|
|
218
219
|
},
|
|
219
220
|
|
|
220
221
|
methods: {
|
|
221
|
-
clear() {
|
|
222
|
+
clear () {
|
|
222
223
|
Object.keys(this.$refs.paged.$refs.criteria.model).forEach((key) => {
|
|
223
224
|
this.$refs.paged.$refs.criteria.model[key] = []
|
|
224
225
|
})
|
|
225
226
|
this.deleteShow = false
|
|
226
227
|
},
|
|
227
|
-
|
|
228
|
+
downloadFiles () {
|
|
229
|
+
let downurl = 'rs/downloadfile/file?filename=调价补差导入模板'
|
|
230
|
+
this.$downFile(downurl, '调价补差导入模板.xlsx')
|
|
231
|
+
},
|
|
232
|
+
delete () {
|
|
228
233
|
if (this.ids.length !== 0) {
|
|
229
234
|
this.$refs.paged.$refs.criteria.condition = this.$refs.paged.$refs.criteria.condition + 'and id in (' + this.ids + ')'
|
|
230
235
|
}
|
|
@@ -240,14 +245,14 @@ export default {
|
|
|
240
245
|
}
|
|
241
246
|
})
|
|
242
247
|
},
|
|
243
|
-
deleteAdjustImport(condition) {
|
|
248
|
+
deleteAdjustImport (condition) {
|
|
244
249
|
console.log(condition)
|
|
245
250
|
return this.$resetpost('rs/logic/deleteAdjustImport', {condition: condition}, {
|
|
246
251
|
resolveMsg: '删除成功',
|
|
247
252
|
rejectMsg: '删除失败'
|
|
248
253
|
})
|
|
249
254
|
},
|
|
250
|
-
isAll(page) {
|
|
255
|
+
isAll (page) {
|
|
251
256
|
// console.log(this.model.ids)
|
|
252
257
|
if (this.pages.includes(page)) { // 已添加,取消动作
|
|
253
258
|
// 从ids中删除本页所有数据的ids
|
|
@@ -260,7 +265,7 @@ export default {
|
|
|
260
265
|
this.addOrRemove(true)
|
|
261
266
|
}
|
|
262
267
|
},
|
|
263
|
-
addOrRemove(is) {
|
|
268
|
+
addOrRemove (is) {
|
|
264
269
|
let that = this
|
|
265
270
|
if (is) { // 添加本页所有数据到ids中
|
|
266
271
|
this.ids = []
|
|
@@ -278,13 +283,13 @@ export default {
|
|
|
278
283
|
})
|
|
279
284
|
}
|
|
280
285
|
},
|
|
281
|
-
hidden() {
|
|
286
|
+
hidden () {
|
|
282
287
|
this.criteriaShow = !this.criteriaShow
|
|
283
288
|
},
|
|
284
|
-
search() {
|
|
289
|
+
search () {
|
|
285
290
|
this.$refs.paged.$refs.criteria.search()
|
|
286
291
|
},
|
|
287
|
-
selfSearch(args) {
|
|
292
|
+
selfSearch (args) {
|
|
288
293
|
if (!this.f_orgid) {
|
|
289
294
|
this.getorgCur([this.$login.f.orgid])
|
|
290
295
|
}
|
|
@@ -299,14 +304,14 @@ export default {
|
|
|
299
304
|
}
|
|
300
305
|
},
|
|
301
306
|
|
|
302
|
-
getorgCur(val) {
|
|
307
|
+
getorgCur (val) {
|
|
303
308
|
console.log('组织事件返回。。', val[0])
|
|
304
309
|
this.f_orgid = this.$login.convertToIn(val)
|
|
305
310
|
this.f_filialeids = val[0]
|
|
306
311
|
this.$parent.f_filialeid = val[0]
|
|
307
312
|
this.search()
|
|
308
313
|
},
|
|
309
|
-
importFile() {
|
|
314
|
+
importFile () {
|
|
310
315
|
this.show = true
|
|
311
316
|
}
|
|
312
317
|
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|