This commit is contained in:
parent
c515086576
commit
71058069fa
|
@ -41,10 +41,10 @@
|
|||
placeholder="选择对象"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in options4"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
v-for="item in arr"
|
||||
:key="item"
|
||||
:label="item"
|
||||
:value="item"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
|
@ -676,12 +676,16 @@ export default {
|
|||
value: "",
|
||||
flag: false,
|
||||
json: {},
|
||||
arr: [],
|
||||
};
|
||||
},
|
||||
created() {
|
||||
alert(this.$route.query.id, this.$store.state.type);
|
||||
console.log(this.user_id, this.$store.state.type);
|
||||
this.GetUserAnswer();
|
||||
this.dxgl.forEach((item) => {
|
||||
this.arr.push(item.dx_name);
|
||||
});
|
||||
},
|
||||
mounted() {},
|
||||
|
||||
|
|
Loading…
Reference in New Issue