|
|
@ -296,7 +296,7 @@ |
|
|
|
<div class="list" v-else> |
|
|
|
<div |
|
|
|
class="item" |
|
|
|
:class="{'z-long': group.itemList.length==1}" |
|
|
|
:class="{ 'z-long': group.itemList.length == 1 }" |
|
|
|
:key="field.itemId" |
|
|
|
v-for="field in group.itemList" |
|
|
|
> |
|
|
@ -376,6 +376,10 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
computed: { |
|
|
|
isShundeju() { |
|
|
|
return this.$store.state.user.customerId == "1550309684576591874"; |
|
|
|
}, |
|
|
|
|
|
|
|
xiaoquName() { |
|
|
|
const { |
|
|
|
xiaoquList, |
|
|
@ -600,7 +604,7 @@ export default { |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
const arr = [ |
|
|
|
let arr = [ |
|
|
|
{ |
|
|
|
groupId: "hs123", |
|
|
|
itemList: [], |
|
|
@ -609,23 +613,28 @@ export default { |
|
|
|
supportAdd: false, |
|
|
|
tableName: "ic_hs", |
|
|
|
}, |
|
|
|
{ |
|
|
|
groupId: "hs124", |
|
|
|
itemList: [], |
|
|
|
label: "行程信息", |
|
|
|
sort: 999, |
|
|
|
supportAdd: false, |
|
|
|
tableName: "ic_xc", |
|
|
|
}, |
|
|
|
{ |
|
|
|
groupId: "hs125", |
|
|
|
itemList: [], |
|
|
|
label: "疫苗信息", |
|
|
|
sort: 999, |
|
|
|
supportAdd: false, |
|
|
|
tableName: "ic_ym", |
|
|
|
}, |
|
|
|
]; |
|
|
|
if (!this.isShundeju) { |
|
|
|
arr = [ |
|
|
|
...arr, |
|
|
|
{ |
|
|
|
groupId: "hs124", |
|
|
|
itemList: [], |
|
|
|
label: "行程信息", |
|
|
|
sort: 999, |
|
|
|
supportAdd: false, |
|
|
|
tableName: "ic_xc", |
|
|
|
}, |
|
|
|
{ |
|
|
|
groupId: "hs125", |
|
|
|
itemList: [], |
|
|
|
label: "疫苗信息", |
|
|
|
sort: 999, |
|
|
|
supportAdd: false, |
|
|
|
tableName: "ic_ym", |
|
|
|
}, |
|
|
|
]; |
|
|
|
} |
|
|
|
this.groupList = [...this.groupList, ...arr]; |
|
|
|
} else { |
|
|
|
this.$message.error(msg); |
|
|
|