Browse Source

2026-06-18

技术参数卡有更新时间没有更新人
master
fengyuan_yang 2 days ago
parent
commit
db59b5f741
  1. 34
      src/views/modules/sampleManagement/technicalSpecificationList.vue

34
src/views/modules/sampleManagement/technicalSpecificationList.vue

@ -1581,9 +1581,15 @@
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
row.username = this.$store.state.user.name
row.nodeConclusion = 'B'
bmStatusToDead(row).then(({data}) => {
const operator = this.$store.state.user.name
const params = {
...row,
userName: operator,
username: operator,
updateBy: operator,
nodeConclusion: 'B'
}
bmStatusToDead(params).then(({data}) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.$message.success( '操作成功') this.$message.success( '操作成功')
this.search() this.search()
@ -1601,8 +1607,14 @@
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
row.username = this.$store.state.user.name
bmStatusToCg(row).then(({data}) => {
const operator = this.$store.state.user.name
const params = {
...row,
userName: operator,
username: operator,
updateBy: operator
}
bmStatusToCg(params).then(({data}) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.$message.success( '操作成功') this.$message.success( '操作成功')
this.search() this.search()
@ -1620,9 +1632,15 @@
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
row.username = this.$store.state.user.name
row.nodeConclusion = 'A'
bmStatusToFinish(row).then(({data}) => {
const operator = this.$store.state.user.name
const params = {
...row,
userName: operator,
username: operator,
updateBy: operator,
nodeConclusion: 'A'
}
bmStatusToFinish(params).then(({data}) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.$message.success( '操作成功') this.$message.success( '操作成功')
this.search() this.search()

Loading…
Cancel
Save