123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- <!-- 订单 -->
- <template>
- <div class="order">
- <el-form :inline="true" :model="dataForm" @keyup.enter.native="queryData()">
- <el-form-item label="客户名称">
- <el-select
- v-model="dataForm.customerId"
- remote
- filterable
- :remote-method="remoteCustomer"
- placeholder="请选择">
- <el-option
- v-for="item in optionsCustomer"
- :key="item.code"
- :label="item.value"
- :value="item.code">
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="合同编码">
- <el-input v-model="dataForm.cusOrderCode" placeholder="合同编码" clearable></el-input>
- </el-form-item>
- <el-form-item label="创建日期">
- <el-date-picker
- v-model="dataForm.createTime"
- value-format="yyyy-MM-dd"
- type="date">
- </el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button @click="queryData()">查询</el-button>
- <el-button v-if="isAuth('order:ctl:save')" @click="addOrUpdateHandle(0, false)" type="primary">创建订单</el-button>
- </el-form-item>
- </el-form>
- <el-table
- :data="dataList"
- border
- v-loading="dataListLoading"
- @selection-change="selectionChangeHandle"
- style="width: 100%;">
- <el-table-column
- label="序号"
- type="index"
- width="50"
- align="center">
- </el-table-column>
- <el-table-column
- prop="orderCode"
- header-align="center"
- align="center"
- min-width="180"
- label="订单编码">
- </el-table-column>
- <el-table-column
- prop="customerName"
- header-align="center"
- align="center"
- min-width="180"
- :show-overflow-tooltip="true"
- label="客户名称">
- </el-table-column>
- <el-table-column
- prop="cusOrderCode"
- header-align="center"
- align="center"
- min-width="120"
- label="客户订单编号">
- </el-table-column>
- <el-table-column
- prop="createTime"
- header-align="center"
- align="center"
- min-width="160"
- label="下单时间">
- </el-table-column>
- <el-table-column
- prop="contactDate"
- header-align="center"
- align="center"
- min-width="160"
- label="合同交期">
- </el-table-column>
- <el-table-column
- prop="state"
- header-align="center"
- align="center"
- :formatter="formatState"
- label="当前状态">
- </el-table-column>
- <el-table-column
- prop="approver"
- header-align="center"
- align="center"
- :min-width="140"
- :show-overflow-tooltip="true"
- label="当前审批人">
- </el-table-column>
- <el-table-column
- prop="completeDate"
- header-align="center"
- align="center"
- min-width="160"
- label="订单完成时间">
- </el-table-column>
- <el-table-column
- prop="notes"
- header-align="center"
- align="center"
- min-width="100"
- :show-overflow-tooltip="true"
- label="备注">
- </el-table-column>
- <el-table-column
- fixed="right"
- header-align="center"
- align="center"
- width="150"
- label="操作">
- <template slot-scope="scope">
- <el-button v-if="isAuth('order:ctl:info')" type="text" size="small" @click="detailHandle(scope.row.orderId)">查看</el-button>
- <el-button v-if="isAuth('order:ctl:editor') && Number(scope.row.state) < 2" type="text" size="small" @click="addOrUpdateHandle(scope.row.orderId,false)">编辑</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- @size-change="sizeChangeHandle"
- @current-change="currentChangeHandle"
- :current-page="pageIndex"
- :page-sizes="[10, 20, 50, 100]"
- :page-size="pageSize"
- :total="totalPage"
- layout="total, sizes, prev, pager, next, jumper">
- </el-pagination>
- <!-- 弹窗, 新增 / 修改 -->
- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
- <detail v-if="detailVisible" ref="detail"/>
- </div>
- </template>
- <script>
- import AddOrUpdate from './order-add-or-update'
- import Detail from './order-detail'
- import { getOrderList } from '@/api/sale'
- import { getCusList } from '@/api/cus'
- export default {
- name: 'order',
- components: {
- AddOrUpdate, Detail
- },
- created () {
- this.queryData()
- },
- data () {
- return {
- addOrUpdateVisible: false,
- detailVisible: false,
- dataForm: {},
- dataList: [],
- pageIndex: 1,
- pageSize: 10,
- totalPage: 0,
- dataListLoading: false,
- dataListSelections: [],
- optionsState: [
- {
- code: null, value: '全部'
- },
- {
- code: '0', value: '待提交'
- },
- {
- code: '1', value: '待审批'
- },
- {
- code: '2', value: '审批中'
- },
- {
- code: '3', value: '审批完成'
- },
- {
- code: '4', value: '审批不通过'
- }
- ],
- optionsCustomer: []
- }
- },
- methods: {
- // 查询
- queryData () {
- this.pageIndex = 1
- this.getDataList()
- },
- // 获取数据列表
- getDataList () {
- this.dataListLoading = true
- let params = {
- 'current': this.pageIndex,
- 'size': this.pageSize,
- 'createTime': this.dataForm.createTime ? this.dataForm.createTime : null,
- 'cusOrderCode': this.dataForm.cusOrderCode ? this.dataForm.cusOrderCode : null,
- 'customerId': this.dataForm.customerId ? this.dataForm.customerId : null,
- 'state': this.dataForm.state ? this.dataForm.state : null
- }
- getOrderList(params).then(({data}) => {
- if (data && data.code === '200') {
- this.dataList = data.data.records
- this.totalPage = Number(data.data.total)
- } else {
- this.dataList = []
- this.totalPage = 0
- }
- this.dataListLoading = false
- })
- },
- // 每页数
- sizeChangeHandle (val) {
- this.pageSize = val
- this.pageIndex = 1
- this.getDataList()
- },
- // 当前页
- currentChangeHandle (val) {
- this.pageIndex = val
- this.getDataList()
- },
- // 多选
- selectionChangeHandle (val) {
- this.dataListSelections = val
- },
- // 远程方法:获取客户列表
- async remoteCustomer (query) {
- if (!query) {
- query = ''
- }
- await getCusList({'customerName': query}).then(({data}) => {
- if (data && data.code === '200') {
- this.optionsCustomer = []
- data.data.records.forEach((item) => {
- this.optionsCustomer.push({
- code: item.customerId,
- value: item.customerName
- })
- })
- }
- })
- },
- // 新增 / 修改
- addOrUpdateHandle (id, disable) {
- this.addOrUpdateVisible = true
- this.$nextTick(() => {
- this.$refs.addOrUpdate.init(id, disable)
- })
- },
- // 转换属性“状态”
- formatState (row) {
- if (!row.state) return ''
- const item1 = this.optionsState.find((item) => item.code === row.state.toString())
- return item1 ? item1.value : ''
- },
- // 详情
- detailHandle (id) {
- this.detailVisible = true
- this.$nextTick(() => {
- this.$refs.detail.init(id)
- })
- }
- }
- }
- </script>
- <style scoped>
- </style>
|