更改字段

lijinlong
李劲龙 2 months ago
parent faa0af8e20
commit cc34231717

@ -5,7 +5,7 @@
<el-row style="margin: 10px 0;">
<span class="top-title-box">基本信息</span>
</el-row>
<div class="assets-info-box">
<div class="assets-info-box" v-if="!loading">
<el-form :model="ruleForm" v-loading="loading" :rules="rules" ref="ruleForm" label-width="170px" class="demo-ruleForm" label-position="right" :disabled="disabled">
<el-row>
<el-col :span="12">
@ -3054,7 +3054,7 @@ export default {
},
//
newAssets(type) {
// this.loading = true;
this.loading = true;
let tijioaobj = {
taskId: this.$route.query.taskId,
@ -3103,6 +3103,7 @@ export default {
assetTasksh(tijioaobj).then(res=>{
if(res.code == 200){
this.$modal.msgSuccess("审核成功");
this.loading = false
this.$router.go(-1);
}
})

@ -12,7 +12,7 @@
</el-col>
<el-col :span="8">
<el-form-item label="任务编号:">
<el-input v-model="formInline.taskId" placeholder="请输入"></el-input>
<el-input v-model="formInline.id" placeholder="请输入"></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
@ -78,7 +78,7 @@
<span v-if="scope.row.taskStatus == 1" style="color: #F58A0C;">
进行中
</span>
<span v-if="scope.row.taskStatus == 2" style="color: #F50C0C;">
<span v-if="scope.row.taskStatus == 2" style="color: #76EE00;">
正常完成
</span>
<span v-if="scope.row.taskStatus == 3" style="color: #16B771;">
@ -100,8 +100,8 @@
<span class="look-info"
style="color: #1485EF;">查看</span>
</div>
<!-- v-if="scope.row.taskStatus == 1" -->
<div style="display: flex;align-items: center;cursor: pointer;margin-left: 10px;" @click="delInfo(scope.row)">
<!-- -->
<div style="display: flex;align-items: center;cursor: pointer;margin-left: 10px;" @click="delInfo(scope.row)" v-if="scope.row.taskStatus == 1">
<img src="@/assets/images/icon-shenhe@2x.png" alt="" style="width: 15px;margin-right: 5px;">
<span class="del-info"
style="color: #1485EF;">审核</span>

@ -135,9 +135,9 @@
<span class="look-info"
style="color: #1485EF;">查看</span>
</div>
<div style="display: flex;align-items: center;cursor: pointer;margin-left: 5px;" @click="goInfo(2,scope.row)" v-if="$route.query.pageType == 'info' || $route.meta.pageType == 'info'">
<div style="display: flex;align-items: center;cursor: pointer;margin-left: 5px;" @click="goInfo(2,scope.row)" v-if="$route.query.pageType == 'info' || $route.meta.pageType == 'info'" v-show='scope.row.status == 1'>
<img src="@/assets/images/icon-shenhe@2x.png" alt="" style="width: 15px;margin-right: 5px;">
<span class="look-info"
<span class="look-info"
style="color: #1485EF;">审核</span>
</div>
</div>

@ -1376,7 +1376,10 @@
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
message: '请输入正确的手机号码',
trigger: 'blur'
}
},
{
required: true, message: '请输入', trigger: 'blur'
}
]">
<el-input v-model="domain.lxdh" placeholder="请输入联系电话"></el-input>
</el-form-item>
@ -1437,11 +1440,14 @@
<el-col :span="12" style="margin-left: 10px;">
<el-form-item class="daoqitixingren" required :label="'联系电话' + (index == 0 ? '' : index)"
:prop="'xtyyUnit.' + index + '.lxdh'" :rules="[
{
{
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
message: '请输入正确的手机号码',
trigger: 'blur'
}
},
{
required: true, message: '请输入', trigger: 'blur'
}
]">
<el-input v-model="domain.lxdh" placeholder="请输入联系电话"></el-input>
</el-form-item>

@ -12,7 +12,7 @@
</el-col>
<el-col :span="7">
<el-form-item label="任务编号:">
<el-input v-model="formInline.taskId" placeholder="请输入"></el-input>
<el-input v-model="formInline.id" placeholder="请输入"></el-input>
</el-form-item>
</el-col>
<el-col :span="7">
@ -57,7 +57,7 @@
<span v-if="scope.row.taskStatus == 1" style="color: #F58A0C;">
进行中
</span>
<span v-if="scope.row.taskStatus == 2" style="color: #F50C0C;">
<span v-if="scope.row.taskStatus == 2" style="color: #76EE00;">
正常完成
</span>
<span v-if="scope.row.taskStatus == 3" style="color: #16B771;">
@ -80,7 +80,7 @@
style="color: #1485EF;cursor: pointer;">查看</span>
</div>
<!-- v-if="scope.row.taskStatus == 1" -->
<div style="display: flex;align-items: center;cursor: pointer;margin-left: 10px;" @click="delInfo(scope.row)">
<div style="display: flex;align-items: center;cursor: pointer;margin-left: 10px;" @click="delInfo(scope.row)" v-if="scope.row.taskStatus == 1">
<img src="@/assets/images/icon-shenhe@2x.png" alt="" style="width: 15px;margin-right: 5px;">
<span class="del-info"
style="color: #1485EF;cursor: pointer;">开始核查</span>

Loading…
Cancel
Save