添加sop管理

This commit is contained in:
zhonghua.li
2026-04-23 16:27:48 +08:00
parent e1276a1906
commit 44dcc4b2b2
49 changed files with 817 additions and 456 deletions

View File

@@ -22,6 +22,11 @@
<text class="function-name">话术管理</text>
<text class="function-desc"></text>
</view>
<view class="function-item" @click="openSopManagement">
<view class="function-icon">📘</view>
<text class="function-name">SOP管理</text>
<text class="function-desc"></text>
</view>
</view>
</view>
@@ -89,6 +94,14 @@ export default {
},
});
},
openSopManagement() {
uni.navigateTo({
url: '/pages-subpackage/furniture_reception/sop_management_my',
fail: () => {
uni.showToast({ title: '跳转SOP管理失败', icon: 'none' });
},
});
},
},
};
</script>