system-clients 3.1.90 → 3.1.92-test
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
CHANGED
@@ -296,6 +296,7 @@ import {HttpResetClass, PagedList} from 'vue-client'
|
|
296
296
|
this.model.f_phone = row.f_phone
|
297
297
|
this.model.f_state = row.f_state
|
298
298
|
this.model.f_comments=row.f_comments
|
299
|
+
this.model.f_param_id=row.f_param_id
|
299
300
|
// this.model.f_username=row.f_username
|
300
301
|
this.model.id = row.id
|
301
302
|
this.model.f_filialeids=row.f_filialeids
|
@@ -309,6 +310,7 @@ import {HttpResetClass, PagedList} from 'vue-client'
|
|
309
310
|
this.model.f_machine_number = ''
|
310
311
|
this.model.f_state = '正常'
|
311
312
|
this.model.f_phone = ''
|
313
|
+
this.model.f_param_id = ''
|
312
314
|
this.model.f_address = ''
|
313
315
|
this.model.f_filialeids=''
|
314
316
|
this.model.f_orgid=''
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<template>
|
2
|
-
<div class="flex-row" v-if="
|
2
|
+
<div class="flex-row" v-if="$login.r.includes('POS参数管理')">
|
3
3
|
<tab-button :button="false" :class="{'basic-main':!isChange&&!isParamChange,'binary-left':isChange||isParamChange}">
|
4
4
|
<tabs header="设备管理">
|
5
5
|
<pos-list :row="row" @dblclick="selected" style="width:auto;" :f_filialeid.sync="f_filialeids"
|
@@ -15,7 +15,7 @@
|
|
15
15
|
v-ref:addbox></pos-add>
|
16
16
|
</div>
|
17
17
|
</div>
|
18
|
-
<pos-manage v-if="
|
18
|
+
<pos-manage v-if="!$login.r.includes('POS参数管理')"></pos-manage>
|
19
19
|
</template>
|
20
20
|
|
21
21
|
<script>
|