|
@@ -62,7 +62,10 @@
|
|
:close-on-click-modal="false"
|
|
:close-on-click-modal="false"
|
|
>
|
|
>
|
|
<div class="flex jc-al-c">
|
|
<div class="flex jc-al-c">
|
|
- <span class="mg-r-20 titl-font">提交进度</span>
|
|
|
|
|
|
+ <span
|
|
|
|
+ class="mg-r-20 titl-font"
|
|
|
|
+ style="width:180px;text-align:right;"
|
|
|
|
+ >提交进度</span>
|
|
<el-select
|
|
<el-select
|
|
v-model="curRow.currentLink"
|
|
v-model="curRow.currentLink"
|
|
placeholder="请选择"
|
|
placeholder="请选择"
|
|
@@ -79,13 +82,11 @@
|
|
</el-select>
|
|
</el-select>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
|
|
+ style="margin-top:40px;"
|
|
class="flex jc-al-c"
|
|
class="flex jc-al-c"
|
|
v-show="operation.show"
|
|
v-show="operation.show"
|
|
>
|
|
>
|
|
- <span
|
|
|
|
- class="mg-r-20"
|
|
|
|
- style="font-size: 25px"
|
|
|
|
- >预计处理截止时间</span>
|
|
|
|
|
|
+ <span style="font-size: 16px;margin-right:20px;width:180px;text-align:right;font-weight: 900;">*预计处理截止时间</span>
|
|
<el-date-picker
|
|
<el-date-picker
|
|
v-model="operation.manageTime"
|
|
v-model="operation.manageTime"
|
|
type="date"
|
|
type="date"
|
|
@@ -233,13 +234,29 @@ export default {
|
|
this.activeIndex = key
|
|
this.activeIndex = key
|
|
},
|
|
},
|
|
async SubmissionProgress () {//提交进度弹框保存按钮事件
|
|
async SubmissionProgress () {//提交进度弹框保存按钮事件
|
|
- await this.manageUserOperationStatus({
|
|
|
|
- currentLinkId: this.curRow.currentLinkId,
|
|
|
|
- currentLink: this.curRow.currentLink,
|
|
|
|
- newNumber: this.curRow.newNumber,
|
|
|
|
- userOpinionId: this.curRow.userOpinionId,
|
|
|
|
- manageTime: this.operation.manageTime
|
|
|
|
- })
|
|
|
|
|
|
+ if (this.curRow.currentLink == 2) {
|
|
|
|
+ if (this.operation.manageTime) {
|
|
|
|
+ await this.manageUserOperationStatus({
|
|
|
|
+ currentLinkId: this.curRow.currentLinkId,
|
|
|
|
+ currentLink: this.curRow.currentLink,
|
|
|
|
+ newNumber: this.curRow.newNumber,
|
|
|
|
+ userOpinionId: this.curRow.userOpinionId,
|
|
|
|
+ manageTime: this.operation.manageTime
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ this.$message({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: '请设置预计处理截止时间'
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ await this.manageUserOperationStatus({
|
|
|
|
+ currentLinkId: this.curRow.currentLinkId,
|
|
|
|
+ currentLink: this.curRow.currentLink,
|
|
|
|
+ newNumber: this.curRow.newNumber,
|
|
|
|
+ userOpinionId: this.curRow.userOpinionId
|
|
|
|
+ })
|
|
|
|
+ }
|
|
},
|
|
},
|
|
//#region 分页
|
|
//#region 分页
|
|
currentChange (val) {
|
|
currentChange (val) {
|