唐耀东
2022-06-11 35bff42b22d092d164ef4b9db8701f839c57bd9c
提交代码
4个文件已修改
23 ■■■■■ 已修改文件
src/views/components/manufacturer/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/components/nvr/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/components/peripheralUnit/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/construction/ipc/index.vue 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/components/manufacturer/index.vue
@@ -65,9 +65,9 @@
  },
  methods: {
    handleClear () {
      this.currentId = '';
      this.currentId = undefined;
      this.name = undefined;
      this.$emit("change", '');
      this.$emit("change", undefined);
    },
    getCurrentRow (e) {
      this.currentId = e.id
src/views/components/nvr/index.vue
@@ -69,9 +69,9 @@
  },
  methods: {
    handleClear () {
      this.currentId = '';
      this.currentId = undefined;
      this.name = undefined;
      this.$emit("change", '');
      this.$emit("change", undefined);
      this.$emit('nvrIdChange')
    },
    getCurrentRow (e) {
src/views/components/peripheralUnit/index.vue
@@ -67,9 +67,9 @@
  },
  methods: {
    handleClear () {
      this.currentId = '';
      this.currentId = undefined;
      this.name = undefined;
      this.$emit("change", '');
      this.$emit("change", undefined);
    },
    getCurrentRow (e) {
      this.currentId = e.id
src/views/construction/ipc/index.vue
@@ -81,7 +81,7 @@
          <el-link type="primary" @click="nvrClick(scope.row)">{{ scope.row.nvrId_dictText }}</el-link>
        </template>
      </el-table-column>
      <el-table-column label="通道号" align="center" prop="passageway_dictText" show-overflow-tooltip/>
      <el-table-column label="通道号" align="center" prop="passageway" show-overflow-tooltip/>
      <el-table-column label="序列号" min-width="180" align="center" prop="serialNumber" show-overflow-tooltip/>
      <el-table-column label="生产厂商" min-width="220" align="center" prop="manufacturerId_dictText" show-overflow-tooltip/>
      <el-table-column label="安装位置" min-width="240" align="center" prop="buildingId_dictText" show-overflow-tooltip/>
@@ -153,14 +153,7 @@
          </el-col>
          <el-col :span="12">
            <el-form-item label="通道号" prop="passageway">
              <el-select v-model="form.passageway" :disabled="!form.nvrId" placeholder="请选择通道(路)" style="width: 100%;">
                <el-option
                    v-for="dict in dict.type.DICT109"
                    :key="dict.value"
                    :label="dict.label"
                    :value="dict.value"
                />
              </el-select>
              <el-input v-model="form.passageway" :disabled="!form.nvrId" maxlength="4" show-word-limit placeholder="请输入通道号"/>
            </el-form-item>
          </el-col>
        </el-row>