setting.vue 8.0 KB

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