spec.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <template>
  2. <view class="content">
  3. <view class="top" v-if="specList.length == 0">
  4. <view class="add hflex acenter jcenter" @click="open(-1)">添加规格分类</view>
  5. </view>
  6. <view class="top1" v-else>
  7. <block v-for="(item,index) in specList" :key="index">
  8. <view class="box">
  9. <view class="hflex acenter jbetween box-top">
  10. <view class="hflex acenter">
  11. <view class="name text_hide">{{item.name}}</view>
  12. <image src="/static/images/common/edit_icon.png" style="width: 28rpx;height: 28rpx;" @click="open(index)"></image>
  13. </view>
  14. <view class="hflex acenter" @click="delSpec(index)">
  15. <image src="/static/images/common/delete.png" style="width: 28rpx;height: 28rpx;"></image>
  16. <view class="right">删除</view>
  17. </view>
  18. </view>
  19. <view class="hflex acenter fwrap" style="padding: 32rpx 0;">
  20. <block v-for="(item2,index2) in item.list" :key="index2">
  21. <view class="options hflex acenter">
  22. <view class="text text-right">{{item2.name}}</view>
  23. <image src="/static/images/common/close_icon.png" style="margin-left: 16rpx;width: 28rpx;height: 28rpx;" @click="delOptions(index,index2)"></image>
  24. </view>
  25. </block>
  26. <view class="options hflex acenter">
  27. <view class="text text_blue" @click="add(index,item.name)">+添加规格选项</view>
  28. </view>
  29. </view>
  30. </view>
  31. </block>
  32. <view class="add hflex acenter jcenter" @click="open(-1)">添加规格分类</view>
  33. </view>
  34. <view class="bottom">
  35. <view class="btn hflex acenter jcenter" @click="next">
  36. 下一步
  37. </view>
  38. </view>
  39. <u-popup :show="show" round="10" mode="center" @close="close" :safeAreaInsetBottom="false">
  40. <view class="popu">
  41. <view class="popu_title">{{ editIndex == -1 ? '添加' : '修改'}}规格分类</view>
  42. <u-input v-model="name" border="none" maxlength="15" shape="circle" placeholder="请输入"></u-input>
  43. <view class="hflex acenter jcenter btn_group">
  44. <view class="left_btn" @click="close">取消</view>
  45. <view class="right_btn" @click="save">保存</view>
  46. </view>
  47. </view>
  48. </u-popup>
  49. </view>
  50. </template>
  51. <script>
  52. import $api from '@/static/js/api.js'
  53. var that = ''
  54. export default {
  55. data() {
  56. return {
  57. specList: [],
  58. options: [],
  59. show: false,
  60. name: '',
  61. edit: false,
  62. editIndex: -1,
  63. good_id: '',
  64. }
  65. },
  66. onLoad(options) {
  67. that = this
  68. if(options.good_id) {
  69. that.good_id = options.good_id
  70. }
  71. if(options.items) {
  72. that.getData(options.items)
  73. }
  74. },
  75. methods: {
  76. getData(data) {
  77. var data = JSON.parse(data)
  78. that.specList = data
  79. },
  80. open(index) {
  81. if(index == -1) {
  82. that.edit = false
  83. } else {
  84. that.edit = true
  85. that.editIndex = index
  86. that.name = that.specList[that.editIndex].name
  87. }
  88. that.show = true
  89. },
  90. close() {
  91. that.show = false
  92. },
  93. save() {
  94. if(that.name == '') {
  95. $api.info('请输入规格分类')
  96. return
  97. }
  98. var data = {
  99. name: that.name
  100. }
  101. if(that.edit) {
  102. that.$set(that.specList[that.editIndex],'name',that.name)
  103. } else {
  104. that.specList.push(data)
  105. }
  106. that.name = ''
  107. that.close()
  108. },
  109. delSpec(index) {
  110. that.specList.splice(index,1)
  111. },
  112. delOptions(index,index2) {
  113. console.log(that.specList);
  114. that.specList[index].list.splice(index2,1)
  115. },
  116. add(index,name) {
  117. var url = ''
  118. if(that.specList[index].list) {
  119. url = '/pages/good/options?index='+index+'&data='+JSON.stringify(that.specList[index].list) + '&group=' + name
  120. } else {
  121. url = '/pages/good/options?index='+index + '&group=' + name
  122. }
  123. $api.jump(url)
  124. },
  125. next() {
  126. if(that.specList.length <= 0) {
  127. $api.info('请先填写至少一个规格')
  128. return
  129. }
  130. $api.jump('/pages/good/setting?data=' + JSON.stringify(that.specList) + '&good_id=' + that.good_id,1)
  131. }
  132. },
  133. }
  134. </script>
  135. <style lang="scss" scoped>
  136. .content::v-deep {
  137. .top {
  138. width: 100%;
  139. min-height: calc(100vh - 166rpx);
  140. }
  141. .top1 {
  142. width: 100%;
  143. min-height: calc(100vh - 166rpx);
  144. background: #F5F5F5;
  145. .box {
  146. width: 100%;
  147. margin-top: 20rpx;
  148. box-sizing: border-box;
  149. padding: 0 30rpx;
  150. background: #FFFFFF;
  151. .box-top {
  152. width: 100%;
  153. padding: 24rpx 0;
  154. border-bottom: 1rpx solid #F5F5F5;
  155. .name {
  156. max-width: 500rpx;
  157. font-size: 30rpx;
  158. font-weight: 500;
  159. color: #222222;
  160. line-height: 42rpx;
  161. padding-right: 12rpx;
  162. }
  163. .right {
  164. font-size: 24rpx;
  165. font-weight: 400;
  166. color: #8F8F8F;
  167. line-height: 34rpx;
  168. padding-left: 12rpx;
  169. }
  170. }
  171. .options {
  172. background: #F5F5F5;
  173. border-radius: 28px;
  174. padding: 10rpx 32rpx;
  175. margin: 0 20rpx 32rpx 0;
  176. .text {
  177. font-size: 26rpx;
  178. font-weight: 400;
  179. color: #333333;
  180. line-height: 36rpx;
  181. }
  182. .text-right {
  183. padding-right: 16rpx;
  184. border-right: 1rpx solid #D8D8D8;
  185. }
  186. .text_blue {
  187. color: #5471FF;
  188. }
  189. }
  190. }
  191. }
  192. .add {
  193. margin: 102rpx auto 186rpx;
  194. width: 390rpx;
  195. height: 84rpx;
  196. border-radius: 42rpx;
  197. border: 2rpx solid #5471FF;
  198. font-size: 30rpx;
  199. font-weight: 400;
  200. color: #5471FF;
  201. line-height: 42rpx;
  202. }
  203. .bottom {
  204. width: 100%;
  205. height: 166rpx;
  206. background: #FFFFFF;
  207. box-sizing: border-box;
  208. padding: 8rpx 30rpx 0;
  209. position: fixed;
  210. bottom: 0;
  211. z-index: 99;
  212. .btn {
  213. width: 100%;
  214. height: 84rpx;
  215. background: #5471FF;
  216. border-radius: 46rpx;
  217. font-size: 36rpx;
  218. font-weight: 500;
  219. color: #FFFFFF;
  220. line-height: 50rpx;
  221. }
  222. }
  223. .popu {
  224. width: 590rpx;
  225. background: #FFFFFF;
  226. border-radius: 28rpx;
  227. box-sizing: border-box;
  228. padding: 0 10rpx;
  229. .popu_title {
  230. width: 100%;
  231. font-size: 32rpx;
  232. font-weight: 400;
  233. color: #222222;
  234. line-height: 44rpx;
  235. text-align: center;
  236. padding: 48rpx 0;
  237. }
  238. .u-input {
  239. width: 490rpx;
  240. height: 80rpx;
  241. background: #F5F5F5;
  242. border-radius: 40rpx;
  243. margin: 0 auto;
  244. padding: 0 32rpx !important;
  245. }
  246. .btn_group {
  247. width: 100%;
  248. margin-top: 56rpx;
  249. border-top: 1rpx solid #F5F5F5;
  250. padding: 0 0;
  251. .left_btn {
  252. width: 50%;
  253. padding: 28rpx 108rpx;
  254. border-right: 1rpx solid #F5F5F5;
  255. font-size: 32rpx;
  256. font-weight: 400;
  257. color: #222222;
  258. line-height: 44rpx;
  259. }
  260. .right_btn {
  261. width: 50%;
  262. padding: 0 108rpx;
  263. font-size: 32rpx;
  264. font-weight: 400;
  265. color: #5471FF;
  266. line-height: 44rpx;
  267. }
  268. }
  269. }
  270. }
  271. </style>