|
@@ -70,7 +70,21 @@
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="12" :lg="12" :span="6">
|
|
|
<el-form-item label="申报日期:" prop="created" label-width="140px" class="postInfo-container-item">
|
|
|
- <el-input :value="declareForm.created" :step="1" :max="100" style="width: 100%;" readonly
|
|
|
+ <el-input :value="declareForm.created" style="width: 100%;" readonly
|
|
|
+ disabled></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="12" :span="6">
|
|
|
+ <el-form-item label="审核状态:" prop="declareResult" label-width="140px" class="postInfo-container-item">
|
|
|
+ <el-input :value="declareForm.declareResult" readonly disabled>
|
|
|
+ </el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="12" :span="6">
|
|
|
+ <el-form-item label="审核备注:" prop="remarks" label-width="140px" class="postInfo-container-item">
|
|
|
+ <el-input :value="declareForm.remarks+''" style="width: 100%; color: red;" readonly
|
|
|
disabled></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -151,7 +165,8 @@ export default {
|
|
|
rate: 100
|
|
|
}
|
|
|
],
|
|
|
- production:null
|
|
|
+ production:null,
|
|
|
+ remarks:[]
|
|
|
|
|
|
},
|
|
|
users: [],
|
|
@@ -175,9 +190,10 @@ export default {
|
|
|
"mainBusiness": this.nodeBusinessInfo.mainBusiness,
|
|
|
"businessId": this.nodeBusinessInfo.businessId
|
|
|
}).then(res => {
|
|
|
- if (res.code === 200) {
|
|
|
- this.$refs.board.getInstanceArray(this.nodeBusinessInfo.mainBusiness,this.nodeBusinessInfo.businessId);
|
|
|
+ if (res.code === 200 && res.data!=null) {
|
|
|
+ this.nodeBusinessInfo.currentInstanceNodeId = res.data.instanceId;
|
|
|
}
|
|
|
+ this.$refs.board.getInstanceArray(this.nodeBusinessInfo.mainBusiness,this.nodeBusinessInfo.businessId);
|
|
|
})
|
|
|
}
|
|
|
},
|
|
@@ -218,17 +234,6 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
-/deep/.doWarehouseClass {
|
|
|
- border-radius: 10px;
|
|
|
-}
|
|
|
-
|
|
|
-.real-amount {
|
|
|
- /deep/ .el-form-item__label {
|
|
|
- color: red;
|
|
|
- font-weight: bold
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
.button-area {
|
|
|
position: absolute;
|
|
|
top: 70px;
|