Description.vue 897 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <div class="container">
  3. <div>
  4. <p>文案生成规则说明:</p>
  5. <p v-if="type ==1 ||type == ''">
  6. 文本规则:该患者
  7. <span>条件明细(内容)</span>,不宜开
  8. <span>医学术语(内容)</span>
  9. </p>
  10. <p v-if="type ==2 ||type == ''">
  11. 数值规则:该患者
  12. <span>条件明细(内容)+“>/</=”+ 数值范围</span>,不宜开
  13. <span>医学术语(内容)</span>
  14. </p>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. name: 'Description',
  21. props: ['type'],
  22. data() {
  23. return {};
  24. },
  25. created(){
  26. }
  27. };
  28. </script>
  29. <style lang="less" scoped>
  30. .container {
  31. width: 100%;
  32. padding: 10px 0 10px 12px;
  33. line-height: 28px;
  34. font-size: 14px;
  35. background-color: #f5f5f5;
  36. margin-bottom: 36px;
  37. p {
  38. color: #777;
  39. }
  40. span {
  41. color: #333333;
  42. }
  43. }
  44. </style>