You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
571 lines
21 KiB
Vue
571 lines
21 KiB
Vue
|
2 years ago
|
<template>
|
||
|
|
<div>
|
||
|
|
<transition appear enter-active-class="animated fadeIn">
|
||
|
|
<q-table
|
||
|
|
class="my-sticky-header-column-table shadow-24"
|
||
|
|
:data="table_list"
|
||
|
|
row-key="id"
|
||
|
|
:separator="separator"
|
||
|
|
:loading="loading"
|
||
|
|
:filter="filter"
|
||
|
|
:columns="columns"
|
||
|
|
hide-bottom
|
||
|
|
:pagination.sync="pagination"
|
||
|
|
no-data-label="No data"
|
||
|
|
no-results-label="No data you want"
|
||
|
|
:table-style="{ height: height }"
|
||
|
|
flat
|
||
|
|
bordered
|
||
|
|
>
|
||
|
|
<template v-slot:top>
|
||
|
|
<q-btn-group push>
|
||
|
|
<q-btn :label="$t('refresh')" @click="reFresh()">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('refreshtip') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
</q-btn-group>
|
||
|
|
<q-space />
|
||
|
|
<q-input outlined rounded dense debounce="300" color="primary" v-model="filter" :placeholder="$t('search')" @blur="getSearchList()" @keyup.enter="getSearchList()">
|
||
|
|
</q-input>
|
||
|
|
</template>
|
||
|
|
<template v-slot:body="props">
|
||
|
|
<q-tr :props="props">
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="transportation_supplier" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model="editFormData.transportation_supplier"
|
||
|
|
:label="$t('finance.view_freight.transportation_supplier')"
|
||
|
|
autofocus
|
||
|
|
:rules="[ val => val && val.length > 0 || error1]"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="transportation_supplier" :props="props">
|
||
|
|
{{ props.row.transportation_supplier }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="send_city" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="editFormData.send_city"
|
||
|
|
:label="$t('finance.view_freight.send_city')"
|
||
|
|
:rules="[ val => val && val.length > 0 || error2]"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="send_city" :props="props">
|
||
|
|
{{ props.row.send_city }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="receiver_city" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="editFormData.receiver_city"
|
||
|
|
:label="$t('finance.view_freight.receiver_city')"
|
||
|
|
:rules="[ val => val && val.length > 0 || error3]"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="receiver_city" :props="props">
|
||
|
|
{{ props.row.receiver_city }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="weight_fee" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="editFormData.weight_fee"
|
||
|
|
type="number"
|
||
|
|
:label="$t('finance.view_freight.weight_fee')"
|
||
|
|
:rules="[ val => val && val > 0 || error4]"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="weight_fee" :props="props">
|
||
|
|
{{ props.row.weight_fee }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="volume_fee" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="editFormData.volume_fee"
|
||
|
|
type="number"
|
||
|
|
:label="$t('finance.view_freight.volume_fee')"
|
||
|
|
:rules="[ val => val && val > 0 || error5]"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="volume_fee" :props="props">
|
||
|
|
{{ props.row.volume_fee }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="min_payment" :props="props">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="editFormData.min_payment"
|
||
|
|
type="number"
|
||
|
|
:label="$t('finance.view_freight.min_payment')"
|
||
|
|
:rules="[ val => val && val > 0 || error6]"
|
||
|
|
/>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid">
|
||
|
|
<q-td key="min_payment" :props="props">
|
||
|
|
{{ props.row.min_payment }}
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<q-td key="creater" :props="props">
|
||
|
|
{{ props.row.creater }}
|
||
|
|
</q-td>
|
||
|
|
<q-td key="create_time" :props="props">
|
||
|
|
{{ props.row.create_time }}
|
||
|
|
</q-td>
|
||
|
|
<q-td key="update_time" :props="props">
|
||
|
|
{{ props.row.update_time }}
|
||
|
|
</q-td>
|
||
|
|
<template v-if="!editMode">
|
||
|
|
<q-td key="action" :props="props" style="width: 100px">
|
||
|
|
<q-btn round flat push color="purple" icon="edit" @click="editData(props.row)">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('edit') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
<q-btn round flat push color="dark" icon="delete" @click="deleteData(props.row.id)">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('delete') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="editMode">
|
||
|
|
<template v-if="props.row.id === editid">
|
||
|
|
<q-td key="action" :props="props" style="width: 100px">
|
||
|
|
<q-btn round flat push color="secondary" icon="check" @click="editDataSubmit()">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('confirmedit') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
<q-btn round flat push color="red" icon="close" @click="editDataCancel()">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('canceledit') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
</q-td>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="props.row.id !== editid"></template>
|
||
|
|
</template>
|
||
|
|
</q-tr>
|
||
|
|
</template>
|
||
|
|
</q-table>
|
||
|
|
</transition>
|
||
|
|
<template>
|
||
|
|
<div class="q-pa-lg flex flex-center">
|
||
|
|
<q-btn v-show="pathname_previous" flat push color="purple" :label="$t('previous')" icon="navigate_before" @click="getListPrevious()">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('previous') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
<q-btn v-show="pathname_next" flat push color="purple" :label="$t('next')" icon-right="navigate_next" @click="getListNext()">
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4" :offset="[10, 10]" content-style="font-size: 12px">
|
||
|
|
{{ $t('next') }}
|
||
|
|
</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
<q-btn v-show="!pathname_previous && !pathname_next" flat push color="dark" :label="$t('no_data')"></q-btn>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<q-dialog v-model="newForm">
|
||
|
|
<q-card class="shadow-24">
|
||
|
|
<q-bar class="bg-light-blue-10 text-white rounded-borders" style="height: 50px">
|
||
|
|
<div>{{ $t('newtip') }}</div>
|
||
|
|
<q-space />
|
||
|
|
<q-btn dense flat icon="close" v-close-popup>
|
||
|
|
<q-tooltip content-class="bg-amber text-black shadow-4">{{ $t('index.close') }}</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
</q-bar>
|
||
|
|
<q-card-section style="max-height: 325px; width: 400px" class="scroll">
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model="newFormData.transportation_supplier"
|
||
|
|
:label="$t('finance.view_freight.transportation_supplier')"
|
||
|
|
autofocus
|
||
|
|
:rules="[ val => val && val.length > 0 || error1]"
|
||
|
|
@keyup.enter="newDataSubmit()"/>
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="newFormData.send_city"
|
||
|
|
:label="$t('finance.view_freight.send_city')"
|
||
|
|
:rules="[ val => val && val.length > 0 || error2]"
|
||
|
|
@keyup.enter="newDataSubmit()"/>
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="newFormData.receiver_city"
|
||
|
|
:label="$t('finance.view_freight.receiver_city')"
|
||
|
|
:rules="[ val => val && val.length > 0 || error3]"
|
||
|
|
@keyup.enter="newDataSubmit()"/>
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="newFormData.weight_fee"
|
||
|
|
type="number"
|
||
|
|
:label="$t('finance.view_freight.weight_fee')"
|
||
|
|
:rules="[ val => val && val > 0 || error4]"
|
||
|
|
@keyup.enter="newDataSubmit()"/>
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="newFormData.volume_fee"
|
||
|
|
type="number"
|
||
|
|
:label="$t('finance.view_freight.volume_fee')"
|
||
|
|
:rules="[ val => val && val > 0 || error5]"
|
||
|
|
@keyup.enter="newDataSubmit()"/>
|
||
|
|
<q-input dense
|
||
|
|
outlined
|
||
|
|
square
|
||
|
|
v-model.number="newFormData.min_payment"
|
||
|
|
type="number"
|
||
|
|
:label="$t('finance.view_freight.min_payment')"
|
||
|
|
:rules="[ val => val && val > 0 || error6]"
|
||
|
|
@keyup.enter="newDataSubmit()"/>
|
||
|
|
</q-card-section>
|
||
|
|
<div style="float: right; padding: 15px 15px 15px 0">
|
||
|
|
<q-btn color="white" text-color="black" style="margin-right: 25px" @click="newDataCancel()">{{ $t('cancel') }}</q-btn>
|
||
|
|
<q-btn color="primary" @click="newDataSubmit()">{{$t('submit')}}</q-btn>
|
||
|
|
</div>
|
||
|
|
</q-card>
|
||
|
|
</q-dialog>
|
||
|
|
<q-dialog v-model="deleteForm">
|
||
|
|
<q-card class="shadow-24">
|
||
|
|
<q-bar class="bg-light-blue-10 text-white rounded-borders" style="height: 50px">
|
||
|
|
<div>{{ $t('delete') }}</div>
|
||
|
|
<q-space />
|
||
|
|
<q-btn dense flat icon="close" v-close-popup>
|
||
|
|
<q-tooltip>{{ $t('index.close') }}</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
</q-bar>
|
||
|
|
<q-card-section style="max-height: 325px; width: 400px" class="scroll">
|
||
|
|
{{ $t('deletetip') }}
|
||
|
|
</q-card-section>
|
||
|
|
<div style="float: right; padding: 15px 15px 15px 0">
|
||
|
|
<q-btn color="white" text-color="black" style="margin-right: 25px" @click="deleteDataCancel()">{{ $t('cancel') }}</q-btn>
|
||
|
|
<q-btn color="primary" @click="deleteDataSubmit()">{{$t('submit')}}</q-btn>
|
||
|
|
</div>
|
||
|
|
</q-card>
|
||
|
|
</q-dialog>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<router-view />
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import { getauth, postauth, putauth, deleteauth } from 'boot/axios_request'
|
||
|
|
import { LocalStorage } from 'quasar'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: 'Pagefreight',
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
openid: '',
|
||
|
|
login_name: '',
|
||
|
|
authin: '0',
|
||
|
|
pathname: 'payment/freight/',
|
||
|
|
pathname_previous: '',
|
||
|
|
pathname_next: '',
|
||
|
|
separator: 'cell',
|
||
|
|
loading: false,
|
||
|
|
height: '',
|
||
|
|
table_list: [],
|
||
|
|
columns: [
|
||
|
|
{ name: 'transportation_supplier', required: true, label: this.$t('finance.view_freight.transportation_supplier'), align: 'left', field: 'transportation_supplier' },
|
||
|
|
{ name: 'send_city', label: this.$t('finance.view_freight.send_city'), field: 'send_city', align: 'center' },
|
||
|
|
{ name: 'receiver_city', label: this.$t('finance.view_freight.receiver_city'), field: 'receiver_city', align: 'center' },
|
||
|
|
{ name: 'weight_fee', label: this.$t('finance.view_freight.weight_fee'), field: 'weight_fee', align: 'center' },
|
||
|
|
{ name: 'volume_fee', label: this.$t('finance.view_freight.volume_fee'), field: 'volume_fee', align: 'center' },
|
||
|
|
{ name: 'min_payment', label: this.$t('finance.view_freight.min_payment'), field: 'min_payment', align: 'center' },
|
||
|
|
{ name: 'creater', label: this.$t('creater'), field: 'creater', align: 'center' },
|
||
|
|
{ name: 'create_time', label: this.$t('createtime'), field: 'create_time', align: 'center' },
|
||
|
|
{ name: 'update_time', label: this.$t('updatetime'), field: 'update_time', align: 'center' },
|
||
|
|
{ name: 'action', label: this.$t('action'), align: 'right' }
|
||
|
|
],
|
||
|
|
filter: '',
|
||
|
|
pagination: {
|
||
|
|
page: 1,
|
||
|
|
rowsPerPage: '30'
|
||
|
|
},
|
||
|
|
newForm: false,
|
||
|
|
newFormData: {
|
||
|
|
transportation_supplier: '',
|
||
|
|
send_city: '',
|
||
|
|
receiver_city: '',
|
||
|
|
weight_fee: '',
|
||
|
|
volume_fee: '',
|
||
|
|
min_payment: '',
|
||
|
|
creater: ''
|
||
|
|
},
|
||
|
|
editid: 0,
|
||
|
|
editFormData: {},
|
||
|
|
editMode: false,
|
||
|
|
deleteForm: false,
|
||
|
|
deleteid: 0,
|
||
|
|
error1: this.$t('finance.view_freight.error1'),
|
||
|
|
error2: this.$t('finance.view_freight.error2'),
|
||
|
|
error3: this.$t('finance.view_freight.error3'),
|
||
|
|
error4: this.$t('finance.view_freight.error4'),
|
||
|
|
error5: this.$t('finance.view_freight.error5'),
|
||
|
|
error6: this.$t('finance.view_freight.error6')
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
getList () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
getauth(_this.pathname, {
|
||
|
|
}).then(res => {
|
||
|
|
_this.table_list = res.results
|
||
|
|
_this.pathname_previous = res.previous
|
||
|
|
_this.pathname_next = res.next
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
getSearchList () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
getauth(_this.pathname + '?receiver_city__icontains=' + _this.filter, {
|
||
|
|
}).then(res => {
|
||
|
|
_this.table_list = res.results
|
||
|
|
_this.pathname_previous = res.previous
|
||
|
|
_this.pathname_next = res.next
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
getListPrevious () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
getauth(_this.pathname_previous, {
|
||
|
|
}).then(res => {
|
||
|
|
_this.table_list = res.results
|
||
|
|
_this.pathname_previous = res.previous
|
||
|
|
_this.pathname_next = res.next
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
getListNext () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
getauth(_this.pathname_next, {
|
||
|
|
}).then(res => {
|
||
|
|
_this.table_list = res.results
|
||
|
|
_this.pathname_previous = res.previous
|
||
|
|
_this.pathname_next = res.next
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
}
|
||
|
|
},
|
||
|
|
reFresh () {
|
||
|
|
var _this = this
|
||
|
|
_this.getList()
|
||
|
|
},
|
||
|
|
newDataSubmit () {
|
||
|
|
var _this = this
|
||
|
|
if (_this.newFormData.weight_fee && _this.newFormData.volume_fee && _this.newFormData.min_payment) {
|
||
|
|
_this.newFormData.creater = _this.login_name
|
||
|
|
if (_this.newFormData.transportation_supplier.length !== 0) {
|
||
|
|
postauth(_this.pathname, _this.newFormData).then(res => {
|
||
|
|
_this.getList()
|
||
|
|
_this.newDataCancel()
|
||
|
|
_this.$q.notify({
|
||
|
|
message: 'Success Create',
|
||
|
|
icon: 'check',
|
||
|
|
color: 'green'
|
||
|
|
})
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
} else {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: _this.$t('finance.view_freight.error1'),
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: _this.$t('notice.valuenullerror'),
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
},
|
||
|
|
newDataCancel () {
|
||
|
|
var _this = this
|
||
|
|
_this.newForm = false
|
||
|
|
_this.newFormData = {
|
||
|
|
transportation_supplier: '',
|
||
|
|
send_city: '',
|
||
|
|
receiver_city: '',
|
||
|
|
weight_fee: '',
|
||
|
|
volume_fee: '',
|
||
|
|
min_payment: '',
|
||
|
|
creater: ''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
editData (e) {
|
||
|
|
var _this = this
|
||
|
|
_this.editMode = true
|
||
|
|
_this.editid = e.id
|
||
|
|
_this.editFormData = {
|
||
|
|
transportation_supplier: e.transportation_supplier,
|
||
|
|
send_city: e.send_city,
|
||
|
|
receiver_city: e.receiver_city,
|
||
|
|
weight_fee: e.weight_fee,
|
||
|
|
volume_fee: e.volume_fee,
|
||
|
|
min_payment: e.min_payment,
|
||
|
|
creater: _this.login_name
|
||
|
|
}
|
||
|
|
},
|
||
|
|
editDataSubmit () {
|
||
|
|
var _this = this
|
||
|
|
putauth(_this.pathname + _this.editid + '/', _this.editFormData).then(res => {
|
||
|
|
_this.editDataCancel()
|
||
|
|
_this.getList()
|
||
|
|
_this.$q.notify({
|
||
|
|
message: 'Success Edit Data',
|
||
|
|
icon: 'check',
|
||
|
|
color: 'green'
|
||
|
|
})
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
},
|
||
|
|
editDataCancel () {
|
||
|
|
var _this = this
|
||
|
|
_this.editMode = false
|
||
|
|
_this.editid = 0
|
||
|
|
_this.editFormData = {
|
||
|
|
transportation_supplier: '',
|
||
|
|
send_city: '',
|
||
|
|
receiver_city: '',
|
||
|
|
weight_fee: '',
|
||
|
|
volume_fee: '',
|
||
|
|
min_payment: '',
|
||
|
|
creater: ''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
deleteData (e) {
|
||
|
|
var _this = this
|
||
|
|
_this.deleteForm = true
|
||
|
|
_this.deleteid = e
|
||
|
|
},
|
||
|
|
deleteDataSubmit () {
|
||
|
|
var _this = this
|
||
|
|
deleteauth(_this.pathname + _this.deleteid + '/').then(res => {
|
||
|
|
_this.deleteDataCancel()
|
||
|
|
_this.getList()
|
||
|
|
_this.$q.notify({
|
||
|
|
message: 'Success Edit Data',
|
||
|
|
icon: 'check',
|
||
|
|
color: 'green'
|
||
|
|
})
|
||
|
|
}).catch(err => {
|
||
|
|
_this.$q.notify({
|
||
|
|
message: err.detail,
|
||
|
|
icon: 'close',
|
||
|
|
color: 'negative'
|
||
|
|
})
|
||
|
|
})
|
||
|
|
},
|
||
|
|
deleteDataCancel () {
|
||
|
|
var _this = this
|
||
|
|
_this.deleteForm = false
|
||
|
|
_this.deleteid = 0
|
||
|
|
}
|
||
|
|
},
|
||
|
|
created () {
|
||
|
|
var _this = this
|
||
|
|
if (LocalStorage.has('openid')) {
|
||
|
|
_this.openid = LocalStorage.getItem('openid')
|
||
|
|
} else {
|
||
|
|
_this.openid = ''
|
||
|
|
LocalStorage.set('openid', '')
|
||
|
|
}
|
||
|
|
if (LocalStorage.has('login_name')) {
|
||
|
|
_this.login_name = LocalStorage.getItem('login_name')
|
||
|
|
} else {
|
||
|
|
_this.login_name = ''
|
||
|
|
LocalStorage.set('login_name', '')
|
||
|
|
}
|
||
|
|
if (LocalStorage.has('auth')) {
|
||
|
|
_this.authin = '1'
|
||
|
|
_this.getList()
|
||
|
|
} else {
|
||
|
|
_this.authin = '0'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
mounted () {
|
||
|
|
var _this = this
|
||
|
|
if (_this.$q.platform.is.electron) {
|
||
|
|
_this.height = String(_this.$q.screen.height - 290) + 'px'
|
||
|
|
} else {
|
||
|
|
_this.height = _this.$q.screen.height - 290 + '' + 'px'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
updated () {
|
||
|
|
},
|
||
|
|
destroyed () {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|