整改记录审阅按钮
This commit is contained in:
parent
e29f2b7dda
commit
dadc02819b
@ -102,6 +102,9 @@
|
|||||||
</u--form>
|
</u--form>
|
||||||
</view>
|
</view>
|
||||||
<check-action v-if="isLoadOK && tableKey === '1'&&isAudit==='true' " :okApi="okApi" :refuseApi="refuseApi" :dataSource="$store.state.auditModel"></check-action>
|
<check-action v-if="isLoadOK && tableKey === '1'&&isAudit==='true' " :okApi="okApi" :refuseApi="refuseApi" :dataSource="$store.state.auditModel"></check-action>
|
||||||
|
<view style="padding: 10px 16px;display: flex;flex-direction: row;" class="bottom-button" v-if="isLoadOK&&tableKey==='1'&&!isAudit">
|
||||||
|
<u-button type="primary" @click="submit" color="#3d4b70">审阅</u-button>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@ -128,7 +131,8 @@
|
|||||||
MineTypeName
|
MineTypeName
|
||||||
} from '../../../../utils/enums.js'
|
} from '../../../../utils/enums.js'
|
||||||
import {
|
import {
|
||||||
GetRiskVerifyRecodrReport,
|
GetRiskVerifyRecodrReport,
|
||||||
|
HiddenDangerRectifyRecordShow
|
||||||
} from '../../../../services/apply/subPages/SK/SKServices.js'
|
} from '../../../../services/apply/subPages/SK/SKServices.js'
|
||||||
import stepTitle from '@/components/custom/step-title.vue'
|
import stepTitle from '@/components/custom/step-title.vue'
|
||||||
export default {
|
export default {
|
||||||
@ -247,7 +251,17 @@
|
|||||||
this.isLoadOK = true
|
this.isLoadOK = true
|
||||||
|
|
||||||
},
|
},
|
||||||
|
submit() {
|
||||||
|
let json = {};
|
||||||
|
json.ID = this.model.ID;
|
||||||
|
json.TaskID = this.TaskID;
|
||||||
|
HiddenDangerRectifyRecordShow(json).then(res => {
|
||||||
|
uni.$showMsgFunc('操作成功!', () => {
|
||||||
|
uni.navigateBack()
|
||||||
|
},
|
||||||
|
'success', 1000)
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -451,6 +451,17 @@ export function SKRectifyNoticeShow(params) {
|
|||||||
reject(error)
|
reject(error)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
export function HiddenDangerRectifyRecordShow(params) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
request.post("/SK/SKHiddenDangerRectifyRecord/IdentityUpdate", params).then((result) => {
|
||||||
|
if (result.IsSuccessful) {
|
||||||
|
resolve(result.Data);
|
||||||
|
}
|
||||||
|
}).catch((error) => {
|
||||||
|
reject(error)
|
||||||
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
export function SKRectifyDelayApplyShow(params) {
|
export function SKRectifyDelayApplyShow(params) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user