Compare commits
2 Commits
16cc7fb9ff
...
69afce5015
Author | SHA1 | Date |
---|---|---|
|
69afce5015 | 1 year ago |
|
098d8766f9 | 1 year ago |
3 changed files with 168 additions and 145 deletions
@ -1,149 +1,151 @@ |
|||||||
<template> |
<template> |
||||||
<div> |
<div> |
||||||
<el-form ref="artFrom" :model="page" label-width="80px" label-position="right" class="tabform" |
<el-form ref="artFrom" :model="page" label-width="80px" label-position="right" class="tabform" |
||||||
@submit.native.prevent inline> |
@submit.native.prevent inline> |
||||||
<el-form-item label="输入搜索"> |
<el-form-item label="输入搜索"> |
||||||
<el-input clearable v-model="page.params.siteName" placeholder="请输入油站名称" |
<el-input clearable v-model="page.params.siteName" placeholder="请输入油站名称" |
||||||
class="form_content_width"></el-input> |
class="form_content_width"></el-input> |
||||||
</el-form-item> |
</el-form-item> |
||||||
<el-form-item> |
<el-form-item> |
||||||
<el-button type="primary" @click="userSearchs">查询</el-button> |
<el-button type="primary" @click="userSearchs">查询</el-button> |
||||||
<el-button type="primary" @click="submit">确定选择</el-button> |
<el-button type="primary" @click="submit">确定选择</el-button> |
||||||
</el-form-item> |
</el-form-item> |
||||||
</el-form> |
</el-form> |
||||||
<el-table max-height="500" @selection-change="selectionChange" v-loading="loading" ref="table" :data="tableList" |
<el-table max-height="500" @selection-change="selectionChange" v-loading="loading" ref="table" :data="tableList" |
||||||
highlight-current-row empty-text="暂无数据" class="mt14"> |
:row-key="(row) => row.siteId" highlight-current-row empty-text="暂无数据" class="mt14"> |
||||||
<el-table-column type="selection" width="55"> |
<el-table-column type="selection" reserve-selection width="55"> |
||||||
</el-table-column> |
</el-table-column> |
||||||
<el-table-column label="油站名称" prop="siteName"> </el-table-column> |
<el-table-column label="油站名称" prop="siteName"></el-table-column> |
||||||
<el-table-column label="渠道" prop="channel"> </el-table-column> |
<el-table-column label="渠道" prop="channel"></el-table-column> |
||||||
</el-table> |
</el-table> |
||||||
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" |
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" |
||||||
:current-page="page.currentPage" :page-sizes="[10, 15, 20, 30]" :page-size="page.pageSize" |
:current-page="page.currentPage" :page-sizes="[10, 15, 20, 30]" :page-size="page.pageSize" |
||||||
layout="total, sizes, prev, pager, next, jumper" :total="page.totalCount" /> |
layout="total, sizes, prev, pager, next, jumper" :total="page.totalCount" /> |
||||||
</div> |
</div> |
||||||
</template> |
</template> |
||||||
<script> |
<script> |
||||||
import productApi from '@/api/product/productAttr.js'; |
import productApi from '@/api/product/productAttr.js' |
||||||
|
|
||||||
export default { |
export default { |
||||||
name: "OilStationSelection", |
name: 'OilStationSelection', |
||||||
props: { |
props: { |
||||||
OilStationSelectionList: { |
OilStationSelectionList: { |
||||||
type: Array, |
type: Array, |
||||||
default: () => [] |
default: () => [] |
||||||
}, |
}, |
||||||
selectAttrId: { |
selectAttrId: { |
||||||
type: String, |
type: String, |
||||||
default: () => "" |
default: () => '' |
||||||
|
} |
||||||
|
}, |
||||||
|
data() { |
||||||
|
return { |
||||||
|
selectionList: [], |
||||||
|
loading: false, |
||||||
|
tableList: [], |
||||||
|
page: { |
||||||
|
'currentPage': 1, |
||||||
|
'pageSize': 10, |
||||||
|
'totalCount': 0, |
||||||
|
'params': { |
||||||
|
'siteName': '' |
||||||
} |
} |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
watch: { |
||||||
|
OilStationSelectionList: { |
||||||
|
handler(n, o) { |
||||||
|
this.$refs.table.clearSelection() |
||||||
|
n.forEach(element => { |
||||||
|
this.$refs.table.toggleRowSelection(element) |
||||||
|
}) |
||||||
|
}, |
||||||
|
deep: true |
||||||
|
} |
||||||
|
}, |
||||||
|
created() { |
||||||
|
this.init() |
||||||
|
}, |
||||||
|
methods: { |
||||||
|
submit() { |
||||||
|
this.$emit('submit', this.getSelectionList()) |
||||||
|
}, |
||||||
|
getSelectionList() { |
||||||
|
return this.selectionList |
||||||
|
}, |
||||||
|
selectionChange(e) { |
||||||
|
this.selectionList = e |
||||||
|
}, |
||||||
|
userSearchs() { |
||||||
|
this.getByPage() |
||||||
}, |
}, |
||||||
data() { |
isStrictPromise(value) { |
||||||
return { |
return !!value |
||||||
selectionList: [], |
&& typeof value === 'object' |
||||||
loading: false, |
&& typeof value.then === 'function' |
||||||
tableList: [], |
&& typeof value.finally === 'function' |
||||||
page: { |
}, |
||||||
"currentPage": 1, |
loadingFn(callback) { |
||||||
"pageSize": 10, |
this.loading = true |
||||||
"totalCount": 0, |
if (this.isStrictPromise(callback)) { |
||||||
"params": { |
callback.finally(() => { |
||||||
"siteName": "" |
this.loading = false |
||||||
}, |
}) |
||||||
} |
} |
||||||
|
|
||||||
|
}, |
||||||
|
getByPage() { |
||||||
|
this.loadingFn(productApi.getAllSites(this.page).then(res => { |
||||||
|
if (res.code === 20000) { |
||||||
|
this.tableList = res.data.list |
||||||
|
this.page.totalCount = parseInt(res.data.totalCount) |
||||||
|
|
||||||
|
} else { |
||||||
|
this.tableList = [] |
||||||
|
this.page.totalCount = 0 |
||||||
} |
} |
||||||
|
})) |
||||||
}, |
}, |
||||||
watch: { |
handleCurrentChange(val) { |
||||||
OilStationSelectionList:{ |
this.page.currentPage = val |
||||||
handler(n,o){ |
this.getByPage() |
||||||
this.$refs.table.clearSelection(); |
}, |
||||||
n.forEach(element => { |
handleSizeChange(val) { |
||||||
this.$refs.table.toggleRowSelection(element); |
this.page.pageSize = val |
||||||
}); |
this.getByPage() |
||||||
}, |
}, |
||||||
deep:true |
del(e) { |
||||||
|
productApi.delete(e).then(res => { |
||||||
|
if (res.code == 20000) { |
||||||
|
this.$message.success('操作成功') |
||||||
|
this.handleCurrentChange() |
||||||
} |
} |
||||||
|
}) |
||||||
}, |
}, |
||||||
created() { |
edit(row) { |
||||||
this.init() |
let data = Object.assign({}, row, { |
||||||
|
name: this.selectAttrId.split('/')[1] || '', |
||||||
|
spec: [{ |
||||||
|
value: row.attributeName, |
||||||
|
detail: row.attributeContent.split(',') |
||||||
|
}] |
||||||
|
}) |
||||||
|
this.$parent.$parent.selection = [data] |
||||||
|
this.$parent.$parent.addAttr('typeUpdate') |
||||||
}, |
}, |
||||||
methods: { |
init() { |
||||||
submit() { |
// this.getByPage(); |
||||||
this.$emit('submit', this.getSelectionList()) |
|
||||||
}, |
|
||||||
getSelectionList() { |
|
||||||
return this.selectionList |
|
||||||
}, |
|
||||||
selectionChange(e) { |
|
||||||
this.selectionList = e |
|
||||||
}, |
|
||||||
userSearchs() { |
|
||||||
this.getByPage() |
|
||||||
}, |
|
||||||
isStrictPromise(value) { |
|
||||||
return !!value |
|
||||||
&& typeof value === 'object' |
|
||||||
&& typeof value.then === 'function' |
|
||||||
&& typeof value.finally === 'function'; |
|
||||||
}, |
|
||||||
loadingFn(callback) { |
|
||||||
this.loading = true; |
|
||||||
if (this.isStrictPromise(callback)) { |
|
||||||
callback.finally(() => { |
|
||||||
this.loading = false; |
|
||||||
}) |
|
||||||
}; |
|
||||||
}, |
|
||||||
getByPage() { |
|
||||||
this.loadingFn(productApi.getAllSites(this.page).then(res => { |
|
||||||
// ({ |
|
||||||
// data: this.tableList = [], |
|
||||||
// currentPage: this.page.currentPage, |
|
||||||
// pageSize: this.page.pageSize, |
|
||||||
// totalCount: this.page.totalCount |
|
||||||
// } = res.data); |
|
||||||
this.tableList = res.data |
|
||||||
console.log(res) |
|
||||||
})); |
|
||||||
}, |
|
||||||
handleCurrentChange(val) { |
|
||||||
this.page.currentPage = val |
|
||||||
this.getByPage() |
|
||||||
}, |
|
||||||
handleSizeChange(val) { |
|
||||||
this.page.pageSize = val |
|
||||||
this.getByPage() |
|
||||||
}, |
|
||||||
del(e) { |
|
||||||
productApi.delete(e).then(res => { |
|
||||||
if (res.code == 20000) { |
|
||||||
this.$message.success('操作成功') |
|
||||||
this.handleCurrentChange(); |
|
||||||
} |
|
||||||
}) |
|
||||||
}, |
|
||||||
edit(row) { |
|
||||||
let data = Object.assign({}, row, { |
|
||||||
name: this.selectAttrId.split("/")[1] || "", |
|
||||||
spec: [{ |
|
||||||
value: row.attributeName, |
|
||||||
detail: row.attributeContent.split(",") |
|
||||||
}], |
|
||||||
}) |
|
||||||
this.$parent.$parent.selection = [data]; |
|
||||||
this.$parent.$parent.addAttr('typeUpdate'); |
|
||||||
}, |
|
||||||
init() { |
|
||||||
// this.getByPage(); |
|
||||||
|
|
||||||
// if (this.selectAttrId && this.selectAttrId.indexOf("/") !== -1) { |
// if (this.selectAttrId && this.selectAttrId.indexOf("/") !== -1) { |
||||||
// this.page.params.typeId = this.selectAttrId.split("/")[0] || ""; |
// this.page.params.typeId = this.selectAttrId.split("/")[0] || ""; |
||||||
// this.getByPage(); |
// this.getByPage(); |
||||||
// } else { |
// } else { |
||||||
// this.$message.warning("初始化出错") |
// this.$message.warning("初始化出错") |
||||||
// } |
// } |
||||||
} |
|
||||||
} |
} |
||||||
|
} |
||||||
} |
} |
||||||
</script> |
</script> |
||||||
|
|
||||||
<style></style> |
<style></style> |
||||||
|
Loading…
Reference in new issue