options.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <view class="content">
  3. <view class="vflex box">
  4. <block v-for="(item,index) in options" :key="index">
  5. <view class="hflex acenter jbetween" style="padding: 26rpx 0;">
  6. <view class="left">型号</view>
  7. <u-input v-model="item.name" border="none" placeholder="请输入"></u-input>
  8. <image src="/static/images/common/delete.png" style="width: 40rpx;height: 40rpx;" @click="delOptions(index)"></image>
  9. </view>
  10. </block>
  11. <view class="add hflex acenter jcenter" @click="add">添加型号</view>
  12. </view>
  13. <view class="bottom">
  14. <view class="btn hflex acenter jcenter" @click="save">
  15. 保存
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. import $api from '@/static/js/api.js'
  22. var that = ''
  23. export default {
  24. data() {
  25. return {
  26. index: '',
  27. options: [
  28. {
  29. check: true,
  30. show: true,
  31. name: '',
  32. group: ''
  33. }
  34. ],
  35. group: '',
  36. }
  37. },
  38. onLoad(options) {
  39. that = this
  40. that.index = options.index
  41. if(options.data) {
  42. that.options = JSON.parse(options.data)
  43. }
  44. that.options[0].group = options.group
  45. that.group = options.group
  46. console.log(options);
  47. },
  48. methods: {
  49. add() {
  50. var data = {
  51. name: '',
  52. check: true,
  53. show: true,
  54. group: that.group
  55. }
  56. that.options.push(data)
  57. },
  58. save() {
  59. for(var i=0;i<that.options.length;i++) {
  60. if(that.options[i].name == '') {
  61. $api.info('型号不能为空')
  62. return
  63. }
  64. }
  65. let pages = getCurrentPages();
  66. let prevPage = pages[pages.length - 2];
  67. that.$set(prevPage.$vm._data.specList[that.index],'list',that.options)
  68. // prevPage.$vm._data.specList[that.index].options = that.options
  69. $api.jump(-1)
  70. },
  71. delOptions(index) {
  72. that.options.splice(index,1)
  73. }
  74. },
  75. }
  76. </script>
  77. <style lang="scss" scoped>
  78. .content::v-deep {
  79. .box {
  80. box-sizing: border-box;
  81. padding: 0 30rpx;
  82. .left {
  83. font-size: 28rpx;
  84. font-weight: 400;
  85. color: #222222;
  86. line-height: 40rpx;
  87. }
  88. .u-input {
  89. width: 530rpx;
  90. height: 88rpx;
  91. background: #F5F5F5;
  92. border-radius: 12rpx;
  93. padding: 0 20rpx !important;
  94. margin: 0 14rpx 0 20rpx;
  95. }
  96. .add {
  97. margin: 102rpx auto 186rpx;
  98. width: 390rpx;
  99. height: 84rpx;
  100. border-radius: 42rpx;
  101. border: 2rpx solid #5471FF;
  102. font-size: 30rpx;
  103. font-weight: 400;
  104. color: #5471FF;
  105. line-height: 42rpx;
  106. }
  107. }
  108. .bottom {
  109. width: 100%;
  110. height: 166rpx;
  111. background: #FFFFFF;
  112. box-sizing: border-box;
  113. padding: 8rpx 30rpx 0;
  114. position: fixed;
  115. bottom: 0;
  116. z-index: 99;
  117. .btn {
  118. width: 100%;
  119. height: 84rpx;
  120. background: #5471FF;
  121. border-radius: 46rpx;
  122. font-size: 36rpx;
  123. font-weight: 500;
  124. color: #FFFFFF;
  125. line-height: 50rpx;
  126. }
  127. }
  128. }
  129. </style>