| | |
| | | </view> |
| | | |
| | | <view class="card-footer"> |
| | | <button |
| | | v-if="item.processInsId" |
| | | class="action-btn view-btn" |
| | | @click="goToDetail(item)" |
| | | > |
| | | <uni-icons type="eye" size="16" color="#1E88E5"></uni-icons> |
| | | <text>查看流程</text> |
| | | </button> |
| | | <!-- <button --> |
| | | <!-- v-if="item.processInsId" --> |
| | | <!-- class="action-btn view-btn" --> |
| | | <!-- @click="goToDetail(item)"--> |
| | | <!-- >--> |
| | | <!-- <uni-icons type="eye" size="16" color="#1E88E5"></uni-icons>--> |
| | | <!-- <text>查看流程</text>--> |
| | | <!-- </button>--> |
| | | |
| | | <button |
| | | v-if="isReserve" |
| | | v-if="isReserve && item.processInsId " |
| | | class="action-btn process-btn" |
| | | @click="openOpProcess(item)" |
| | | > |
| | |
| | | const options = this.dict.type[dictType] || [] |
| | | const option = options.find(opt => opt.value == value) |
| | | return option ? option.label : value |
| | | }, |
| | | |
| | | /** 前往详情页 */ |
| | | goToDetail(item) { |
| | | uni.navigateTo({ |
| | | |
| | | url: `/subpackage/manager/project-detail?data=${encodeURIComponent(JSON.stringify(item))}` |
| | | }) |
| | | }, |
| | | |
| | | /** 打开操作流程 */ |