This commit is contained in:
liuye
2023-04-19 16:11:01 +08:00
parent 63026976a6
commit da5082cde8

View File

@@ -54,7 +54,7 @@
<!-- <AiPagePicker type="gird" v-model="form.girdId" :params="{ formType: 2 }" @select="handleSelectGrid" nodeKey="id">
<AiMore v-model="form.girdName"/>
</AiPagePicker> -->
<div class="right">{{form.girdName}}</div>
<div class="right" :class="form.girdName ? '' : 'color-999'">{{form.girdName || '自动获取'}}</div>
</div>
<div class="footer">
@@ -99,8 +99,6 @@ export default {
this.id = o.id
this.getDetail()
}
this.form.girdId = this.user.girdId
this.form.girdName = this.user.girdName
this.$dict.load(['clapEventStatus'])
this.getType()
},
@@ -187,6 +185,8 @@ export default {
this.form.userId = v?.[0]?.openId || ""
this.form.phone = v?.[0]?.phone || ""
this.form.idNumber = v?.[0]?.idNumber || ""
this.form.girdId = v?.[0]?.girdId || ""
this.form.girdName = v?.[0]?.girdName || ""
},
}
}