小小儁爺
2024-06-22 1240318c14c896cf5a779780b18b292784d54dd9
1.滚动条粗细修改2.下单单数禁用
已修改5个文件
41 ■■■■ 文件已修改
src/styles/global.css 30 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/kanbanManager/cj.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/kanbanManager/ckgl.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/statistic/personSalaryList.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/workOrder/produceOrderList.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/styles/global.css
@@ -179,22 +179,22 @@
定义滚动条高宽及背景
高宽分别对应横竖滚动条的尺寸
*/
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  /*background-color: white;*/
  background-color: #f8f8fa;
}
/*::-webkit-scrollbar {*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  !*background-color: white;*!*/
/*  background-color: #f8f8fa;*/
/*}*/
::-webkit-scrollbar-thumb {
  /*box-shadow: inset 0 0 0px white;*/
  box-shadow: inset 0 0 0px #f8f8fa;
  /*-webkit-box-shadow: inset 0 0 0px white;*/
  -webkit-box-shadow: inset 0 0 0px #f8f8fa;
  background-color: rgb(193, 193, 193);
  /*滚动条的背景颜色*/
  border-radius: 20px;
}
/*::-webkit-scrollbar-thumb {*/
/*  !*box-shadow: inset 0 0 0px white;*!*/
/*  box-shadow: inset 0 0 0px #f8f8fa;*/
/*  !*-webkit-box-shadow: inset 0 0 0px white;*!*/
/*  -webkit-box-shadow: inset 0 0 0px #f8f8fa;*/
/*  background-color: rgb(193, 193, 193);*/
/*  !*滚动条的背景颜色*!*/
/*  border-radius: 20px;*/
/*}*/
/*解决表格固定列时的压样式问题*/
.el-table__fixed {
src/views/kanbanManager/cj.vue
@@ -251,14 +251,14 @@
        })
      }, 1000 * 50)
      const res5 = await WorkShopProduceBottomRightData({ wkshopcode: 'CJ001' })
      const res5 = await WorkShopProduceBottomRightData({ wkshopcode: this.wkshopcode[0] })
      this.RightBottom = res5.data
      if (this.RightBottom.length > 0) {
        loadEcharts('cjzl04', cjzl04(this.RightBottom.map(i => i.name), this.RightBottom.map(i => i.cont)))
      }
      setInterval(() => {
        WorkShopProduceBottomRightData({ wkshopcode: 'CJ001' }).then(res5 => {
        WorkShopProduceBottomRightData({ wkshopcode: this.wkshopcode[0] }).then(res5 => {
          this.RightBottom = res5.data
          if (this.RightBottom.length > 0) {
            loadEcharts('cjzl04', cjzl04(this.RightBottom.map(i => i.name), this.RightBottom.map(i => i.cont)))
src/views/kanbanManager/ckgl.vue
@@ -22,7 +22,7 @@
          <div style="height: 470px;">
            <div class="smallTitle">
              <svg-icon icon-class="cpdrk" class="svg_class" />
              采购待入库
              生产待入库
            </div>
            <div class="lineContent horn" style="height: 410px">
              <el-table
src/views/statistic/personSalaryList.vue
@@ -627,9 +627,9 @@
            const value = Number(curr)
            if (!isNaN(value)) {
              // return prev + curr
              return Math.round(prev * 100) / 100 + Math.round(curr * 100) / 100
              return Math.floor(Math.round(prev * 100) / 100 + Math.round(curr * 100) / 100)
            } else {
              return Math.round(prev * 100) / 100
              return Math.floor(Math.round(prev * 100) / 100)
            }
          }, 0)
src/views/workOrder/produceOrderList.vue
@@ -480,6 +480,7 @@
            v-model="dialogForm.ordernum"
            oninput="value=value.replace(/[^0-9.]/g,'')"
            style="width: 200px"
            disabled
          />
        </el-form-item>
        <el-form-item label="预计交付日期" prop="saleOrderDeliveryDate">