index.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <div class="rightBox">
  3. <div class="edit_top">
  4. <div class="edit_btn">
  5. <span :class="{ active: type == 1 }" @click="type = 1">编辑</span>
  6. <span :class="{ active: type == 2 }" @click="type = 2">预览</span>
  7. <!-- <span :class="{ active: type == 3 }" @click="type = 3">回答</span>
  8. <span :class="{ active: type == 4 }" @click="type = 4">统计</span> -->
  9. </div>
  10. <div class="op_btn">
  11. <el-button type="primary" size="small" @click="lastSteps">上一步</el-button>
  12. <el-button type="primary" size="small" @click="save">保存</el-button>
  13. <el-button type="primary" size="small" @click="publish">发布</el-button>
  14. </div>
  15. </div>
  16. <div class="e_box">
  17. <editBox v-if="type == 1" :checkJson="checkJson" @changeJson="changeJson" :title="title"></editBox>
  18. <checkBox v-if="type == 2" :cJson="checkJson" :title="title"></checkBox>
  19. </div>
  20. </div>
  21. </template>
  22. <script>
  23. import editBox from './edit/index.vue'
  24. import checkBox from './check/index.vue'
  25. export default {
  26. components: {
  27. editBox,
  28. checkBox
  29. },
  30. props: {
  31. title: {
  32. type: String
  33. },
  34. testType: {
  35. type: Array
  36. },
  37. see: {
  38. type: Boolean
  39. },
  40. steps: {
  41. type: Number
  42. },
  43. cJson: {
  44. type: Array
  45. }
  46. },
  47. data() {
  48. return {
  49. type: 1,
  50. checkJson: [],
  51. }
  52. },
  53. watch: {
  54. cJson: {
  55. handler: function (newVal, oldVal) {
  56. this.checkJson = this.depthCopy(newVal);
  57. },
  58. deep: true,
  59. },
  60. },
  61. methods: {
  62. lastSteps() {
  63. this.$emit('update:steps', this.steps - 1)
  64. },
  65. save() {
  66. this.$emit("save")
  67. },
  68. publish() {
  69. this.$emit("publish")
  70. },
  71. depthCopy(s) {
  72. return s ? JSON.parse(JSON.stringify(s)) : ''
  73. },
  74. changeJson(json) {
  75. this.$emit("update:cJson", json);
  76. }
  77. },
  78. mounted() {
  79. this.checkJson = this.depthCopy(this.cJson);
  80. },
  81. }
  82. </script>
  83. <style scoped>
  84. .rightBox {
  85. width: calc(100%);
  86. background: #F0F2F5;
  87. overflow: auto;
  88. height: calc(100%);
  89. margin: 0 auto;
  90. position: relative;
  91. box-sizing: border-box;
  92. }
  93. .edit_top {
  94. height: 50px;
  95. background: #fff;
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. position: relative;
  100. }
  101. .edit_top>.edit_btn {
  102. display: flex;
  103. height: 100%;
  104. align-items: center;
  105. }
  106. .edit_top>.edit_btn>span {
  107. cursor: pointer;
  108. padding-bottom: 5px;
  109. display: block;
  110. }
  111. .edit_top>.edit_btn>.active {
  112. color: #3e88f4;
  113. border-bottom: 2px solid #2f80f3;
  114. }
  115. .edit_top>.edit_btn>span+span {
  116. margin-left: 35px;
  117. }
  118. .edit_top>.op_btn {
  119. position: absolute;
  120. right: 30px;
  121. }
  122. .e_box {
  123. height: calc(100% - 50px);
  124. width: 100%;
  125. overflow: hidden;
  126. background: rgb(196, 226, 241);
  127. }</style>