添加流程页面

This commit is contained in:
zhengw
2026-02-13 12:38:48 +08:00
parent d9fe6c048f
commit b17edae159
13 changed files with 226 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
<page-plugin isAuth="{{authInfo['SF_PROCESS_CONFIG_VIEW']}}" loading="{{loading}}"
is-login="{{isLogin}}" bind:handleLogin="handleLogin">
<t-cell-group custom-style="margin: 0">
<block wx:for="{{list}}" wx:key="index">
<t-cell title="{{item.process_name}}" note="{{item.process_code}}" data-index="{{index}}"
bind:tap="onChildProcess" description="提成值: {{item.bonus_value || '未配置'}}">
<view slot="left-icon" style="color: #999;line-height: 1.5;">
{{index + 1}}
</view>
</t-cell>
</block>
</t-cell-group>
</page-plugin>