liukangdong
2024-06-06 cc359f238d4ce86c96b224498a87902e1b2de557
‘’
已修改4个文件
38 ■■■■■ 文件已修改
admin/src/api/index.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/business/approvalConfiguration.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/operation/serviceCar/apprConfig.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/platform/index.vue 21 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/api/index.js
@@ -1,3 +1,4 @@
export const uploadFile = '/admin_interface/visitsAdmin/cloudService/public/upload'
export * from './business/index'
export * from './platform'
admin/src/views/business/approvalConfiguration.vue
@@ -324,9 +324,9 @@
        type: activeType,
        paramList: temp
      }).then(res => {
        if (res.code === 200) {
          this.$message.success('保存成功')
        }
        // if (res.code === 200) {
        this.$message.success('保存成功')
        // }
      })
    },
    handleDel () {
@@ -335,7 +335,7 @@
      this.activeIndex = 0
    },
    handleAddAppr () {
      this.apprList.splice(this.apprList.length - 2, 0, { remark: '审批人', active: false, type: 0, objIds: [] })
      this.apprList.splice(this.apprList.length - 1, 0, { remark: '审批人', active: false, type: 0, objIds: [] })
      // this.apprList.push({ remark: '审批人', active: false, type: '0' })
    },
admin/src/views/operation/serviceCar/apprConfig.vue
@@ -333,9 +333,9 @@
        type: activeType,
        paramList: temp
      }).then(res => {
        if (res.code === 200) {
          this.$message.success('保存成功')
        }
        // if (res.code === 200) {
        this.$tip.success('保存成功')
        // }
      })
    },
    handleDel () {
@@ -344,7 +344,7 @@
      this.activeIndex = 0
    },
    handleAddAppr () {
      this.apprList.splice(this.apprList.length - 2, 0, { remark: '审批人', active: false, type: 0, objIds: [] })
      this.apprList.splice(this.apprList.length - 1, 0, { remark: '审批人', active: false, type: 0, objIds: [] })
      // this.apprList.push({ remark: '审批人', active: false, type: '0' })
    },
admin/src/views/platform/index.vue
@@ -213,8 +213,9 @@
</template>
<script>
import { getPlatform } from '@/api'
export default {
  data() {
  data () {
    return {
      currentPlatform: '',
      platformList: [],
@@ -227,22 +228,30 @@
      queuingForm: {}
    }
  },
  created () {
    this.getPlatList()
  },
  methods: {
    handleQueuing(row) {
    handleQueuing (row) {
      this.isShowQueuing = true
    },
    handleFinish(item) {
    handleFinish (item) {
      this.$confirm('高架库6号月台 皖A12345 作业结束', '温馨提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      })
    },
    handleSet() {
    getPlatList () {
      getPlatform({
        model: {}
      })
    },
    handleSet () {
      this.isShowSet = true
    },
    setReset() { },
    setSub() { }
    setReset () { },
    setSub () { }
  }
}
</script>