d53fc70e109dc36794cb592a228f96e7181755e2..373e07b3ab5bebaa08c7a48ce76cedeab37f1972
2025-06-05 cuilei
Merge remote-tracking branch 'origin/master'
373e07 对比 | 目录
2025-06-05 cuilei
工具管理-出库申请单页面小问题处理
1aef26 对比 | 目录
已修改1个文件
14 ■■■■■ 文件已修改
src/views/tms/modules/outBound/OutboundOrderModal.vue 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/tms/modules/outBound/OutboundOrderModal.vue
@@ -18,7 +18,7 @@
          </a-col>
          <a-col :span="12">
            <a-form-model-item label="出库类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="outStorehouseType">
              <j-dict-select-tag :disabled="disableSubmit" @change="handleTypeChange" type="list" v-model="model.outStorehouseType" dictCode="out_storehouse_type" placeholder="请选择出库类型" />
              <j-dict-select-tag :disabled="disableSubmit" @change="handleTypeChange" type="list" v-model="model.outStorehouseType" dictCode="out_storehouse_type" placeholder="请选择出库类型" disabled/>
            </a-form-model-item>
          </a-col>
        </a-row>
@@ -346,16 +346,20 @@
              const type = record.outStorehouseType
              switch (type) {
                case '1':
                  this.handleTypeChange('1')
                  this.selectBorrowTool = true
                  this.selectSharpenTool = false
                  break
                case '2':
                  this.handleTypeChange('2')
                  this.selectBorrowTool = false
                  this.selectSharpenTool = false
                  break
                case '3':
                  this.handleTypeChange('3')
                  this.selectBorrowTool = false
                  this.selectSharpenTool = false
                  break
                case '4':
                  this.handleTypeChange('4')
                  this.selectBorrowTool = false
                  this.selectSharpenTool = true
                  break
              }
            }