Commit 8f40ae9f authored by 王李辉's avatar 王李辉

Merge branch 'develop' of http://git.censoft.com.cn/BCDH-HSE/bcdh-app into develop

parents 69683737 f0817410
Pipeline #7029 passed with stage
in 14 seconds
stages:
- build-develop
build:
stage: build-develop
only:
- develop
- master
allow_failure: true
script:
- chcp 65001
- cmd /c npm install
- cmd /c npm run build
- cmd /c npm run build
- cmd /c xcopy .\dist D:\BCDH-APP\nginx-1.18.0\html\dist /s /Y
tags:
- BCDH-APP
\ No newline at end of file
...@@ -265,6 +265,26 @@ export function delayEdit(url, data) { ...@@ -265,6 +265,26 @@ export function delayEdit(url, data) {
}) })
} }
// 隐患整改
export function list1(url="/rectification/list1", data) {
return request({
url,
method: 'post',
data
})
}
// 隐患整改已退回
export function list2(url="/rectification/list2", data) {
return request({
url,
method: 'post',
data
})
}
// 隐患整改已退回
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
label="退回原因" label="退回原因"
type="textarea" type="textarea"
/> />
<van-field <van-field
readonly readonly
......
This diff is collapsed.
...@@ -234,8 +234,8 @@ export default { ...@@ -234,8 +234,8 @@ export default {
let formdata = new FormData(); let formdata = new FormData();
formdata.append("confirmResult", this.radio); formdata.append("confirmResult", this.radio);
formdata.append("endTime", values.endTime); formdata.append("endTime", values.endTime);
formdata.append("rectificationUser", this.rectificationUser); formdata.append("rectificationUser", values.rectificationUser);
formdata.append("rectificationReview", this.rectificationReview); formdata.append("rectificationReview", values.rectificationReview);
formdata.append("confirmOpinion", values.confirmOpinion); formdata.append("confirmOpinion", values.confirmOpinion);
this.$toast.loading({ this.$toast.loading({
message: "提交中...", message: "提交中...",
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
<div> <div>
<LHeader :text="text"></LHeader> <LHeader :text="text"></LHeader>
<van-search v-model="searchValue" placeholder="搜索" @search="onSearch" /> <van-search v-model="searchValue" placeholder="搜索" @search="onSearch" />
<!-- 内容列表 --> <!-- 内容列表 -->
<div class="con-list" @touchmove="showIndex = null"> <div class="con-list" @touchmove="showIndex = null">
<van-cell-group <van-cell-group
......
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
name="thinkHdLev" name="thinkHdLev"
:value="thinkLevel" :value="thinkLevel"
label="认定隐患级别" label="认定隐患级别"
placeholder="请选择" placeholder="重大隐患"
@click="showThinkLevel = true" @click="showThinkLevel = true"
:rules="[{ required: true, message: '认定隐患级别不能为空' }]" :rules="[{ required: true, message: '认定隐患级别不能为空' }]"
/> />
...@@ -124,7 +124,7 @@ export default { ...@@ -124,7 +124,7 @@ export default {
text: "重大隐患审批", text: "重大隐患审批",
agreeOpinion: "", agreeOpinion: "",
disagreeOpinion: "", disagreeOpinion: "",
thinkLevel:'', //因为隐患级别 thinkLevel:'重大隐患', //因为隐患级别
showThinkLevel: false, showThinkLevel: false,
columnsThinkLevel:["重大隐患","一般隐患A","一般隐患B","一般隐患C",] columnsThinkLevel:["重大隐患","一般隐患A","一般隐患B","一般隐患C",]
......
...@@ -187,7 +187,7 @@ ...@@ -187,7 +187,7 @@
<van-col span="5" <van-col span="5"
><span class="field-title">结果:</span></van-col ><span class="field-title">结果:</span></van-col
> >
<van-col span="19">{{['退回','合格'][item.isResult]}}</van-col> <van-col span="19">{{ item.isResult == 1 ? "通过" : "退回"}}</van-col>
</van-row> </van-row>
<van-row> <van-row>
<van-col span="5" <van-col span="5"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment