yangan
2025-02-25 d32ae912cef59cbd9d2d569e763d13f1982520ad
feat:放空禁止点击条件
1个文件已修改
11 ■■■■■ 已修改文件
pages/driver-page/driver-index/bill-of-lading-details/weighingDevice/weighingDevice.vue 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/driver-page/driver-index/bill-of-lading-details/weighingDevice/weighingDevice.vue
@@ -169,8 +169,9 @@
                plain
                @click="evacuation"
                throttleTime="500"
                :disabled='((weighList.hair  ? weighList.hair  : temporaryWeighObj.hair ) - (weighList.skin ? weighList.skin : temporaryWeighObj.skin) > 1)'
                :loading="TwoEvacuationLoading"
                v-if='weighList.skin||weighList.hair'></u-button>
                v-if='(weighList.skin||weighList.hair)'></u-button>
            <!-- 外销订单称皮时,返回加减吨按钮置灰。称毛时可用.外购订单,不出现返回加减吨的按钮 -->
            <u-button type="primary"
                text="确定称重"
@@ -355,7 +356,7 @@
                errorTipShow: false,
                rules: {
                    abnormalContent: [{
                            required: false,
                            required: true,
                            message: "请填写异常原因",
                            trigger: ['blur', 'change'],
                            type: 'string'
@@ -675,11 +676,13 @@
            abnormalConfirm() {
                if(!this.abnormalForm.abnormalContent){
                    this.$u.toast('请输入异常原因')
                    return
                }
                }else{
                this.weighData.abnormalText = this.abnormalForm.abnormalContent
                this.saveWeigh()
                this.abnormalModalShow = false
                }
            },
            skinAbnormal() {
                this.$reqPost('skinAbnormal', { sceneId: this.weighData.sceneId, tmId: this.weighData.tmId }, 'params')