|
@@ -6,9 +6,17 @@
|
|
|
:id="item.domKey"
|
|
|
:value.sync="item.value"
|
|
|
:height="200"
|
|
|
- :full-position-style="{ top:'20px',left:'15%', right: '15%' }"
|
|
|
+ :full-position-style="{ top: '20px', left: '15%', right: '15%' }"
|
|
|
+ />
|
|
|
+ <div
|
|
|
+ v-else
|
|
|
+ style="cursor: pointer;color: #333;"
|
|
|
+ :style="{
|
|
|
+ paddingLeft: pageDate.status > 10 && item.value ? '30px' : '0'
|
|
|
+ }"
|
|
|
+ @click.stop="editDom"
|
|
|
+ v-html="item.value || '请点此处击添加数据!'"
|
|
|
/>
|
|
|
- <div v-else style="cursor: pointer;color: #333;padding-left: 30px;" @click.stop="editDom" v-html="item.value||'请点此处击添加数据!'" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -53,6 +61,4 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style scoped>
|
|
|
-
|
|
|
-</style>
|
|
|
+<style scoped></style>
|