|
|
@@ -34,7 +34,7 @@
|
|
|
{{ getOptionLabel(opt) }}
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="forward-btn bottom-btn" v-if="curRole == 2">转发给客户</div>
|
|
|
+ <div class="forward-btn bottom-btn" v-if="curRole == 2" @click="handleForward">转发给客户</div>
|
|
|
</div>
|
|
|
</Popup>
|
|
|
<Popup v-model:show="noShow" class="no-popup">
|
|
|
@@ -240,6 +240,11 @@ const noPopupBtn = async () => {
|
|
|
// url: `/pages/subPages/share_page/index?pageParams=${JSON.stringify(query)}&type=priceSheet`,
|
|
|
// });
|
|
|
};
|
|
|
+
|
|
|
+const handleForward = () => {
|
|
|
+ // noPopupBtn();
|
|
|
+};
|
|
|
+
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.problem-reminder-popup {
|