快乐的昕的电脑
2025-10-09 274cafb66b543b8d3cfe651c3c7783dd3d3a01b5
components/mold.vue
@@ -1,23 +1,33 @@
<template>
   <view class="page">
      <!-- 刀具选择区 -->
      <view class="top-section">
         <view class="form-row">
      <view class="top-section-grid">
         <view class="form-cell">
            <label class="form-label">选择刀具编号:</label>
            <select v-model="selectedToolNo" class="form-select">
               <option v-for="tool in toolList" :key="tool.no" :value="tool.no">{{ tool.no }} | {{ tool.name }}</option>
            </select>
            <button class="btn-blue" @click="showToolDialog = true">刀具目录</button>
         </view>
         <view class="form-row">
         <view class="form-cell">
            <label class="form-label">设置使用上限:</label>
            <input class="input" type="number" v-model="useLimitInput" placeholder="每次换刀后手填" :disabled="!selectedToolNo" />
            <!-- 滑条控件 -->
            <input type="range"
                  min="0"
                  max="10000"
                  step="1"
                  v-model="useLimitInput"
                  :disabled="!selectedToolNo"
                  class="slider"
                  style="width: 160px; margin: 0 8px;" />
            <span style="min-width: 50px; display: inline-block;">{{ useLimitInput }}</span>
            <button class="btn-blue" @click="setUseLimit" :disabled="!selectedToolNo || !useLimitInput">保存上限</button>
         </view>
         <view class="form-row">
         <view class="form-cell">
            <label class="form-label">刀具名称:</label>
            <input class="input" v-model="toolName" placeholder="刀具带出" disabled />
            <label class="form-label" style="margin-left: 24px;">规格型号:</label>
            <label class="form-label" style="margin-left: 16px;">规格型号:</label>
            <input class="input" v-model="toolModel" placeholder="刀具带出" disabled />
         </view>
      </view>
@@ -42,8 +52,15 @@
               </button>
            </view>
            <view class="dialog-actions">
               <button class="btn-blue" @click="confirmTool">确定</button>
               <button class="btn-disabled" @click="showToolDialog = false">取消</button>
               <div style="display: flex; align-items: center;">
                  <button class="btn-blue" @click="prevPage" :disabled="pageIndex === 1">上一页</button>
                  <span style="margin: 0 12px;">第{{ pageIndex }}页 / 共{{ totalPages }}页</span>
                  <button class="btn-blue" @click="nextPage" :disabled="pageIndex === totalPages">下一页</button>
               </div>
               <div>
                  <button class="btn-blue" @click="confirmTool">确定</button>
                  <button class="btn-disabled" @click="showToolDialog = false">取消</button>
               </div>
            </view>
         </view>
      </view>
@@ -97,11 +114,10 @@
   export default {
      data() {
         return {
            toolList: [
               // 示例数据,实际应从后端接口获取
               { no: 'T22050338', name: 'm1.5合金长刀', model: 'xxx' },
               { no: 'T22050337', name: 'm0.546合金长刀', model: 'yyy' }
            ],
            pageIndex: 1,
            pageSize: 20,
            total: 0,
            toolList: [],
            selectedToolNo: '',
            toolName: '',
            toolModel: '',
@@ -115,11 +131,49 @@
            ]
         };
      },
      computed: {
         totalPages() {
            return Math.ceil(this.total / this.pageSize) || 1;
         }
      },
      methods: {
         searchTool() {
            this.filteredTools = this.toolList.filter(t =>
               t.no.includes(this.searchKey) || t.name.includes(this.searchKey)
            );
         async fetchTools(searchKey) {
            const res = await this.$post({
               url: '/MesCutterLedger/QueryTools',
               data: JSON.stringify({
                  searchKey,
                  pageIndex: this.pageIndex,
                  pageSize: this.pageSize
               }),
               headers: { 'Content-Type': 'application/json' }
            });
            if (res.status === 0) {
               this.filteredTools = res.data.tbBillList.map(t => ({
                  no: t.cutterId || t.no,
                  name: t.cutterName || t.name,
                  model: t.cutterModel || t.model
               }));
               this.total = res.data.total || 0; // 假设后端返回总数
            } else {
               this.$showMessage(res.message || '查询失败');
            }
         },
         //翻页
         async prevPage() {
            if (this.pageIndex > 1) {
               this.pageIndex--;
               await this.fetchTools(this.searchKey);
            }
         },
         async nextPage() {
            if (this.pageIndex < this.totalPages) {
               this.pageIndex++;
               await this.fetchTools(this.searchKey);
            }
         },
         async searchTool() {
            this.pageIndex = 1; // 搜索时重置到第一页
            await this.fetchTools(this.searchKey);
         },
         selectTool(tool) {
            this.selectedToolNo = tool.no;
@@ -141,32 +195,61 @@
            this.selectedToolNo = '';
            this.toolName = '';
            this.toolModel = '';
         },
         setUseLimit() {
            // 保存使用上限逻辑,实际应调用后端接口
            this.$showMessage('使用上限已保存(示例)');
         }
      },
      mounted() {
         // 实际应从后端加载刀具目录和使用记录
         this.filteredTools = this.toolList;
         // 页面加载时拉取全部刀具
         this.fetchTools('');
      }
   };
</script>
<style scoped>
   .form-row {
   .top-section-grid {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: 32px;
      margin-bottom: 2vh;
   }
   .form-cell {
      display: flex;
      align-items: center;
      margin-bottom: 1.2vh;
   }
   .form-label {
      width: 120px;
      width: 90px;
      font-weight: bold;
   }
   .form-select {
      width: 220px;
   .input {
      padding: 1vh;
      font-size: 1.1vw;
      margin-right: 10px;
      border: 1px solid #ccc;
      width: 10vw;
      margin-right: 8px;
   }
   .form-select {
      width: 12vw;
      padding: 1vh;
      font-size: 1.1vw;
      margin-right: 8px;
   }
   .btn-blue {
      background-color: #00A2E9;
      color: white;
      border: none;
      padding: 8px 18px;
      margin-left: 8px;
      border-radius: 5px;
      cursor: pointer;
   }
   .button-row {
@@ -176,51 +259,20 @@
      margin: 2vh 0;
   }
   .page {
      padding: 2vh;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
   }
   .top-section {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 2vh;
   }
   .form-group {
      display: flex;
      align-items: center;
      margin-right: 2vw;
      margin-bottom: 1.5vh;
   }
   .input {
      padding: 1vh;
      font-size: 1.5vw;
      border: 1px solid #ccc;
      width: 16vw;
   }
   .btn-blue {
   .save-btn, .cancel-btn {
      width: 28%;
      padding: 1.5vh;
      background-color: #00A2E9;
      color: white;
      font-size: 1.2vw;
      border: none;
      padding: 8px 18px;
      margin-left: 10px;
      text-align: center;
      border-radius: 5px;
      cursor: pointer;
   }
   .btn-disabled {
   .cancel-btn {
      background-color: #ccc;
      color: white;
      border: none;
      padding: 8px 18px;
      margin-left: 10px;
      border-radius: 5px;
      cursor: not-allowed;
      color: #333;
   }
   .dialog-overlay {
@@ -292,23 +344,11 @@
      margin-top: 2vh;
   }
   .save-btn, .cancel-btn {
      width: 28%;
      padding: 1.5vh;
      background-color: #00A2E9;
      color: white;
      font-size: 1.2vw;
      border: none;
      text-align: center;
      border-radius: 5px;
   }
   .cancel-btn {
      background-color: #ccc;
      color: #333;
   }
   .tool-desc {
      margin-top: 2vh;
   }
   .slider {
      vertical-align: middle;
   }
</style>