sale-client 3.6.18 → 3.6.20

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.18",
3
+ "version": "3.6.20",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/App.vue CHANGED
@@ -10,12 +10,8 @@
10
10
  </template>
11
11
 
12
12
  <script>
13
- import Vue from 'vue'
14
13
 
15
14
  export default {
16
- ready () {
17
- Vue.config.silent = true
18
- Vue.mmType = 'AES'
19
- }
15
+ ready () {}
20
16
  }
21
17
  </script>
@@ -3,7 +3,7 @@
3
3
  <div :class="{'basic-main':!useraddressShow,'binary-left':useraddressShow}" v-show="isSelect">
4
4
  <file-address-list @select-changed="selected" v-ref:addresslist :style="style" :select=select :company=company :f_filialeids.sync="f_filialeids"></file-address-list>
5
5
  </div>
6
- <div v-show="useraddressShow" :class="{'basic-main':!isSelect, 'binary-right': isSelect}" style="width:60%">
6
+ <div v-show="useraddressShow" :class="{'basic-main':!isSelect, 'binary-right': isSelect}">
7
7
  <div class="flex">
8
8
  <file-user-address :f_filialeids.sync="f_filialeids" :is_pecial="isSpecial" :isedit="isSelect" :row="row" v-ref:fileuseraddress></file-user-address>
9
9
 
@@ -283,6 +283,13 @@
283
283
  <input class="input_search" condition="f_meternumber ='{}'" placeholder='表号' style="width:60%"
284
284
  type="text" v-model="model.f_meternumber">
285
285
  </div>
286
+ <div
287
+ :class="{'col-sm-2':!$parent.$parent.createFile,'col-sm-4':$parent.$parent.createFile}"
288
+ class="form-group">
289
+ <label class="font_normal_body">备&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;注</label>
290
+ <input class="input_search" condition="f_comments like '%{}%'" placeholder='备注' style="width:60%"
291
+ type="text" v-model="model.f_comments">
292
+ </div>
286
293
  </div>
287
294
  </div>
288
295
  </criteria>
@@ -331,6 +338,9 @@
331
338
  <th v-if="!$parent.$parent.$parent.createFile">
332
339
  <nobr>状态</nobr>
333
340
  </th>
341
+ <th>
342
+ <nobr>备注</nobr>
343
+ </th>
334
344
  <th >
335
345
  <nobr>客户等级</nobr>
336
346
  </th>
@@ -362,6 +372,7 @@
362
372
  <td style="text-align: center;">{{row.f_whether_hairpin}}</td>
363
373
  <td style="text-align: center;" v-if="!$parent.$parent.$parent.createFile">{{row.f_userfiles_address}}</td>
364
374
  <td style="text-align: center;" v-if="!$parent.$parent.$parent.createFile">{{row.f_user_state}}</td>
375
+ <td style="text-align: center;" >{{row.f_comments}}</td>
365
376
  <td style="text-align: center;" >{{row.f_user_level}}</td>
366
377
  <td style="text-align: center;">
367
378
  <button type="button" name="button" class="button_search-2 button_spacing width-60"
@@ -205,7 +205,7 @@
205
205
  </div>
206
206
  </form>
207
207
  </validator>
208
- <modal v-if="showselectaddress" :show.sync="showselectaddress" width="70%" height="80%" title="地址信息" v-ref:modal large backdrop="false">
208
+ <modal v-if="showselectaddress" :show.sync="showselectaddress" width="50%" height="80%" title="地址信息" v-ref:modal large backdrop="false">
209
209
  <article slot="modal-body" class="modal-body" style="height: 700px;padding: 0!important;">
210
210
  <file-address-manage :is-select="isSelect" :fileinfo="addressinfo"
211
211
  @address-valid="doNothing" :showselectaddress.sync="showselectaddress" v-ref:fileaddress ></file-address-manage>
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="flex" style="height: 90%;overflow-y: scroll">
3
- <mix-price-info :data="data" v-if="data.f_meter_type && data.f_price_type === '固定气价'"></mix-price-info>
4
- <stairinfo :data="data" v-if="data.f_meter_type && data.f_price_type === '阶梯气价'"></stairinfo>
3
+ <mix-price-info :data="data" v-if="data.f_price_type === '固定气价'"></mix-price-info>
4
+ <stairinfo :data="data" v-if="data.f_price_type === '阶梯气价'"></stairinfo>
5
5
  <bill-message @setstate="setstate" :state="state" :data="data"></bill-message>
6
6
  <valueaddinfo :data="data" v-ref:valueaddinfo></valueaddinfo>
7
7
  <safe-check :data="data"></safe-check>