12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div :class="classes">
- <h4>注意事项:</h4>
- <div
- class="head-notice-cont"
- v-for="(cont, index) in data.noticeHead"
- :key="index"
- >
- <span>{{ index + 1 }}、</span>
- <span>{{ cont }}</span>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "head-notice",
- props: {
- data: {
- type: Object
- }
- },
- data() {
- return {};
- },
- computed: {
- classes() {
- return [
- "head-notice",
- "card-head-body-spin",
- {
- "head-notice-exam-number-fill": this.data.examNumberStyle === "fill"
- }
- ];
- }
- },
- mounted() {},
- methods: {}
- };
- </script>
|