Commit 99e614fa authored by lijin's avatar lijin

modified

parent 68828893
...@@ -439,13 +439,13 @@ ...@@ -439,13 +439,13 @@
v-model="makeCreative.putinInventoryType" v-model="makeCreative.putinInventoryType"
@change="changePutinInventory" @change="changePutinInventory"
> >
<template v-for="item of globalEnums.putinLocation"> <template v-for="item of [{'label': 'Android', 'value': 1}, {'label': 'iOS', 'value': 2}]">
<el-radio-button <el-radio-button
:key="item.value" :key="item.value"
:label="item.value" :label="item.label"
:value="item.value" :value="item.value"
> >
{{ item.name }} {{ item.label }}
</el-radio-button> </el-radio-button>
</template> </template>
</el-radio-group> </el-radio-group>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment