yangys
2024-02-01 e152fb6dec430912ea64599c21de16dc7972e3a4
修改按钮文字;设备维护查询的参数名
已修改4个文件
16 ■■■■ 文件已修改
src/container/Map/Map.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/container/deviceType/Manage-add-update.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/container/deviceType/index.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/container/maintenance/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/container/Map/Map.vue
@@ -11,7 +11,7 @@
                <slot name="tool"></slot>
                <el-button v-show="!id" class="input" type="ghost" size="mini" @click="out">退出</el-button>
                <el-button class="input" type="ghost" size="mini" @click="save">保存</el-button>
                <el-button v-show="id" class="input" type="ghost" size="mini" @click="del">删除</el-button>
                <el-button v-show="id" class="input" type="ghost" size="mini" @click="del">删除该地图</el-button>
                <span>行数:</span>
                <el-input style="width: 70px;" class="input" v-show="status !== 2" v-model="rows" />
                <span>列数:</span>
@@ -419,7 +419,7 @@
            this.currentAdd = v
        },
        del() {
            this.$confirm('确定要永久删除此厂房,关联的设备将重置?', '提示', {
            this.$confirm('确定要永久删除此地图,关联的设备将重置?', '提示', {
                confirmButtonText: '确定',
                cancelButtonText: '取消',
                type: 'warning'
src/container/deviceType/Manage-add-update.vue
@@ -12,7 +12,7 @@
          
          <el-col :xs="24":sm="6":md="6":lg="6":xl="6">
            <el-form-item label="名称" prop="name">
              <el-input v-model="dataForm.name" placeholder="名称" clearable></el-input>
              <el-input v-model="dataForm.name" placeholder="名称" maxlength="80" clearable></el-input>
            </el-form-item>
          </el-col>
          
src/container/deviceType/index.vue
@@ -21,13 +21,13 @@
            </template>
            
            <template slot="table-tool">
                <el-button type="primary" size="mini" style="width: 150px;" @click="add">新增设备类型</el-button>
                <el-button type="primary" size="mini" style="width: 150px;" @click="add">新增</el-button>
            </template>
            
            <template slot="columns">
                <el-table-column
                    prop="id"
                    label="ID"
                    type="index"
                    label="序号"
                    width="180">
                </el-table-column>
                <el-table-column
src/container/maintenance/index.vue
@@ -15,7 +15,7 @@
                </div>
                <div class="item">
                    <span>设备名称</span>
                    <el-select class="item-value" v-model="queryInfo.machineName" placeholder="请选择" clearable>
                    <el-select class="item-value" v-model="queryInfo.machineId" placeholder="请选择" clearable>
                        <el-option v-for="item in machineList" :key="item.id" :label="item.machineName" :value="item.id">
                        </el-option>
                    </el-select>
@@ -149,7 +149,7 @@
            machineList: [],
            queryInfo: {
                uuid: '',
                machineName: '',
                machineId: '',
                style: 1,
                type: '',
                specification: '',