setting.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <template>
  2. <view class="content">
  3. <view class="center">
  4. <view class="title">共{{pageList.length}}个型号:{{title}}</view>
  5. <block v-for="(item,index) in pageList" :key="index">
  6. <view class="box">
  7. <view class="box_title cell" v-if="titleList.length > 0">{{titleList[index].title}}</view>
  8. <view class="hflex acenter jbetween cell">
  9. <view class="left">价格</view>
  10. <u-input v-model="item.price_selling" type="digit" border="none" placeholder="请填写商品价格" @blur="moneyinput(index)"></u-input>
  11. </view>
  12. <view class="hflex acenter jbetween cell">
  13. <view class="left">库存</view>
  14. <u-input v-model="item.stock_total" type="number" border="none" placeholder="请填写商品库存"></u-input>
  15. </view>
  16. <view class="hflex acenter cell">
  17. <view class="left">图片</view>
  18. <view class="img">
  19. <image src="/static/images/common/upload_img2.png" class="upload_img1" @click="uploadImg(index)" v-if="item.sku_image == ''"></image>
  20. <image :src="item.sku_image" class="upload_img1" @click="uploadImg(index)" v-else></image>
  21. <image src="/static/images/common/close.png" class="img_close" v-if="item.sku_image !== ''" @click="closeImg(index)"></image>
  22. </view>
  23. </view>
  24. <view class="hflex acenter jbetween cell">
  25. <view class="left">是否售卖</view>
  26. <u-switch v-model="item.status" activeColor="#81be6a" ></u-switch>
  27. </view>
  28. </view>
  29. </block>
  30. </view>
  31. <view class="bottom">
  32. <view class="btn hflex acenter jcenter" @click="save">
  33. 保存
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. import $api from '@/static/js/api.js'
  40. var that = ''
  41. export default {
  42. data() {
  43. return {
  44. titleList: [],
  45. specList: [],
  46. pageList: [],
  47. title: '',
  48. good_id: '',
  49. }
  50. },
  51. onLoad(options) {
  52. that = this
  53. console.log('options',options);
  54. if(options.data) {
  55. that.specList = JSON.parse(options.data)
  56. console.log('that.specList',that.specList);
  57. }
  58. if(options.list) {
  59. that.pageList = JSON.parse(options.list)
  60. console.log('that.pageList',that.pageList);
  61. }
  62. if(options.good_id) {
  63. that.good_id = options.good_id
  64. }
  65. that.getList()
  66. },
  67. methods: {
  68. getList() {
  69. var list = []
  70. var list2 = []
  71. console.log(that.pageList);
  72. if(that.specList.length > 0) {
  73. for(var i=0;i<that.specList.length;i++) {
  74. that.title += that.specList[i].name + '、'
  75. for(var j=0;j<that.specList[i].list.length;j++) {
  76. var data = {
  77. type: i,
  78. name: that.specList[i].list[j].name,
  79. group: that.specList[i].list[j].group,
  80. }
  81. list.push(data)
  82. }
  83. }
  84. that.title = that.title.substr(0,that.title.length - 1)
  85. }
  86. if(that.specList.length == 2) {
  87. for(var i=0;i<list.length;i++) {
  88. for(var j=i+1;j<list.length;j++) {
  89. if(list[i].type !== list[j].type) {
  90. var temp = {
  91. title: list[i].name+'|' + list[j].name
  92. }
  93. that.titleList.push(temp)
  94. var data = {
  95. goods_spec: list[i].group + '::' + list[i].name+';;' + list[j].group + '::' + list[j].name,
  96. stock_total : '',
  97. price_selling : '',
  98. sku_image : '',
  99. status : true
  100. }
  101. list2.push(data)
  102. }
  103. }
  104. }
  105. }
  106. if(that.specList.length == 1) {
  107. for(var i=0;i<list.length;i++) {
  108. var temp = {
  109. title : list[i].name
  110. }
  111. that.titleList.push(temp)
  112. var data = {
  113. goods_spec: list[i].group+ '::' + list[i].name,
  114. stock_total : '',
  115. price_selling : '',
  116. sku_image : '',
  117. status : true
  118. }
  119. list2.push(data)
  120. }
  121. }
  122. if(that.specList.length == 3) {
  123. for(var i=0;i<that.specList[0].list.length;i++) {
  124. for(var j=0;j<that.specList[1].list.length;j++) {
  125. for(var k=0;k<that.specList[2].list.length;k++) {
  126. var temp = {
  127. title: that.specList[0].list[i].name+'|' + that.specList[1].list[j].name + '|' + that.specList[2].list[k].name
  128. }
  129. that.titleList.push(temp)
  130. var data = {
  131. goods_spec: that.specList[0].list[i].group+ '::' + that.specList[0].list[i].name+';;'+ that.specList[1].list[j].group+ '::' + that.specList[1].list[j].name + ';;' + that.specList[2].list[k].group+ '::' + that.specList[2].list[k].name,
  132. stock_total : '',
  133. price_selling : '',
  134. sku_image : '',
  135. status : true
  136. }
  137. list2.push(data)
  138. }
  139. }
  140. }
  141. }
  142. var plist = []
  143. console.log(that.pageList);
  144. if(that.pageList.length == 0) {
  145. that.pageList = list2
  146. } else {
  147. for(var i=0;i<that.pageList.length;i++) {
  148. var data = {
  149. id: that.pageList[i].id,
  150. goods_spec: that.pageList[i].goods_spec,
  151. stock_total : that.pageList[i].stock_total,
  152. price_selling : that.pageList[i].price_selling,
  153. sku_image : that.pageList[i].show_image?that.pageList[i].show_image:that.pageList[i].sku_image,
  154. status : that.pageList[i].status == 1 ? true : false,
  155. }
  156. plist.push(data)
  157. }
  158. that.pageList = plist
  159. }
  160. console.log('titleList:',that.titleList);
  161. },
  162. uploadImg(index) {
  163. uni.chooseImage({
  164. count: 1, //默认9
  165. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  166. sourceType: ['album','camera'], //从相册选择
  167. success: function (res) {
  168. const tempFilePaths = res.tempFilePaths
  169. uni.uploadFile({
  170. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  171. filePath: tempFilePaths[0],
  172. name: 'file',
  173. header: {
  174. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  175. 'api-name': 'iosapp'
  176. },
  177. // formData: {
  178. // 'user': 'test'
  179. // },
  180. success: (res) => {
  181. const data = JSON.parse(res.data)
  182. if (data.code == 1) {
  183. that.pageList[index].sku_image = data.data.url
  184. }
  185. }
  186. });
  187. }
  188. });
  189. },
  190. closeImg(index) {
  191. that.pageList[index].sku_image = ""
  192. },
  193. moneyinput(index) {
  194. console.log(index);
  195. if(that.pageList[index].price_selling<=0) {
  196. $api.info('请输入>0的数字')
  197. that.pageList[index].price_selling = ''
  198. }
  199. },
  200. save() {
  201. console.log(that.pageList);
  202. for(var i=0;i<that.pageList.length;i++) {
  203. if(!that.pageList[i].price_selling || !that.pageList[i].stock_total) {
  204. $api.info("必填项不能为空")
  205. return
  206. }
  207. /* if(that.pageList[i].status) {
  208. that.pageList[i].status = 1
  209. } else {
  210. that.pageList[i].status = 2
  211. } */
  212. }
  213. uni.setStorageSync('specData',JSON.stringify(that.pageList))
  214. uni.setStorageSync('spectitle',JSON.stringify(that.specList))
  215. $api.jump(-1)
  216. }
  217. },
  218. }
  219. </script>
  220. <style lang="scss" scoped>
  221. .content::v-deep {
  222. .center {
  223. width: 100%;
  224. box-sizing: border-box;
  225. padding: 0 30rpx;
  226. .title {
  227. font-size: 28rpx;
  228. font-weight: 400;
  229. color: #222222;
  230. line-height: 40rpx;
  231. padding: 28rpx 0 0;
  232. }
  233. .box {
  234. background: #F5F5F5;
  235. border-radius: 12px;
  236. margin-top: 24rpx;
  237. padding: 0 20rpx 24rpx;
  238. .box_title {
  239. font-size: 28rpx;
  240. font-weight: 400;
  241. color: #222222;
  242. line-height: 40rpx;
  243. }
  244. .cell {
  245. padding: 24rpx 0 4rpx;
  246. .left {
  247. width: 130rpx;
  248. font-size: 28rpx;
  249. font-weight: 400;
  250. color: #222222;
  251. line-height: 40rpx;
  252. }
  253. .u-input {
  254. width: 500rpx;
  255. height: 64rpx;
  256. background: #FFFFFF;
  257. border-radius: 8rpx;
  258. padding: 0 20rpx !important;
  259. }
  260. .img {
  261. position: relative;
  262. .upload_img1 {
  263. width: 140rpx;
  264. height: 140rpx;
  265. }
  266. .img_close {
  267. position: absolute;
  268. width: 28rpx;
  269. height: 28rpx;
  270. right: 0;
  271. top: 0;
  272. }
  273. }
  274. }
  275. }
  276. .box:nth-last-child(1) {
  277. margin-bottom: 186rpx;
  278. }
  279. }
  280. .bottom {
  281. width: 100%;
  282. height: 166rpx;
  283. background: #FFFFFF;
  284. box-sizing: border-box;
  285. padding: 8rpx 30rpx 0;
  286. position: fixed;
  287. bottom: 0;
  288. z-index: 99;
  289. .btn {
  290. width: 100%;
  291. height: 84rpx;
  292. background: #5471FF;
  293. border-radius: 46rpx;
  294. font-size: 36rpx;
  295. font-weight: 500;
  296. color: #FFFFFF;
  297. line-height: 50rpx;
  298. }
  299. }
  300. }
  301. </style>