|
@@ -93,7 +93,7 @@
|
|
|
<a-button type="link" danger size="small" v-if="hasPerm('qySecondlineHzdTzDelete') && (record.status == 1 || record.status == 4)">删除</a-button>
|
|
|
</a-popconfirm>
|
|
|
<a @click="onDetail(record, false,true)">复制</a>
|
|
|
- <a @click="onDetail(record)" v-if="record.status == 3">变更</a>
|
|
|
+ <a @click="onDetail(record, false, false, 'bgsq')" v-if="record.status == 3">变更</a>
|
|
|
<a @click="onBack(record)" v-if="record.status == 2">撤回</a>
|
|
|
</a-space>
|
|
|
</template>
|
|
@@ -248,10 +248,10 @@
|
|
|
})
|
|
|
}
|
|
|
// 切换至表单
|
|
|
- const onDetail = (record = null, view, copy) => {
|
|
|
+ const onDetail = (record = null, view, copy, sblx) => {
|
|
|
indexShow.value = false
|
|
|
nextTick(() => {
|
|
|
- detailRef.value.onOpen(record, view, copy)
|
|
|
+ detailRef.value.onOpen(record, view, copy, sblx)
|
|
|
})
|
|
|
}
|
|
|
const onBack = (record) => {
|