|
@@ -66,6 +66,7 @@
|
|
|
<el-select
|
|
|
v-model="curRow.currentLink"
|
|
|
placeholder="请选择"
|
|
|
+ @change="operationMethods"
|
|
|
>
|
|
|
<el-option
|
|
|
label="进入人工预处理环境"
|
|
@@ -77,6 +78,16 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
+ <div class="flex jc-al-c" v-show="operation.show">
|
|
|
+ <span class="mg-r-20" style="font-size: 25px">预计处理截止时间</span>
|
|
|
+ <el-date-picker
|
|
|
+ v-model="operation.manageTime"
|
|
|
+ type="date"
|
|
|
+ format="yyyy-MM-dd"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择日期"
|
|
|
+ ></el-date-picker>
|
|
|
+ </div>
|
|
|
<span
|
|
|
slot="footer"
|
|
|
class="dialog-footer"
|
|
@@ -100,6 +111,10 @@ export default {
|
|
|
activeIndex: "1",
|
|
|
curRow: {},
|
|
|
dialogVisible: false,
|
|
|
+ operation:{
|
|
|
+ manageTime: '',
|
|
|
+ show: false
|
|
|
+ },
|
|
|
page: {
|
|
|
total: 1,
|
|
|
currentPage: 1,
|
|
@@ -175,6 +190,12 @@ export default {
|
|
|
init () {
|
|
|
this.queryBusinessUserOpinionList()
|
|
|
},
|
|
|
+ operationMethods(){
|
|
|
+ this.operation.show = this.curRow.currentLink == 2;
|
|
|
+ if(!this.operation.show){
|
|
|
+ this.operation.manageTime = '';
|
|
|
+ }
|
|
|
+ },
|
|
|
openPreview (imageUrl, index) {
|
|
|
let imageUrls = []
|
|
|
imageUrl.forEach(val => {
|
|
@@ -189,6 +210,7 @@ export default {
|
|
|
},
|
|
|
changeProgres (row) {
|
|
|
this.curRow = { ...row }
|
|
|
+ this.operation.show = this.curRow.currentLink == 2;
|
|
|
this.dialogVisible = true;
|
|
|
},
|
|
|
handleSelect (key) {//消息分类菜单激活回调
|
|
@@ -199,7 +221,8 @@ export default {
|
|
|
currentLinkId: this.curRow.currentLinkId,
|
|
|
currentLink: this.curRow.currentLink,
|
|
|
newNumber: this.curRow.newNumber,
|
|
|
- userOpinionId: this.curRow.userOpinionId
|
|
|
+ userOpinionId: this.curRow.userOpinionId,
|
|
|
+ manageTime: this.operation.manageTime
|
|
|
})
|
|
|
},
|
|
|
//#region 分页
|