123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- <template>
- <div class="SippliersList">
- <Toptitle title="供应商列表">
- <slot name="titleButton">
- <!-- <Button @click="handleSet()"
- type="primary"
- style="margin-right:10px;">新增分类</Button> -->
- <Button type="primary" style="margin-right: 10px">导入</Button>
- <Button @click="exportData()" type="primary" style="margin-right: 10px">导出</Button>
- <Button
- type="primary"
- @click="handleGoPage(1, '')"
- style="margin-right: 10px"
- >新增</Button
- >
- </slot>
- </Toptitle>
- <div class="content">
- <div class="content_left">
- <Tree
- :data="treeData"
- select-node
- children-key="sub"
- style="width: 100%"
- @on-select-change="handleTreeSelect"
- class="demo-tree-render"
- ></Tree>
- </div>
- <div class="content_right">
- <div class="content_right_topform">
- <Form :label-width="90" :model="searchData">
- <FormItem label="供应商编码:">
- <Input
- type="text"
- size="small"
- v-model="searchData.code"
- style="width: 150px"
- placeholder="供应商编码"
- />
- </FormItem>
- <FormItem label="供应商名称:">
- <Input
- type="text"
- size="small"
- v-model="searchData.title"
- style="width: 150px"
- placeholder="供应商名称"
- />
- </FormItem>
- <FormItem label="负责人:">
- <Select
- v-model="searchData.contact"
- size="small"
- clearable
- filterable
- label-in-value
- style="width: 150px"
- >
- <Option
- v-for="sitem in contactList"
- :key="sitem"
- :label="sitem"
- :value="sitem"
- >
- </Option>
- </Select>
- </FormItem>
- <FormItem label="是否启用:">
- <Select
- v-model="searchData.state"
- size="small"
- clearable
- style="width: 150px"
- >
- <Option label="是" value="1" />
- <Option label="否" value="2" />
- </Select>
- </FormItem>
- <FormItem label="新增时间:">
- <DatePicker
- type="date"
- size="small"
- style="width: 150px"
- placeholder="年/月/日"
- v-model="searchData.date[0]"
- ></DatePicker>
- </FormItem>
- <FormItem label="~">
- <DatePicker
- type="date"
- size="small"
- style="width: 150px"
- placeholder="年/月/日"
- v-model="searchData.date[1]"
- ></DatePicker>
- </FormItem>
- <FormItem>
- <Button
- type="primary"
- size="small"
- @click="initData(searchData)"
- style="margin-right: 10px"
- >搜索</Button
- >
- </FormItem>
- </Form>
- <div class="content_right_topfrom_btn"></div>
- </div>
- <div class="content_right_content">
- <div class="content_right_content_table">
- <Table
- :columns="tableColumns"
- border
- :loading="tableLoading"
- :data="tableData"
- >
- <template slot="setSlot" slot-scope="{ row, index }">
- <a style="margin: 0 5px" @click="handleSet(2, row, index)"
- >编辑</a
- >
- <a
- style="margin: 0 5px; color: red"
- @click="handleSet(3, row, index)"
- >删除</a
- >
- </template>
- </Table>
- <div class="content_right_content_page">
- <Page
- :page-size-opts="[10, 20, 30, 40, 100]"
- @on-page-size-change="changeSize"
- @on-change="changePage"
- :current="pageIndex"
- show-total
- show-elevator
- :total="total"
- show-sizer
- :page-size="pageSize"
- />
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- // 这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
- // 例如:import 《组件名称》 from '《组件路径》';
- export default {
- name: "SippliersList",
- components: {},
- props: {},
- // import引入的组件需要注入到对象中才能使用
- data() {
- // 这里存放数据
- return {
- type: "",
- contactList: [],
- treeData: [
- {
- title: "供应商分类",
- expand: true,
- sub: [],
- render: (h, { root, node, data }) => {
- return h(
- "span",
- {
- style: {
- display: "inline-block",
- width: "100%",
- },
- },
- [
- h("span", [
- h("Icon", {
- props: {
- type: "ios-folder-outline",
- },
- style: {
- marginRight: "8px",
- },
- }),
- h("span", data.title),
- ]),
- ]
- );
- },
- },
- ],
- buttonProps: {
- type: "default",
- size: "small",
- },
- tableColumns: [
- { title: "供应商编码", key: "code", align: "center", minWidth: 110 },
- { title: "供应商名称", key: "title", align: "center", minWidth: 200 },
- { title: "业务员", key: "nickname", align: "center", minWidth: 80 },
- { title: "负责人", key: "contact", align: "center", minWidth: 80 },
- { title: "手机号", key: "mobile", align: "center", minWidth: 150 },
- {
- title: "是否启用",
- key: "state",
- align: "center",
- minWidth: 100,
- render: (h, params) => {
- const { row } = params;
- return h("span", {}, row.state == 1 ? "是" : "否");
- },
- },
- {
- title: "创建时间",
- key: "crt_time",
- align: "center",
- minWidth: 120,
- render: (h, params) => {
- const { row } = params;
- return h("span", {}, this.func.replaceDate(row.crt_time));
- },
- },
- {
- title: "操作",
- key: "code",
- align: "center",
- minWidth: 120,
- slot: "setSlot",
- },
- ],
- tableData: [],
- tableLoading: false,
- pageIndex: 1,
- pageSize: 10,
- total: 0,
- searchData: {
- title: "",
- code: "",
- contact: "",
- state: "",
- start_time: "",
- end_time: "",
- date: [],
- },
- suppliersTypeTitle: "",
- suppliersTypeId: "",
- };
- },
- // 生命周期 - 创建完成(可以访问当前this实例)
- created() {
- this.axios({
- method: "get",
- url: "/api/basic_supply_list",
- }).then((res) => {
- this.treeData[0].sub = res.data;
- });
- this.axios({
- method: "get",
- url: "/api/supply_contact",
- }).then((res) => {
- this.contactList = res.data;
- });
- },
- // 生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- this.initData(this.searchData);
- },
- methods: {
- initData(row) {
- row.start_time = row.date[0]
- ? new Date(row.date[0]).getTime() / 1000
- : "";
- row.end_time = row.date[1] ? new Date(row.date[1]).getTime() / 1000 : "";
- this.tableLoading = true;
- this.axios({
- method: "get",
- url: "/api/supply_list",
- params: {
- ...row,
- page_index: this.pageIndex,
- page_size: this.pageSize,
- },
- }).then((res) => {
- this.tableLoading = false;
- this.total = res.data.total;
- this.tableData = res.data.data;
- });
- },
- handleSet(type, row, index) {
- // 2编辑 3删除
- switch (type) {
- case 2:
- this.handleGoPage(type, row.id);
- break;
- case 3:
- this.$Modal.confirm({
- title: "确认删除?",
- content: "此操作无法恢复,请确认!",
- onOk: () => {
- this.axios({
- method: "get",
- url: "/api/supply_del",
- params: {
- id: row.id,
- },
- }).then((res) => {
- this.$Message.success(res.msg);
- this.initData(this.searchData);
- })
- .catch((err) => {});
- },
- onCancel: () => {},
- });
- break;
- }
- },
- append(data) {
- const children = data.children || [];
- children.push({
- code: this.form.code,
- title: this.form.title,
- expand: true,
- });
- this.$set(data, "children", children);
- },
- remove(root, node, data) {
- if (node.children && node.children.length > 0) {
- this.$Message.error("有子集时不可删除");
- } else {
- const parentKey = root.find((el) => el === node).parent;
- const parent = root.find((el) => el.nodeKey === parentKey).node;
- const index = parent.children.indexOf(data);
- parent.children.splice(index, 1);
- }
- },
- handleModalOk() {
- this.append(this.treeData[0]);
- },
- handleTreeSelect(arr, row) {
- console.log("row :>> ", row);
- this.searchData.type_id = row.id;
- this.suppliersTypeTitle = row.title;
- this.suppliersTypeId = row.id;
- this.initData(this.searchData);
- },
- changeSize(e) {
- this.pageSize = e;
- this.initData(this.searchData);
- },
- changePage(e) {
- this.pageIndex = e;
- this.initData(this.searchData);
- },
- handleGoPage(type, id) {
- if (type == 1 && this.suppliersTypeTitle == "") {
- this.$Message.warning("新增请先选择左侧供应商分类!");
- } else {
- this.$router.push({
- path: "/cms/BasicSettings/SuppliersManage/SippliersListEdit",
- query: {
- type,
- id,
- title: this.suppliersTypeTitle,
- basics_supply_id: this.suppliersTypeId,
- },
- });
- }
- },
- async exportData(){
- const res = await this.axios('/api/supply_export')
- if(res.code == 200){
- let url = `${this.$store.state.ip}/api/storage/${res.data.file}`
- location.href = url
- }
- }
- },
- // 监听属性 类似于data概念
- computed: {},
- // 监控data中的数据变化
- watch: {},
- beforeCreate() {}, // 生命周期 - 创建之前
- beforeMount() {}, // 生命周期 - 挂载之前
- beforeUpdate() {}, // 生命周期 - 更新之前
- updated() {}, // 生命周期 - 更新之后
- beforeDestroy() {}, // 生命周期 - 销毁之前
- destroyed() {}, // 生命周期 - 销毁完成
- activated() {}, // 如果页面有keep-alive缓存功能,这个函数会触发
- };
- </script>
- <style lang='scss' scoped>
- .content {
- width: 100%;
- display: flex;
- justify-content: space-between;
- padding-top: 30px;
- .content_left {
- width: 15%;
- height: 60vh;
- border-right: 1px solid #515a6e;
- }
- .content_right {
- width: 83%;
- .content_right_topform {
- /deep/.ivu-form {
- display: flex;
- justify-content: flex-start;
- flex-wrap: wrap;
- }
- /deep/.ivu-form-item {
- display: inline-block;
- width: 250px;
- }
- .content_right_topfrom_btn {
- display: flex;
- justify-content: flex-end;
- }
- }
- .content_right_content {
- border-top: 1px solid #f4f4f4;
- margin-top: 20px;
- padding-top: 20px;
- .content_right_content_btn {
- display: flex;
- justify-content: flex-end;
- margin-bottom: 20px;
- }
- .content_right_content_table {
- }
- .content_right_content_page {
- display: flex;
- justify-content: center;
- padding-top: 20px;
- }
- }
- }
- }
- .demo-tree-render {
- width: 100%;
- }
- </style>
|