|
@@ -60,7 +60,7 @@
|
|
|
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<div v-show="recordList.length>0 && listForm.status==0" class="fyy-bindfyy-btn">
|
|
|
<form class="mui-input-group">
|
|
|
<div class="mui-input-row mui-checkbox mui-left">
|
|
@@ -211,7 +211,10 @@
|
|
|
if (e.index == 1) {
|
|
|
_this.set_register_examine_form(_this.subForm);
|
|
|
_this.$router.push({
|
|
|
- name: 'MasterCompanyRegisterSelectDevice'
|
|
|
+ name: 'MasterCompanyRegisterSelectDevice',
|
|
|
+ query: {
|
|
|
+ hasSceneId4: _this.hasSceneId4 ? '1' : '0'
|
|
|
+ }
|
|
|
})
|
|
|
}
|
|
|
})
|
|
@@ -236,6 +239,21 @@
|
|
|
window.removeEventListener('scroll', _this.handleScrool);
|
|
|
},
|
|
|
computed: {
|
|
|
+ hasSceneId4: {
|
|
|
+ // getter
|
|
|
+ get: function() {
|
|
|
+ for (var i = 0; i < this.recordList.length; i++) {
|
|
|
+ if (this.selectIdList.indexOf(this.recordList[i]['id']) > -1 && this.recordList[i]['sceneId'] == '4') {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return false;
|
|
|
+ },
|
|
|
+ // setter
|
|
|
+ set: function(newValue) {
|
|
|
+ console.log(newValue)
|
|
|
+ }
|
|
|
+ },
|
|
|
...mapGetters({
|
|
|
openId: 'wx_openid',
|
|
|
token: 'token',
|
|
@@ -256,11 +274,12 @@
|
|
|
color: #05c8af !important;
|
|
|
border: 1px solid #05c8af !important;
|
|
|
}
|
|
|
+
|
|
|
/*.vongi-wordcard-sp .mui-fullscreen{
|
|
|
bottom: 50px;
|
|
|
}*/
|
|
|
-
|
|
|
- .fyy-bindfyy-btn button{
|
|
|
- width:30%;
|
|
|
+
|
|
|
+ .fyy-bindfyy-btn button {
|
|
|
+ width: 30%;
|
|
|
}
|
|
|
</style>
|