Commit 9b2dbd09 authored by youjie's avatar youjie

no message

parent d6847df5
...@@ -273,17 +273,17 @@ ...@@ -273,17 +273,17 @@
<singleChoice v-if="optionVisible" :current="optionObj.id" :list="optionList" @close="close" <singleChoice v-if="optionVisible" :current="optionObj.id" :list="optionList" @close="close"
@change="popupOption"></singleChoice> @change="popupOption"></singleChoice>
<!-- 编辑 --> <!-- 编辑 -->
<editor v-if="editorVisible" :title="editorObj.name" @close="close" @change="popupEditor"></editor> <editorName v-if="editorVisible" :title="editorObj.name" @close="close" @change="popupEditor"></editorName>
</view> </view>
</template> </template>
<script> <script>
import singleChoice from "./singleChoice"; import singleChoice from "./singleChoice";
import editor from "./editor"; import editorName from "./editorName";
export default { export default {
props: ['data', 'currencyList'], props: ['data', 'currencyList'],
components: { components: {
singleChoice, singleChoice,
editor, editorName,
}, },
data() { data() {
return { return {
......
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