|
|
@@ -24,7 +24,7 @@
|
|
|
<Cell v-for="(item, index) in dataList" :key="index" @click="signer(item)">
|
|
|
<template #title>
|
|
|
<Icon :name="iconName(item.recordstatus)"></Icon>
|
|
|
- <Button :disable="item.recordstatus === 2">{{ item.templatename }}</Button>
|
|
|
+ <Button :disable="item.recordstatus === 2" :text="true">{{ item.templatename }}</Button>
|
|
|
</template>
|
|
|
</Cell>
|
|
|
</CellGroup>
|
|
|
@@ -138,7 +138,6 @@ onMounted(() => {
|
|
|
if (res.data.length != 0) {
|
|
|
dataList.value = res.data
|
|
|
}
|
|
|
-
|
|
|
/// 只有全部签署才可以进行下一步
|
|
|
canAdd.value = res.data.some(obj => { [1, 2, 4].includes(obj.recordstatus) })
|
|
|
},
|