终端培训更新
This commit is contained in:
parent
ab0ff8a248
commit
df5ceee7be
|
@ -32,6 +32,7 @@
|
||||||
<a-input v-model="form.remark" type="textarea" />
|
<a-input v-model="form.remark" type="textarea" />
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
<a-button htmlType="submit" type="primary" > 保存 </a-button>
|
<a-button htmlType="submit" type="primary" > 保存 </a-button>
|
||||||
|
<a-button htmlType="submit" type="primary" @click="() => { this.form.status = 2 }"> 保存并发布 </a-button>
|
||||||
</a-form-model>
|
</a-form-model>
|
||||||
</a-card>
|
</a-card>
|
||||||
</template>
|
</template>
|
||||||
|
@ -63,6 +64,7 @@ export default {
|
||||||
contact: '',
|
contact: '',
|
||||||
phone: '',
|
phone: '',
|
||||||
remark: '',
|
remark: '',
|
||||||
|
status: 1,
|
||||||
},
|
},
|
||||||
titleName: '新增终端培训',
|
titleName: '新增终端培训',
|
||||||
}
|
}
|
||||||
|
@ -94,10 +96,6 @@ export default {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
close() {
|
|
||||||
console.log('Form跳转页面', this.form)
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
console.log('1---', this.$store.state.user)
|
console.log('1---', this.$store.state.user)
|
||||||
|
|
|
@ -113,9 +113,11 @@ export default {
|
||||||
dataIndex: 'status',
|
dataIndex: 'status',
|
||||||
key: 'status',
|
key: 'status',
|
||||||
customRender: (text, record, index) => {
|
customRender: (text, record, index) => {
|
||||||
// 完成状态 0-未完成 1-已完成
|
if (text == '1') return '未发布'
|
||||||
if (text == 0) return '未完成'
|
else if (text == '2') return '未开始'
|
||||||
else if (text == 1) return '已完成'
|
else if (text == '3') return '进行中'
|
||||||
|
else if (text == '4') return '已结束'
|
||||||
|
else if (text == '5') return '已终止'
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{ title: '创建人员', width: 'auto', align: 'center', dataIndex: 'createBy', key: 'createBy' },
|
{ title: '创建人员', width: 'auto', align: 'center', dataIndex: 'createBy', key: 'createBy' },
|
||||||
|
@ -148,8 +150,8 @@ export default {
|
||||||
{ id: '5', name: '已终止' },
|
{ id: '5', name: '已终止' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{ type: 'date', placeholder: '开始时间', key: 'startDate', format:'yyyy-MM-dd' },
|
{ type: 'date', placeholder: '开始时间', key: 'startDate', format:'YYYY-MM-DD' },
|
||||||
{ type: 'date', placeholder: '结束时间', key: 'endDate', format:'yyyy-MM-dd' },
|
{ type: 'date', placeholder: '结束时间', key: 'endDate', format:'YYYY-MM-DD' },
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -168,7 +170,8 @@ export default {
|
||||||
terminalTrainDel({ ids: record.id }).then((res) => {
|
terminalTrainDel({ ids: record.id }).then((res) => {
|
||||||
console.log(res)
|
console.log(res)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.$message.info('删除成功')
|
this.$message.info('删除成功');
|
||||||
|
this.$refs.table.refresh();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -182,11 +185,11 @@ export default {
|
||||||
path: '/project/terminalTrain/detail',
|
path: '/project/terminalTrain/detail',
|
||||||
query: {
|
query: {
|
||||||
terminalTrainId: record.id,
|
terminalTrainId: record.id,
|
||||||
terminalTrainName: this.$route.query.terminalTrainName,
|
terminalTrainName: this.queryParam.name,
|
||||||
terminalTrainStatus: this.$route.query.terminalTrainStatus,
|
terminalTrainStatus: this.queryParam.status,
|
||||||
terminalTrainStartDate: this.$route.query.terminalTrainStartDate,
|
terminalTrainStartDate: this.queryParam.startDate,
|
||||||
terminalTrainEndDate: this.$route.query.terminalTrainEndDate,
|
terminalTrainEndDate: this.queryParam.endDate,
|
||||||
terminalTrainPageNum: this.$route.query.terminalTrainPageNum,
|
terminalTrainPageNum: this.$refs.table.localPagination.current,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
console.log('跳转详情页面 id:', record.id)
|
console.log('跳转详情页面 id:', record.id)
|
||||||
|
@ -197,11 +200,11 @@ export default {
|
||||||
path: '/project/terminalTrain/form',
|
path: '/project/terminalTrain/form',
|
||||||
query: {
|
query: {
|
||||||
id: record.id, //编辑
|
id: record.id, //编辑
|
||||||
terminalTrainName: this.$route.query.terminalTrainName,
|
terminalTrainName: this.queryParam.name || null,
|
||||||
terminalTrainStatus: this.$route.query.terminalTrainStatus,
|
terminalTrainStatus: this.queryParam.status || null,
|
||||||
terminalTrainStartDate: this.$route.query.terminalTrainStartDate,
|
terminalTrainStartDate: this.queryParam.startDate || null,
|
||||||
terminalTrainEndDate: this.$route.query.terminalTrainEndDate,
|
terminalTrainEndDate: this.queryParam.endDate || null,
|
||||||
terminalTrainPageNum: this.$route.query.terminalTrainPageNum,
|
terminalTrainPageNum: this.$refs.table.localPagination.current || null,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
console.log('编辑 id:', record)
|
console.log('编辑 id:', record)
|
||||||
|
|
Loading…
Reference in New Issue