telephone-clients 3.0.103-84 → 3.0.103-86
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/filiale/wenxi/android/FailureShow.vue +1 -0
- package/src/filiale/wenxi/android/PhoneUpUserinfo.vue +22 -26
- package/src/filiale/wenxi/android/RepairOrderV.vue +1411 -1419
- package/src/filiale/wenxi/android/RepairUserInfo.vue +532 -0
- package/src/filiale/wenxi/pc/GasWork.vue +0 -3
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div class="panel auto">
|
|
5
5
|
<div class="panel-heading" @click="selectVal('基本信息')" style="background-color: #ffffff">
|
|
6
6
|
<span class="spanboder">
|
|
7
|
-
<img src="
|
|
7
|
+
<img src="../../../assets/person.png" style="width: 22px;margin-right: 8px;">基本信息
|
|
8
8
|
<img class="butt3" :src="imgback('基本信息')">
|
|
9
9
|
</span>
|
|
10
10
|
</div>
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
<div class="row auto" style="margin: 5px 0">
|
|
127
127
|
<labe class="righttxt">新 地 址:</labe>
|
|
128
128
|
<!--<input type="text" class="form-control rightipt" readonly v-model="getaddress()" />-->
|
|
129
|
-
<textarea :readonly="addressType=='普通地址'" class="form-control rightipt"
|
|
129
|
+
<textarea :readonly="addressType=='普通地址'" class="form-control rightipt" style="height: 80px"
|
|
130
130
|
v-model="userinfo.addressinfo.f_address"></textarea>
|
|
131
131
|
</div>
|
|
132
132
|
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
<div class="panel auto">
|
|
147
147
|
<div class="panel-heading" @click="selectVal('表具信息')" style="background-color: #ffffff">
|
|
148
148
|
<span class="spanboder">
|
|
149
|
-
<img src="
|
|
149
|
+
<img src="../../../assets/person.png" style="width: 22px;margin-right: 8px;">表具信息
|
|
150
150
|
<img class="butt3" :src="imgback('表具信息')">
|
|
151
151
|
</span>
|
|
152
152
|
</div>
|
|
@@ -159,24 +159,6 @@
|
|
|
159
159
|
class="btn btn-primary" style="width: 15%" @click="scan">扫码
|
|
160
160
|
</button>
|
|
161
161
|
</div>
|
|
162
|
-
|
|
163
|
-
<!--<div class="row auto" style="margin: 5px 0" v-if="userinfo.meterinfo[0].f_meter_classify=='机表'">
|
|
164
|
-
<div class="auto">
|
|
165
|
-
<div class="panel" style="padding: 0px 15px 5px 10px;">
|
|
166
|
-
<div class="panel-body panel-self" style="background-color: #F8F8F8;width: 100%;height: 260px;position: relative">
|
|
167
|
-
<div class="row" style="height: 240px;">
|
|
168
|
-
<div class="col-sm-4">
|
|
169
|
-
<img-self :src="f_meterno_path" alt="表号照片" width="150" height="200"></img-self>
|
|
170
|
-
</div>
|
|
171
|
-
</div>
|
|
172
|
-
<div class="row text-right div-photo" :class="style__">
|
|
173
|
-
<button type="button" name="button" class="btn btn-primary btn-photo" @click="takePic('f_meterno_path', '表号照片')">拍照</button>
|
|
174
|
-
<img src="../../assets/remove.png" :class="style__" @click="delfile('f_meterno_path', this.f_meterno_path)" style="width: 25%;"></img>
|
|
175
|
-
</div>
|
|
176
|
-
</div>
|
|
177
|
-
</div>
|
|
178
|
-
</div>
|
|
179
|
-
</div>-->
|
|
180
162
|
<div class="row auto" style="margin: 5px 0">
|
|
181
163
|
<labe class="righttxt">表 封 号:</labe>
|
|
182
164
|
<input type="text" class="form-control rightipt" v-model="userinfo.meterinfo[0].f_metertitles"/>
|
|
@@ -191,6 +173,20 @@
|
|
|
191
173
|
:options="wz_types"
|
|
192
174
|
close-on-select value-single></v-select>
|
|
193
175
|
</div>
|
|
176
|
+
<div class="row auto" style="margin: 5px 0">
|
|
177
|
+
<labe class="righttxt">表 品 牌:</labe>
|
|
178
|
+
<v-select class="rightipt" :value.sync="userinfo.meterinfo[0].aaaaaaaa"
|
|
179
|
+
v-model="userinfo.meterinfo[0].aaaaaaaa"
|
|
180
|
+
placeholder='请选择'
|
|
181
|
+
:width='wid'
|
|
182
|
+
readonly
|
|
183
|
+
:options="pp_types"
|
|
184
|
+
close-on-select value-single></v-select>
|
|
185
|
+
</div>
|
|
186
|
+
<div class="row auto" style="margin: 5px 0">
|
|
187
|
+
<labe class="righttxt">初始底数:</labe>
|
|
188
|
+
<input type="text" class="form-control rightipt" v-model="userinfo.meterinfo[0].aaaaaaaa"/>
|
|
189
|
+
</div>
|
|
194
190
|
<div class="row auto" style="margin: 5px 0">
|
|
195
191
|
<labe class="righttxt">气表类型:</labe>
|
|
196
192
|
<input type="text" class="form-control rightipt" v-model="userinfo.meterinfo[0].f_meter_classify" readonly/>
|
|
@@ -207,7 +203,7 @@
|
|
|
207
203
|
<div class="panel auto">
|
|
208
204
|
<div class="panel-heading" @click="selectVal('设备信息')" style="background-color: #ffffff">
|
|
209
205
|
|
|
210
|
-
<span class="spanboder"><img src="
|
|
206
|
+
<span class="spanboder"><img src="../../../assets/list.png" style="width: 22px;margin-right: 8px;">设备信息<img
|
|
211
207
|
class="butt3" :src="imgback('设备信息')"></span>
|
|
212
208
|
</div>
|
|
213
209
|
<div class="panel-body" v-show="headername=='设备信息'">
|
|
@@ -308,7 +304,7 @@
|
|
|
308
304
|
|
|
309
305
|
<script>
|
|
310
306
|
import {HttpResetClass} from 'vue-client'
|
|
311
|
-
import * as Util from "
|
|
307
|
+
import * as Util from "../../../components/Util";
|
|
312
308
|
import Vue from 'vue'
|
|
313
309
|
|
|
314
310
|
export default {
|
|
@@ -629,9 +625,9 @@
|
|
|
629
625
|
},
|
|
630
626
|
imgback(header) {
|
|
631
627
|
if (this.headername == header) {
|
|
632
|
-
return require('
|
|
628
|
+
return require('../../../assets/xiangxia1.png')
|
|
633
629
|
} else {
|
|
634
|
-
return require('
|
|
630
|
+
return require('../../../assets/xiangyou1.png')
|
|
635
631
|
}
|
|
636
632
|
this.headername = header
|
|
637
633
|
},
|
|
@@ -994,7 +990,7 @@
|
|
|
994
990
|
|
|
995
991
|
.tit1 {
|
|
996
992
|
/*background: #ffffff url('../../assets/用户姓名.png') no-repeat fixed center;*/
|
|
997
|
-
background-image: url('
|
|
993
|
+
background-image: url('../../../assets/用户姓名.png');
|
|
998
994
|
background-repeat: no-repeat;
|
|
999
995
|
background-position: center;
|
|
1000
996
|
}
|