system-clients 3.2.89-temp → 3.2.90-temp
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/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/package.json +1 -1
- package/src/filiale/bayan/PosAdd.vue +7 -6
- package/src/filiale/bayan/PosList.vue +10 -4
- package/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
Binary file
|
@@ -1,2 +1,2 @@
|
|
1
|
-
#
|
2
|
-
gradle.version=
|
1
|
+
#Fri Dec 20 09:28:00 CST 2024
|
2
|
+
gradle.version=8.5
|
package/package.json
CHANGED
@@ -74,11 +74,12 @@
|
|
74
74
|
:initresid="initresid">
|
75
75
|
</res-select>
|
76
76
|
</div>
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
77
|
+
|
78
|
+
</div>
|
79
|
+
<div class="col-sm-12 form-group" :class="{'has-error': $v.f_address.required}">
|
80
|
+
<label class="font_normal_body"> 放置地点 </label>
|
81
|
+
<textarea class="input_textarea" style="width: 80%" v-model="model.f_address" placeholder="所在地"
|
82
|
+
v-validate:f_address="{required: true}" rows="2"></textarea>
|
82
83
|
</div>
|
83
84
|
<div class="col-sm-12 form-group">
|
84
85
|
<label class="font_normal_body " >  备注  </label>
|
@@ -346,7 +347,7 @@ export default {
|
|
346
347
|
this.model.f_depname = row.f_depname
|
347
348
|
this.initresid = [row.f_depid]
|
348
349
|
},
|
349
|
-
initModel
|
350
|
+
initModel() {
|
350
351
|
delete this.model.id
|
351
352
|
this.model.f_terminal_number = ''
|
352
353
|
this.model.f_terminal_name = ''
|
@@ -88,14 +88,17 @@
|
|
88
88
|
<th style="text-align:center;white-space:nowrap;">序号</th>
|
89
89
|
<th style="text-align:center;white-space:nowrap;">设备编号</th>
|
90
90
|
<th style="text-align:center;white-space:nowrap;" v-show="!$parent.$parent.$parent.isshowless">设备类型</th>
|
91
|
+
<th style="text-align:center;white-space:nowrap;">MAC号</th>
|
92
|
+
<th style="text-align:center;white-space:nowrap;">机器编号</th>
|
91
93
|
<th style="text-align:center;white-space:nowrap;">设备名称</th>
|
92
|
-
|
94
|
+
<th style="text-align:center;white-space:nowrap;">公司</th>
|
93
95
|
<th style="text-align:center;white-space:nowrap;">所属部门</th>
|
94
|
-
<th style="text-align:center;white-space:nowrap;"
|
96
|
+
<th style="text-align:center;white-space:nowrap;">设备负责人</th>
|
95
97
|
<th style="text-align:center;white-space:nowrap;">状态</th>
|
96
98
|
<th style="text-align:center;white-space:nowrap;">联系电话</th>
|
97
|
-
<th style="text-align:center;white-space:nowrap;"
|
99
|
+
<th style="text-align:center;white-space:nowrap;">放置地点</th>
|
98
100
|
<th style="text-align:center;white-space:nowrap;">所属银行</th>
|
101
|
+
<th style="text-align:center;white-space:nowrap;">所属参数</th>
|
99
102
|
<!-- <th style="text-align:center;white-space:nowrap;" v-show="!$parent.$parent.$parent.isshowless">操作时间</th>-->
|
100
103
|
<!-- <th style="text-align:center;white-space:nowrap;">使用人员</th>-->
|
101
104
|
<th style="text-align:center;white-space:nowrap;">备注</th>
|
@@ -110,8 +113,10 @@
|
|
110
113
|
<td style="text-align:center;white-space:nowrap;">{{$index+1}}</td>
|
111
114
|
<td style="text-align:center;white-space:nowrap;"><span title="点击查看历史" @click="$parent.$parent.$parent.abcd(row)"><a>{{row.f_terminal_number}}</a></span></td>
|
112
115
|
<td style="text-align:center;white-space:nowrap;" v-show="!$parent.$parent.$parent.isshowless">{{row.f_equipment_type}}</td>
|
116
|
+
<td style="text-align:center;white-space:nowrap;">{{row.f_mac_number}}</td>
|
117
|
+
<td style="text-align:center;white-space:nowrap;">{{row.f_machine_number}}</td>
|
113
118
|
<td style="text-align:center;white-space:nowrap;">{{row.f_terminal_name}}</td>
|
114
|
-
|
119
|
+
<td style="text-align:center;white-space:nowrap;">{{row.f_orgname}}</td>
|
115
120
|
<td style="text-align:center;white-space:nowrap;">{{row.f_depname}}</td>
|
116
121
|
<td style="text-align:center;white-space:nowrap;">{{row.f_operator}}</td>
|
117
122
|
|
@@ -119,6 +124,7 @@
|
|
119
124
|
<td style="text-align:center;white-space:nowrap;">{{row.f_phone}}</td>
|
120
125
|
<td style="text-align:center;white-space:nowrap;">{{row.f_address}}</td>
|
121
126
|
<td style="text-align:center;white-space:nowrap;">{{row.f_bank_name}}</td>
|
127
|
+
<td style="text-align:center;white-space:nowrap;">{{row.f_param_id}}</td>
|
122
128
|
<!-- <td style="text-align:center;white-space:nowrap;" v-show="!$parent.$parent.$parent.isshowless">{{row.f_appVer}}</td>-->
|
123
129
|
<!-- <td style="text-align:center;white-space:nowrap;" >{{row.f_username}}</td>-->
|
124
130
|
<td style="text-align:center;white-space:nowrap;">{{row.f_comments}}</td>
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
Binary file
|