editGoods.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.declareOdd" />
  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. <input type="text" placeholder="请输入" v-model="item.goodsType" />
  18. <!-- <u-input type="select" v-model="item.goodsType" border="false" placeholder="请选择商品类型" @click="show = true"/>
  19. <u-action-sheet :list="goodsTypes" v-model="show" @click="actionSheetCallback"/> -->
  20. </view>
  21. <view class="form_group">
  22. <view class="lable re">商品单位</view>
  23. <input type="text" placeholder="请输入" v-model="item.goodsUnits" />
  24. </view>
  25. <view class="form_group">
  26. <view class="lable re">商品价格</view>
  27. <input type="text" placeholder="请输入" v-model="item.price" />
  28. </view>
  29. <view class="form_group">
  30. <view class="lable re">商品数量</view>
  31. <input type="text" placeholder="请输入" v-model="item.stock" />
  32. </view>
  33. <view class="form_group">
  34. <view class="lable re">净重</view>
  35. <input type="text" placeholder="请输入" v-model="item.netWeight" />
  36. </view>
  37. <view class="form_group">
  38. <view class="lable re">毛重</view>
  39. <input type="text" placeholder="请输入" v-model="item.grossWeight" />
  40. </view>
  41. <view class="form_group">
  42. <view class="lable re">商品状态</view>
  43. <input type="text" placeholder="请输入" v-model="item.goodsStatus" />
  44. </view>
  45. <view class="form_group">
  46. <view class="lable re">商品描述</view>
  47. <input type="text" placeholder="请输入" v-model="item.description" />
  48. </view>
  49. <view class="form_group">
  50. <view class="lable re">商品图片</view>
  51. <card v-model="item.goodsImg" pic="../../static/images/yyzz.png"></card>
  52. </view>
  53. <button class="btn" @click="save()">修改商品提交</button>
  54. </view>
  55. </template>
  56. <script>
  57. export default {
  58. data() {
  59. return {
  60. id: 0,
  61. item: {goodsType:''},
  62. goodsTypes: [
  63. {label:'水果'},
  64. {label:'药品'},
  65. {label:'茶叶'},
  66. ],
  67. show: false,
  68. }
  69. },
  70. onLoad(option) {
  71. console.log('111111',option.id)
  72. this.id = option.id
  73. if(undefined != this.id && null != this.id && 0 != this.id) {
  74. this.getGoodsTransitDetail();
  75. }
  76. },
  77. methods: {
  78. // 获取商品详情
  79. getGoodsTransitDetail(){
  80. this.http.request({
  81. url: '/level-one-server/app/TbGoodsTransit/update',
  82. method:'POST',
  83. data: {id:this.id},
  84. success: res => {
  85. this.item = res.data.data;
  86. //uni.showToast({ title: '操作成功' });
  87. }
  88. });
  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>