loulijun2021
2024-03-20 2f86865700923e0907d821fe5598bc72f29b3a54
1.看板调整
已修改4个文件
29 ■■■■ 文件已修改
src/styles/global.css 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/kanbanManager/ckgl.vue 21 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/qualityManager/processCheck.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
vue.config.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/styles/global.css
@@ -3,8 +3,8 @@
  height: 100%;
  margin: 0;
  padding: 0;
  min-width: 1200px;
  overflow-y: hidden;
  /*min-width: 1200px;*/
  /*overflow-y: hidden;*/
  /*overflow-x: hidden;*/
  -moz-osx-font-smoothing: grayscale;
src/views/kanbanManager/ckgl.vue
@@ -200,7 +200,7 @@
                <el-table-column
                  prop="specification"
                  label="规格型号"
                  width="300"
                  width="150"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.specification" class="ellipsis">{{ row.specification }}</div>
@@ -237,6 +237,19 @@
                    <div v-else>/</div>
                  </template>
                </el-table-column>
                <el-table-column
                  prop=""
                  label="延期天数"
                  width="150"
                >
                  <template slot-scope="{row}">
                    <div v-if="parseFloat(row.warning)<0" style="color:red;">{{ row.warning }}</div>
                    <div v-else-if="parseFloat(row.warning)>=0">{{ row.warning }}</div>
                    <div v-else>/</div>
                  </template>
                </el-table-column>
              </el-table>
            </div>
          </div>
@@ -284,7 +297,7 @@
                  label="库存量"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.FCUUQty">{{ row.FCUUQty }}</div>
                    <div v-if="row.FBUQty">{{ row.FBUQty }}</div>
                    <div v-else>0</div>
                  </template>
                </el-table-column>
@@ -541,7 +554,7 @@
    },
    headerCellStyleCenter() {
      return {
        backgroundColor: 'transparent ',
        backgroundColor: 'transparent',
        padding: '10px 0',
        textAlign: 'center',
        color: '#07acc2',
@@ -553,7 +566,7 @@
      return {
        padding: '7px 0',
        textAlign: 'center',
        backgroundColor: 'transparent ',
        backgroundColor: 'transparent',
        color: '#c7e7ff',
        border: 'none',
        fontSize: '18px'
src/views/qualityManager/processCheck.vue
@@ -424,7 +424,7 @@
              standvalue: j.standvalue,
              lowervalue: j.lowervalue,
              uppervalue: j.uppervalue,
              stepcheckitem_seq: j.stepcheckitem_seq,
              unit: j.unit,
              stepcheckitem_desc: j.stepcheckitem_desc,
              required: j.required, // 是否必填
vue.config.js
@@ -53,7 +53,7 @@
    proxy: {
      [process.env.VUE_APP_BASE_API]: {
        target: 'http://192.168.1.190:8000', // 请求的第三⽅接⼝地址       本地开发服务器
        // target: 'http://122.227.18.22:8000', // 请求的第三⽅接⼝地址       本地开发服务器
        // target: 'http://122.227.20.130:8000', // 请求的第三⽅接⼝地址       本地开发服务器
        changeOrigin: true, // 请求跨域时,需 配置此项
        pathRewrite: { // 路径重写,替换target中的请求地址
          ['^' + process.env.VUE_APP_BASE_API]: '/api/'