zouyu
2023-11-09 5cf1a230144fc023b07c1aeccd8795b9741f7328
	modified:   src/views/equipment/equipment/index.vue
modified: src/views/quality/finishedProductInspection/index.vue
modified: src/views/quality/rawMaterial/index.vue
modified: src/views/quality/rawMaterial/rawMaterial-form.vue
modified: vue.config.js
已修改5个文件
13 ■■■■■ 文件已修改
src/views/equipment/equipment/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/quality/finishedProductInspection/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/quality/rawMaterial/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/quality/rawMaterial/rawMaterial-form.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
vue.config.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/equipment/equipment/index.vue
@@ -27,7 +27,7 @@
            </el-row>
            <el-row>
              <el-col :span="10" :offset="3">编号:</el-col>
              <el-col :span="10" style="font-weight: bold;">{{ tem.code }}</el-col>
              <el-col :span="10" style="font-weight: bold;">{{ tem.number }}</el-col>
            </el-row>
            <el-row>
              <el-col :span="10" :offset="3">设备名称:</el-col>
src/views/quality/finishedProductInspection/index.vue
@@ -182,6 +182,7 @@
                        show: {
                            val: [
                                '1',
                                '0'
                            ],
                            key: 'result'
                        }
src/views/quality/rawMaterial/index.vue
@@ -218,6 +218,7 @@
                    show: {
                        val: [
                            '1',
                            '0'
                        ],
                        key: 'judgeState'
                    }
src/views/quality/rawMaterial/rawMaterial-form.vue
@@ -200,7 +200,7 @@
                  </el-table-column>
                  <el-table-column fixed="right" style="background-color: white;" v-if="dataForm.id == null" label="操作" width="150">
                    <template slot-scope="scope">
                      <div v-if="scope.row.father!=null">
                      <div v-if="scope.row.fId!=null">
                          <el-button type="text"  @click="addChildren(scope.row)">添加项目</el-button>
                          <el-button type="text" @click="delChildren(scope.row,scope.$index,true)">删除行</el-button>
                      </div>
@@ -444,6 +444,7 @@
      clickAddLine(row) {
        console.log(row);
        let ele = {
            fId: Math.random(),
            father: row.father?row.father:null,
            iid: Math.random(),
            children:[]
@@ -472,7 +473,7 @@
            this.list.push(ele)
          })
        }else{
          ele.push({
          ele.children.push({
              deviceId: null,
              deviceName: null,
              iid: Math.random(),
vue.config.js
@@ -2,9 +2,9 @@
 * 配置参考:
 * https://cli.vuejs.org/zh/config/
 */
const url = 'http://192.168.0.23:9999'
// const url = 'http://192.168.0.23:9999'
// const url = 'http://192.168.0.51:9999'
// const url = 'http://ztt-gateway:9999'
const url = 'http://ztt-gateway:9999'
const localUrl = 'http://localhost:8089'
//const localUrl = 'http://10.88.15.95:8089'
const CompressionWebpackPlugin = require('compression-webpack-plugin')