xuxy
2024-07-28 44dbae4a6ffb73478cd7980f37f1760e9a070c07
sub_pages/supplier/flower-manage/flower-add.vue
@@ -172,8 +172,7 @@
            </view>
         </view>
         <view style="min-width: 500rpx;margin-left: 20rpx;margin-right: 20rpx;margin-top: 20rpx;">
            <u--textarea v-model="dto.description" autoHeight
               placeholder="请输入商品描述"></u--textarea>
            <u--textarea v-model="dto.description" autoHeight placeholder="请输入商品描述"></u--textarea>
         </view>
@@ -539,16 +538,20 @@
               return
            }
            var tmp = parseFloat(this.dto.price)
            if (isNaN(tmp) || ('' + tmp) !== ('' + this.dto.price)) {
            if (isNaN(tmp) || parseFloat('' + tmp).toFixed(3) !== parseFloat('' + this.dto.price).toFixed(3)) {
               this.$message.showToast('商品价格格式错误,精确到分')
               console.log('a1', ('' + tmp) )
               console.log('a1', ('' + this.dto.price))
               return
            }
            if ((tmp.toFixed(2) + '' + '0') !== tmp.toFixed(3)) {
            if ((tmp.toFixed(2) + '' + '0') !== ('' + tmp.toFixed(3))) {
               this.$message.showToast('商品价格至多精确到分')
               console.log('a1', (tmp.toFixed(2) + '' + '0'))
               console.log('a1', tmp.toFixed(3))
               // console.log('tmp.toFixed(2)',tmp.toFixed(2),tmp.toFixed(3))
               return
            } else {
               this.dto.price = this.dto.price.toFixed(2)
               this.dto.price = tmp.toFixed(2)
            }
            if (this.dto.price <= 0) {
               this.$message.showToast('商品价格不能小于等于0')
@@ -626,7 +629,7 @@
         uploadIcon(key) {
            console.log('that dto key', key)
            const that = this
            if (key == 'video') {
            if (key === 'video') {
               uni.chooseVideo({
                  maxDuration: 30,
                  sourceType: ['camera', 'album'],