sale-client 3.6.341 → 3.6.342
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/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/package.json +1 -1
- package/src/components/charge/business/OtherChargeAudit.vue +5 -3
- package/src/components/common/userinfo_detail/ic_detail/HandQueryUser.vue +1 -1
- package/src/filiale/yangchun/HandplanQuery.vue +1403 -0
- package/src/filiale/yangchun/machineHand.vue +2157 -0
- package/src/filiale/yangchun/sale.js +4 -0
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -163,7 +163,9 @@ export default {
|
|
|
163
163
|
}
|
|
164
164
|
},
|
|
165
165
|
ready () {
|
|
166
|
-
|
|
166
|
+
setTimeout(()=>{
|
|
167
|
+
this.search()
|
|
168
|
+
},300)
|
|
167
169
|
},
|
|
168
170
|
methods: {
|
|
169
171
|
loadMeterBooks () {
|
|
@@ -211,7 +213,7 @@ export default {
|
|
|
211
213
|
}
|
|
212
214
|
},
|
|
213
215
|
async success (row) {
|
|
214
|
-
let res = await this.$showMessage('
|
|
216
|
+
let res = await this.$showMessage('确定审核通过吗?操作后将不可取消', ['confirm', 'cancel'])
|
|
215
217
|
if (res === 'confirm') {
|
|
216
218
|
row['f_audit_person'] = this.$login.f.name
|
|
217
219
|
let data = {
|
|
@@ -247,7 +249,7 @@ export default {
|
|
|
247
249
|
}
|
|
248
250
|
},
|
|
249
251
|
async faild (row) {
|
|
250
|
-
let res = await this.$showMessage('
|
|
252
|
+
let res = await this.$showMessage('确定审核不通过吗?操作后将不可取消', ['confirm', 'cancel'])
|
|
251
253
|
if (res === 'confirm') {
|
|
252
254
|
row['f_audit_person'] = this.$login.f.name
|
|
253
255
|
let data = {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
|
|
53
53
|
<div style="float: right">
|
|
54
54
|
<button @click="search()" class="button_search" style="margin-right: 10px" v-el:cba>查询</button>
|
|
55
|
-
<print-data :defaultfield="$parent.$parent.defaultfield" :field="$parent.$parent.fields" :
|
|
55
|
+
<print-data :defaultfield="$parent.$parent.defaultfield" :field="$parent.$parent.fields" :model="$parent.$parent.printModel"
|
|
56
56
|
@print-data="$parent.$parent.print()"
|
|
57
57
|
:starthead="$parent.$parent.starthead"
|
|
58
58
|
titletable="预存气费打印明细"
|