zuozhengqing
2023-11-30 80be9badb1330c4e672b815ee2e07627c257b220
销售明细单样式dialog样式优化
1个文件已修改
11 ■■■■ 已修改文件
src/views/sales/salesDetails/index.vue 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/salesDetails/index.vue
@@ -106,7 +106,7 @@
    <el-dialog
      title="请选择项目"
      :visible.sync="projectListShow"
      width="40%"
      width="400px"
      :before-close="handleClose">
      <el-form 
        label-width="100px" 
@@ -127,7 +127,7 @@
          </el-select>
        </el-form-item>
      </el-form>
      <span slot="footer" class="dialog-footer">
      <span slot="footer" class="dialog-footer dialog_btn">
        <el-button @click="projectListShow = false">取 消</el-button>
        <el-button type="primary" @click="affirmCommitBtn">确 定</el-button>
      </span>
@@ -489,7 +489,6 @@
    async submitClick(row) {
      this.thatRow=row
      if(row.projectId==""){
        this.$message.error("请先填写项目信息")
        this.projectListShow=true
      }else{
        let params = {
@@ -790,4 +789,10 @@
  width: 80%;
  margin: 20px auto;
}
::v-deep .el-dialog__footer{
  text-align: right !important;
  .el-button{
    margin-right: 10px;
  }
}
</style>