addGoods.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <view class="cmain">
  3. <view class="form_group">
  4. <view class="lable re">监管商品类型</view>
  5. <input type="text" placeholder="请输入" v-model="item.id" />
  6. </view>
  7. <view class="form_group">
  8. <view class="lable re">商品名称</view>
  9. <input type="text" placeholder="请输入" v-model="item.goodsName" />
  10. </view>
  11. <view class="form_group">
  12. <view class="lable re">商品产地</view>
  13. <input type="text" placeholder="请输入" v-model="item.placeOrigin" />
  14. </view>
  15. <view class="form_group">
  16. <view class="lable re">商品类型</view>
  17. <picker @change="pickerChangeGoodsTypes" :value="index1" :range="goodsTypes" range-key="label">
  18. <view >{{goodsTypes[index1].label}}</view>
  19. </picker>
  20. <!-- <input type="text" placeholder="请输入" v-model="item.goodsType" /> -->
  21. <!-- <u-input type="select" v-model="item.goodsType" border="false" placeholder="请选择商品类型" @click="show = true"/>
  22. <u-action-sheet :list="goodsTypes" v-model="show" @click="actionSheetCallback"/> -->
  23. </view>
  24. <view class="form_group">
  25. <view class="lable re">商品单位</view>
  26. <input type="text" placeholder="请输入" v-model="item.goodsUnits" />
  27. </view>
  28. <view class="form_group">
  29. <view class="lable re">商品价格</view><!-- (0=下架,1=在售) -->
  30. <input type="text" placeholder="请输入" v-model="item.price" />
  31. </view>
  32. <view class="form_group">
  33. <view class="lable re">商品数量</view>
  34. <input type="text" placeholder="请输入" v-model="item.stock" />
  35. </view>
  36. <view class="form_group">
  37. <view class="lable re">净重</view>
  38. <input type="text" placeholder="请输入" v-model="item.netWeight" />
  39. </view>
  40. <view class="form_group">
  41. <view class="lable re">毛重</view>
  42. <input type="text" placeholder="请输入" v-model="item.grossWeight" />
  43. </view>
  44. <view class="form_group">
  45. <view class="lable re">商品状态</view>
  46. <picker @change="pickerChangeGoodsStatus" :value="index2" :range="goodsStatus" range-key="label">
  47. <view >{{goodsStatus[index2].label}}</view>
  48. </picker>
  49. <!-- <input type="text" placeholder="请输入" v-model="item.goodsStatus" /> -->
  50. </view>
  51. <view class="form_group">
  52. <view class="lable re">商品描述</view>
  53. <input type="text" placeholder="请输入" v-model="item.description" />
  54. </view>
  55. <view class="form_group">
  56. <view class="lable re">商品图片</view>
  57. <card v-model="item.goodsImg" pic="../../static/images/yyzz.png"></card>
  58. </view>
  59. <button class="btn" @click="save()">新增商品提交</button>
  60. </view>
  61. </template>
  62. <script>
  63. export default {
  64. data() {
  65. return {
  66. id: 0,
  67. item: {goodsType:''},
  68. index1: 0,
  69. index2: 1,
  70. goodsTypes: [
  71. {label:'请选择',value:0},
  72. {label:'水果',value:1},
  73. {label:'药品',value:2},
  74. {label:'茶叶',value:3},
  75. ],
  76. goodsStatus: [
  77. {label:'下架',value:0},
  78. {label:'在售',value:1}
  79. ],
  80. show: false,
  81. }
  82. },
  83. methods: {
  84. pickerChangeGoodsTypes: function(e) { //商品类型选择器
  85. this.index1 = e.detail.value;
  86. },
  87. pickerChangeGoodsStatus: function(e) { //商品状态选择器
  88. this.index2 = e.detail.value;
  89. },
  90. // 点击actionSheet回调
  91. actionSheetCallback(index) {
  92. console.log('index',index)
  93. this.item.goodsType = this.goodsTypes[index].label;
  94. },
  95. save() {
  96. /* let rule = [
  97. { name: 'typeCode', checkType: 'notnull', errorMsg: '请输入编码' },
  98. { name: 'typeName', checkType: 'notnull', errorMsg: '请输入名称' },
  99. { name: 'status', checkType: 'notnull', errorMsg: '请选择状态' }
  100. ]; */
  101. /* if (!this.verify.check(this.item, rule)) {
  102. uni.showModal({ content: this.verify.error, showCancel: false });
  103. return false;
  104. } */
  105. this.http.request({
  106. url: '/level-one-server/app/TbGoodsTransit/transactionGoods',
  107. method:'POST',
  108. data: this.item,
  109. success: res => {
  110. uni.showToast({ title: '操作成功' });
  111. setTimeout(() => {
  112. uni.$emit('ctype');
  113. uni.navigateBack();
  114. }, 1000);
  115. }
  116. });
  117. }
  118. }
  119. }
  120. </script>
  121. <style lang="scss">
  122. .btn {
  123. margin-top: 25px;
  124. }
  125. </style>