|
@@ -114,7 +114,12 @@ export default {
|
|
|
matchingCond: '', // 模糊匹配 - 编码、主题
|
|
|
productCond: [1, 2, 3], // 产线条件
|
|
|
stateCond: [], // 状态条件
|
|
|
- orders: [],
|
|
|
+ orders: [
|
|
|
+ {
|
|
|
+ column: 'modifiedTime',
|
|
|
+ asc: false
|
|
|
+ }
|
|
|
+ ],
|
|
|
line: { 1: '业务', 2: '研发', 3: '实施' },
|
|
|
state: { 1: '待回复', 2: '已接受', 3: '已拒绝', 4: '待完善', 5: '论证中' },
|
|
|
header: [
|
|
@@ -172,6 +177,7 @@ export default {
|
|
|
},
|
|
|
async DetailSave (detail) {
|
|
|
await this.$axios.post(this.$api.demandSave, detail)
|
|
|
+ this.getTableData()
|
|
|
},
|
|
|
// 触发 新增需求弹窗
|
|
|
addDemand () {
|