移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

128 rivejä
2.8 KiB

  1. <template>
  2. <div class="app-container">
  3. <div class="header_main">
  4. 查饲料
  5. <div class="return_btn" @click="onClickLeft"></div>
  6. <div class="jg"></div>
  7. </div>
  8. <div class="main">
  9. <div class="main_box">
  10. <van-cell title="饲料许可证号" :border="false" v-model="form.recordCode" />
  11. <van-cell title="生产厂家" :border="false" v-model="form.factory" />
  12. <van-cell title="商品名称" :border="false" v-model="form.productGoodsName" />
  13. <van-cell title="产品通用名称" :border="false" v-model="form.productName" />
  14. <van-cell title="有效期限" :border="false" v-model="form.effectivePeriod" />
  15. <van-cell title="备注" :border="false" v-model="form.remark" />
  16. </div>
  17. </div>
  18. </div>
  19. </template>
  20. <script>
  21. import { getScheme } from "@/api/lawEnforcement/index";
  22. export default {
  23. name: "programmeDetail",
  24. data() {
  25. return {
  26. form:{},
  27. };
  28. },
  29. created() {
  30. var content = this.$route.query.content;
  31. this.form = content;
  32. },
  33. methods: {
  34. },
  35. }
  36. </script>
  37. <style scoped lang="scss">
  38. .jg{
  39. height: 180PX;
  40. }
  41. .app-container {
  42. }
  43. .main{
  44. position: relative;
  45. top: -170PX;
  46. }
  47. /deep/ .van-cell{
  48. padding-bottom: 0;
  49. padding-top: 0;
  50. margin-bottom: 10PX;
  51. &:last-child{
  52. margin-bottom: 0;
  53. }
  54. }
  55. .header_main{
  56. /*height: 116px;*/
  57. background: url('../../../../static/images/lawEnforcement/new/header_bg.png') no-repeat;
  58. background-size: 100% 100%;
  59. /*position: fixed;*/
  60. top: 0;
  61. left: 0;
  62. width: 100%;
  63. font-size: 36px;
  64. line-height: 116px;
  65. text-align: center;
  66. color: #fff;
  67. z-index: 999;
  68. .return_btn{
  69. width: 24px;
  70. height: 43.2px;
  71. background: url('../../../assets/images/sunVillage_info/list_icon_5.png') center center no-repeat;
  72. background-size: 20px 36px;
  73. position: absolute;
  74. left: 38px;
  75. top: 36px;
  76. }
  77. .add_btn{
  78. width: 56.4px;
  79. height: 40.8px;
  80. background: url('../../../assets/images/sunVillage_info/list_icon_9.png') center center no-repeat;
  81. background-size: 47px 34px;
  82. position: absolute;
  83. right: 38px;
  84. top: 36px;
  85. }
  86. }
  87. .main_box{
  88. width: 96%;
  89. margin: 0 auto;
  90. border-radius: 10PX;
  91. box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
  92. overflow: hidden;
  93. background-color: #FFF;
  94. padding: 20PX 5PX;
  95. .van-icon{
  96. vertical-align: middle;
  97. }
  98. .custom-title{
  99. font-size: 17PX;
  100. color: #333333;
  101. vertical-align: middle;
  102. line-height: 1;
  103. position: relative;
  104. }
  105. .tap{
  106. color: #1D6FE9;
  107. }
  108. .bgBlue{
  109. display: block;
  110. position: absolute;
  111. width: 17PX;
  112. height: 17PX;
  113. border-radius: 50%;
  114. background-color: rgba(29,111,233,0.26);
  115. top: -2PX;
  116. right: -8PX;
  117. }
  118. }
  119. </style>