123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- <template>
- <view class="crafting-dialog" v-if="visible" @click.stop>
- <view class="dialog-mask" @click="onClose"></view>
- <view class="dialog-content" :class="{ 'slide-up': visible }">
- <!-- 顶部标题栏 -->
- <view class="dialog-header">
- <text class="title">初级工具台</text>
- <!-- <view class="close-btn" @click="onClose">×</view> -->
- </view>
-
- <!-- 制造台内容 -->
- <view class="dialog-body">
- <view class="crafting-content">
- <!-- 工具格子列表 -->
- <scroll-view
- class="tools-scroll"
- scroll-x="true"
- :scroll-left="scrollLeft"
- @scroll="onScroll"
- @touchstart.native="onTouchStart"
- @touchmove.native="onTouchMove"
- @touchend.native="onTouchEnd"
- :scroll-with-animation="true"
- :enhanced="true"
- :show-scrollbar="false"
- :bounces="false"
- >
- <view class="tools-grid" @touchstart.stop="onTouchStart" @touchmove.stop="onTouchMove" @touchend.stop="onTouchEnd">
- <view
- v-for="(tool, index) in tools"
- :key="index"
- class="tool-item"
- :class="{ 'selected': selectedToolIndex === index }"
- @click="selectTool(index)"
- >
- <image :src="tool.image" mode="aspectFit" class="tool-image"></image>
- <text class="tool-name">{{ tool.name }}</text>
- </view>
- </view>
- </scroll-view>
-
- <!-- 选中工具的详情 -->
- <view class="tool-details" v-if="selectedTool">
- <text class="tool-description">{{ getToolDescription(selectedTool) }}</text>
- <view class="materials-row">
- <view class="materials">
- <view class="material-item">
- <image src="/static/island/items/item_wood1.png" mode="aspectFit" class="material-icon"></image>
- <text class="material-count">{{ selectedTool.price }}</text>
- </view>
- <view class="material-item">
- <image src="/static/island/items/item_mine1.png" mode="aspectFit" class="material-icon"></image>
- <text class="material-count">{{ selectedTool.limit_time }}</text>
- </view>
- <view class="material-item">
- <image src="/static/island/UI/wd_icon_xingyuan.png" mode="aspectFit" class="material-icon"></image>
- <text class="material-count">{{ selectedTool.num_out }}</text>
- </view>
- </view>
- <view class="craft-btn" @click="onCraft">打造</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'CraftingDialog',
- props: {
- visible: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- selectedToolIndex: 0,
- scrollLeft: 0,
- startX: 0,
- lastX: 0,
- isDragging: false,
- tools: [],
- loading: false
- }
- },
- computed: {
- selectedTool() {
- return this.tools[this.selectedToolIndex]
- }
- },
- watch: {
- visible(val) {
- if (val) {
- this.fetchCraftingData()
- }
- }
- },
- methods: {
- onClose() {
- this.$emit('close')
- },
- selectTool(index) {
- this.selectedToolIndex = index
- },
- onCraft() {
- // TODO: 实现制造逻辑
- uni.showToast({
- title: `你的材料不足`,
- icon: 'none'
- })
- },
- onScroll(e) {
- console.log('滚动事件:', {
- scrollLeft: e.detail.scrollLeft
- });
- this.scrollLeft = e.detail.scrollLeft;
- },
- onTouchStart(e) {
- console.log('触摸开始:', {
- clientX: e.touches[0].clientX,
- pageX: e.touches[0].pageX,
- screenX: e.touches[0].screenX,
- target: e.target
- });
- this.startX = e.touches[0].clientX;
- this.isDragging = true;
- e.preventDefault && e.preventDefault();
- },
- onTouchMove(e) {
- if (!this.isDragging) return;
- const currentX = e.touches[0].clientX;
- const deltaX = this.startX - currentX;
- console.log('触摸移动:', {
- currentX,
- startX: this.startX,
- deltaX,
- scrollLeft: this.scrollLeft,
- target: e.target
- });
- this.scrollLeft += deltaX;
- this.startX = currentX;
- e.preventDefault && e.preventDefault();
- },
- onTouchEnd(e) {
- console.log('触摸结束:', {
- finalScrollLeft: this.scrollLeft,
- target: e.target
- });
- this.isDragging = false;
- e.preventDefault && e.preventDefault();
- },
- // 获取制造工具数据
- async fetchCraftingData() {
- if (this.loading) return
- this.loading = true
- try {
- uni.request({
- url: this.$apiHost + '/Game/get_crafting_list',
- method: 'GET',
- data: {
- uuid: getApp().globalData.uuid
- },
- header: {
- 'Content-Type': 'application/x-www-form-urlencoded',
- 'sign': getApp().globalData.headerSign,
- },
- success: (res) => {
- console.log("制造工具数据:", res.data)
- if (res.data && res.data.code === 0) {
- this.tools = res.data.list || []
- } else {
- uni.showToast({
- title: res.data?.msg || '获取制造工具数据失败',
- icon: 'none'
- })
- }
- },
- fail: (err) => {
- console.error('获取制造工具数据异常', err)
- uni.showToast({
- title: '网络异常,请重试',
- icon: 'none'
- })
- },
- complete: () => {
- this.loading = false
- }
- })
- } catch (error) {
- console.error('获取制造工具数据异常', error)
- uni.showToast({
- title: '网络异常,请重试',
- icon: 'none'
- })
- this.loading = false
- }
- },
- // 获取工具描述
- getToolDescription(tool) {
- if (!tool) return ''
-
- const descriptions = {
- 1: '可以让你用来捕捉大虫',
- 2: '用来挖掘矿石',
- 3: '用来挖掘地面',
- 4: '用来砍伐树木'
- }
-
- return descriptions[tool.id] || '工具描述'
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .crafting-dialog {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 1000;
-
- .dialog-mask {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.5);
- }
-
- .dialog-content {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- background: #E79D5E;
- box-shadow: inset 0rpx 4rpx 4rpx 0rpx rgba(255,190,134,0.3);
- border-radius: 20rpx 20rpx 0rpx 0rpx;
- transform: translateY(100%);
- transition: transform 0.3s ease-out;
-
- &.slide-up {
- transform: translateY(0);
- }
- }
-
- .dialog-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 32rpx;
- height: 72rpx;
- width: 220rpx;
- background: #FDDEC1;
- box-shadow: inset 0rpx 4rpx 4rpx 0rpx rgba(255,190,134,0.3);
- border-radius: 20rpx 20rpx 0rpx 0rpx;
-
- .title {
- font-size: 36rpx;
- font-weight: bold;
- padding-left: 20rpx;
- color: #A95F3C;
- }
-
- .close-btn {
- font-size: 48rpx;
- color: #999;
- padding: 0 20rpx;
- }
- }
-
- .dialog-body {
- background: #FDDEC1;
- margin-top: -32rpx;
- }
-
- .crafting-content {
- padding-bottom: 32rpx;
- .tools-scroll {
- width: 100%;
- white-space: nowrap;
- // margin-bottom: 32rpx;
-
- .tools-grid {
- display: flex;
- width: max-content;
- padding: 20rpx;
-
- .tool-item {
- width: 180rpx;
- height: 180rpx;
- flex-shrink: 0;
- margin-right: 20rpx;
- background: #FFF1E4;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- padding: 5rpx;
- text-align: center;
- border: 2rpx solid #DEB691;
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: center;
-
- &:last-child {
- margin-right: 20rpx;
- }
-
- &.selected {
- border: 4rpx solid #84B654;
- background: #E8F5E9;
- }
-
- .tool-image {
- width: 178rpx;
- height: 178rpx;
- // margin: 2rpx;
- background: #FBD6A9;
- border-radius: 16rpx;
- // padding: 10rpx;
- box-sizing: border-box;
- }
-
- .tool-name {
- font-size: 28rpx;
- font-weight: bold;
- color:#A95F3C;
- white-space: normal;
- line-height: 1.2;
- width: 100%;
- padding: 12rpx 0;
- background: rgba(255, 255, 255, 0.8);
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- border-radius: 0 0 20rpx 20rpx;
- }
- }
- }
- }
-
- .tool-details {
- width: 694rpx;
- height: 170rpx;
- background: #FFF1E4;
- box-shadow: inset 0rpx 6rpx 0rpx 0rpx rgba(255,255,255,0.3), inset 0rpx -6rpx 0rpx 0rpx #F6E0CB, 0rpx 4rpx 4rpx 0rpx #F3D2B2;
- border-radius: 28rpx 28rpx 28rpx 28rpx;
- border: 2rpx solid #DEB691;
- margin: 0 auto;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
-
- .tool-description {
- font-size: 28rpx;
- font-weight: bold;
- color: #A95F3C;
- margin-bottom: 16rpx;
- line-height: 1.4;
- }
-
- .materials-row {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 32rpx;
- }
-
- .materials {
- display: flex;
- gap: 32rpx;
-
- .material-item {
- display: flex;
- align-items: center;
- gap: 8rpx;
-
- .material-icon {
- width: 40rpx;
- height: 40rpx;
- }
-
- .material-count {
- font-size: 28rpx;
- color: #A95F3C;
- }
- }
- }
-
- .craft-btn {
- width: 144rpx;
- height: 53rpx;
- background: url('/static/island/UI/btn_green.png') no-repeat;
- background-size: 100% 100%;
- color: white;
- font-size: 28rpx;
- border: none;
- display: flex;
- align-items: center;
- justify-content: center;
-
- &:active {
- opacity: 0.9;
- }
- }
- }
- }
- }
- </style>
|