sale-client 3.6.465 → 3.6.466

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.465",
3
+ "version": "3.6.466",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -76,6 +76,7 @@
76
76
  "karma-spec-reporter": "0.0.31",
77
77
  "karma-webpack": "^2.0.2",
78
78
  "ldap-clients": "3.0.96",
79
+ "system-clients": "3.3.2",
79
80
  "less": "^2.7.3",
80
81
  "manage-client": "3.1.8-88",
81
82
  "mkdirp": "^0.5.1",
@@ -90,7 +91,6 @@
90
91
  "sinon-chai": "^2.8.0",
91
92
  "style": "0.0.3",
92
93
  "style-loader": "^0.20.3",
93
- "system-clients": "3.3.2",
94
94
  "url-loader": "^0.5.7",
95
95
  "vue-clipboard2": "0.3.1",
96
96
  "vue-hot-reload-api": "^1.2.0",
@@ -292,6 +292,16 @@
292
292
  <input class="input_search" condition="f_meternumber ='{}'" placeholder='表号' style="width:60%"
293
293
  type="text" v-model="model.f_meternumber">
294
294
  </div>
295
+ <div
296
+ :class="{'col-sm-2':!$parent.$parent.createFile,'col-sm-4':$parent.$parent.createFile}"
297
+ class="form-group">
298
+ <label class="font_normal_body">是否更换NFC卡</label>
299
+ <v-select :options='$parent.$parent.changeNFC' :search='true'
300
+ :value.sync="model.changeNFC"
301
+ close-on-select
302
+ condition="f_is_exchangenfc = '{}'" placeholder='是否更换NFC卡'
303
+ v-model='model.changeNFC'></v-select>
304
+ </div>
295
305
  <div
296
306
  :class="{'col-sm-2':!$parent.$parent.createFile,'col-sm-4':$parent.$parent.createFile}"
297
307
  class="form-group">
@@ -619,7 +629,8 @@ let loadParamGem = async function (self) {
619
629
  titleShow: true, //是否显示部分档案信息类的筛选框
620
630
  useoptions: this.$appdata.getParam('使用类型'),
621
631
 
622
- userlevel: this.$appdata.getParam('用户等级') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('用户等级')] : []
632
+ userlevel: this.$appdata.getParam('用户等级') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('用户等级')] : [],
633
+ changeNFC: this.$appdata.getParam('是否更换NFC卡') ? [{label: '全部', value: ''}, ...this.$appdata.getParam('是否更换NFC卡')] : []
623
634
  }
624
635
  },
625
636
  ready () {
@@ -411,6 +411,7 @@
411
411
  await this.$resetpost('rs/logic/iot_saveInstruct', {data: datas},
412
412
  {warnMsg: `确定要进行${msg}操作吗?`, resolveMsg: `${msg}成功`, rejectMsg: `${msg}失败`}).then(res => {
413
413
  this.valve = false
414
+ this.row.f_network_valve = '1'
414
415
  this.operateReason = ''
415
416
  })
416
417
  }