BUG 29461
This commit is contained in:
@@ -299,8 +299,10 @@
|
|||||||
<span>是否会讲普通话</span>
|
<span>是否会讲普通话</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="check-item" :class="form.mandarin == '01' ? 'check-active' : '' " @click="form.mandarin='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
<div class="check-item" :class="form.mandarin == '01' ? 'check-active' : '' " @click="form.mandarin='01'">是<img
|
||||||
<div class="check-item" :class="form.mandarin == '02' ? 'check-active' : '' " @click="form.mandarin='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
src="./components/img/check-icon.png" alt=""></div>
|
||||||
|
<div class="check-item" :class="form.mandarin == '02' ? 'check-active' : '' " @click="form.mandarin='02'">否<img
|
||||||
|
src="./components/img/check-icon.png" alt=""></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -374,8 +376,10 @@
|
|||||||
<span>是否国外务工</span>
|
<span>是否国外务工</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="check-item" :class="form.foreignWorkers == '01' ? 'check-active' : '' " @click="form.foreignWorkers='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
<div class="check-item" :class="form.foreignWorkers == '01' ? 'check-active' : '' " @click="form.foreignWorkers='01'">是<img
|
||||||
<div class="check-item" :class="form.foreignWorkers == '02' ? 'check-active' : '' " @click="form.foreignWorkers='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
src="./components/img/check-icon.png" alt=""></div>
|
||||||
|
<div class="check-item" :class="form.foreignWorkers == '02' ? 'check-active' : '' " @click="form.foreignWorkers='02'">否<img
|
||||||
|
src="./components/img/check-icon.png" alt=""></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -573,12 +577,12 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
// 医疗保险
|
// 医疗保险
|
||||||
basicsCheck(row, i) {
|
basicsCheck(row) {
|
||||||
this.basicsCheckList[i].checked = !this.basicsCheckList[i].checked
|
row.checked = !row.checked
|
||||||
},
|
},
|
||||||
// 保障措施
|
// 保障措施
|
||||||
guaranteeCheck(row, i) {
|
guaranteeCheck(row) {
|
||||||
this.guaranteeCheckList[i].checked = !this.guaranteeCheckList[i].checked
|
row.checked = !row.checked
|
||||||
},
|
},
|
||||||
|
|
||||||
nextStep() {
|
nextStep() {
|
||||||
@@ -704,14 +708,9 @@ export default {
|
|||||||
})
|
})
|
||||||
|
|
||||||
res.data.healthyStatusList = res.data.healthyStatus.split(',')
|
res.data.healthyStatusList = res.data.healthyStatus.split(',')
|
||||||
|
|
||||||
res.data.healthyStatusList.map((item) => {
|
|
||||||
this.helthList.map(items => {
|
this.helthList.map(items => {
|
||||||
items.checked = item == items.dictValue
|
items.checked = res.data.healthyStatusList.includes(items.dictValue)
|
||||||
})
|
})
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
this.form = {
|
this.form = {
|
||||||
...this.form,
|
...this.form,
|
||||||
...res.data
|
...res.data
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ export default {
|
|||||||
isGirdUser() {
|
isGirdUser() {
|
||||||
this.isAdmin = false
|
this.isAdmin = false
|
||||||
this.$http.post('/app/appgirdmemberinfo/checkLogOnUser').then((res) => {
|
this.$http.post('/app/appgirdmemberinfo/checkLogOnUser').then((res) => {
|
||||||
if (res.code == 0) {
|
if (res?.data) {
|
||||||
if (res.data.checkType != '0') {
|
if (res.data.checkType != '0') {
|
||||||
this.isAdmin = true
|
this.isAdmin = true
|
||||||
this.checkType = res.data.checkType
|
this.checkType = res.data.checkType
|
||||||
|
|||||||
Reference in New Issue
Block a user