| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <template>
- <div>
- <div style="display:flex;align-items:center">
- <el-input
- placeholder="请输入搜索内容"
- suffix-icon="el-icon-search"
- v-model="params.content.where.condition"
- style="width:200px"
- size="mini"
- class="input-with-select inline-16"
- @keyup.native.enter="listData(params.content.pageNumber=1)"
- @clear="clearData"
- clearable>
- </el-input>
- <slot name="addOrder"></slot>
- </div>
- <div style="margin-top: 15px">
- <tableLayout :layout="tablecols" height="400px" :data="list" :custom="true" :width="true" fixedName="operation writeoffamount unwriteoffamount">
- <template v-slot:customcol="scope">
- <div v-if="scope.column.columnname == 'writeoffamount'">
- <el-input size="small" v-if="currentItem.sa_writeoffbill_orderid == scope.column.data.sa_writeoffbill_orderid" v-model="scope.column.data.writeoffamount"></el-input>
- <span v-else>{{scope.column.data.writeoffamount}}</span>
- </div>
- <p v-else>{{scope.column.data[scope.column.columnname]}}</p>
- <p v-if="!scope.column.data[scope.column.columnname] && scope.column.data[scope.column.columnname] !== 0 && scope.column.columnname != 'operation'">--</p>
- </template>
- <template v-slot:opreation="scope">
- <el-button class="inline-16" type="text" size="mini" @click="save(scope.data)" v-if="currentItem.sa_writeoffbill_orderid == scope.data.sa_writeoffbill_orderid">保 存</el-button>
- <slot name="editOrder" :data="scope.data" v-else></slot>
- <slot name="delOrder" :data="scope.data"></slot>
- </template>
- </tableLayout>
- </div>
- <div style="margin-top:16px;text-align:right">
- <el-pagination
- background
- small
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="params.content.pageNumber"
- :page-size="params.content.pageSize"
- layout="total, prev, pager, next, jumper"
- :total="total">
- </el-pagination>
- </div>
- </div>
- </template>
- <script>
- import { log } from '@antv/g2plot/lib/utils'
- export default {
- props:["data"],
- data () {
- return {
- tablecols:[],
- list:[],
- total:0,
- search:'',
- params:{
- "id": 20221208091504,
- "version": 1,
- "content": {
- "nocache": true,
- "pageNumber": 1,
- "pageSize":20,
- "sa_writeoffbillid": '',
- "where": {
- "condition": ""
- }
- },
- },
- options:[
- ],
- productList:'',
- /* 当前正在编辑的数据信息 */
- currentItem:''
- }
- },
- provide () {
- return {
- }
- },
- methods:{
- async save (data) {
- if (typeof +data.writeoffamount != 'number') return this.$message({
- title:'提示',
- message:'请输入数字'
- })
- let res = await this.$api.requested({
- "id":20221124090904,
- "content": {
- sa_writeoffbillid:this.$route.query.id,
- writeoffbillOrder: [
- {
- "sa_writeoffbill_orderid": data.sa_writeoffbill_orderid,
- "sa_orderid":data.sa_orderid,
- "sa_orderitemsid":data.sa_orderitemsid,
- "writeoffamount":data.writeoffamount,
- "remarks":""
- }
- ]
- }
- })
- console.log(res);
- this.tool.showMessage(res,() => {
- this.$emit('onSuccess')
- this.listData()
- this.currentItem = ''
- })
- },
- async listData(){
- this.params.content.sa_writeoffbillid = this.$route.query.id
- const res = await this.$api.requested(this.params)
- this.list = res.data
- this.total = res.total
- console.log(this.list)
- },
- handleSizeChange(val) {
- // console.log(`每页 ${val} 条`);
- this.params.content.pageSize = val
- this.listData()
- },
- handleCurrentChange(val) {
- // console.log(`当前页: ${val}`);
- this.params.content.pageNumber = val
- this.listData()
- },
- clearData(){
- this.search = ""
- this.params.content.where.condition = this.search
- this.listData()
- },
- queryClick(){
- this.params.content.where.condition = this.search
- this.listData()
- }
- },
- created() {
- this.listData()
- this.tablecols = this.tool.tabelCol(this.$route.name).writeOffOrderTable.tablecols
- }
- }
- </script>
- <style scoped>
- </style>
|