|
@@ -136,6 +136,15 @@
|
|
|
|
|
|
<el-table-column prop="createTime" label="发起时间" align="center" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
+ <span>{{ scope.row.createTime }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ width="80"
|
|
|
+ label="操作"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
|
|
@@ -144,6 +153,7 @@
|
|
|
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+
|
|
|
</el-table>
|
|
|
<!-- <el-pagination class="pageBox" @current-change="currchangeOp" layout="total,prev, pager, next" background
|
|
|
:total="totalOp" v-if="tabbox3" page-size="10">
|
|
@@ -421,7 +431,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
//催办按钮
|
|
|
- handleEdit(index, row) {
|
|
|
+ handleEdit(index, row) {
|
|
|
this.open(row);
|
|
|
|
|
|
},
|
|
@@ -495,7 +505,8 @@ export default {
|
|
|
this.popupWindow();
|
|
|
});
|
|
|
},
|
|
|
- //接收数据判断是否弹窗
|
|
|
+
|
|
|
+ //接收数据判断是否弹窗
|
|
|
popupWindow(){
|
|
|
this.$http({
|
|
|
url: "/market/remind/queryListByNo",
|
|
@@ -520,6 +531,7 @@ export default {
|
|
|
console.log(11);
|
|
|
},
|
|
|
|
|
|
+
|
|
|
//待办列表初始化
|
|
|
daiban(v, n) {
|
|
|
this.pageSizeDdaiban = n;
|
|
@@ -651,7 +663,9 @@ export default {
|
|
|
this.getOPlist({}, 1);
|
|
|
this.userInfo = JSON.parse(window.sessionStorage.userInfo);
|
|
|
},
|
|
|
- created() { },
|
|
|
+ created() {
|
|
|
+ this.popupWindow();
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
|