123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 |
- <template>
- <div class="my-container">
- <transition name="el-zoom-in-center">
- <div class="bill-main" key="index">
- <module-view :propConfig="config" v-show="isShow==='home'" ref="moduleView" @pagination="getDataList"
- @search="getDataList" @resert="onRefresh" @detail="openEdit" @onRefresh="onRefresh">
- </module-view>
- </div>
- </transition>
- <!-- 新增/编辑弹窗 -->
- <transition name="el-zoom-in-center">
- <div class="detil" v-show="isShow==='add'" key="index2">
- <by-tool :propConfig="toolConfig" @clickHandle="insideTools" ref="byTool" />
- <div class="box-shadow">
- <by-table :propConfig="skuConfig" ref="addFormId"></by-table>
- </div>
- </div>
- </transition>
- </div>
- </template>
- <script lang="ts">
- import { Component, Prop, Vue, Watch } from "vue-property-decorator";
- import api from "@/api/currency";
- import ForTab from "@/components/ForTab/index.vue";
- @Component({ components: { ForTab } })
- export default class Attribute extends Vue {
- // 右边
- isShow : any = 'home'
- timeNum = 0;
- calculateCount = 0;
- timer : any = null
- toolConfig = {
- tools: {
- return: true,
- save: true,
- },
- customTools: [
- // {
- // name: '同步到财务系统', icon: 'el-icon-top', audit: [''], event: {
- // click: () => {
- // (this as any).syncSystem()
- // }
- // }
- // },
- ]
- }
- skuConfig : any = {
- attr: {
- size: 'mini',
- align: 'left',
- },
- columns: [
- {
- width: '150px',
- title: '标题',
- field: 'skuTitle',
- },
- {
- width: '120px',
- title: '副标题',
- field: 'skuSubtitle',
- },
- {
- width: '140px',
- title: '物料编码',
- field: 'skuCode',
- },
- {
- width: '140px',
- title: '财务编号',
- field: 'financialCode',
- component: 'by-input',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' '
- },
- }
- },
- {
- width: '90px',
- title: '价格',
- field: 'price',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- defaultValue: 0
- },
- }
- },
- {
- width: '90px',
- title: '单位',
- field: 'unit',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- },
- }
- },
- {
- width: '90px',
- title: '单位编码',
- field: 'unitCode',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- },
- }
- },
- {
- width: '110px',
- title: '保质期(天)',
- field: 'shelfLife',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "integer",
- },
- }
- },
- {
- width: '90px',
- title: '重量/g',
- field: 'weight',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- },
- }
- },
- {
- width: '90px',
- title: '长/cm',
- field: 'length',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- },
- }
- },
- {
- width: '90px',
- title: '宽/cm',
- field: 'width',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- },
- }
- },
- {
- width: '90px',
- title: '高/cm',
- field: 'height',
- compConfig: {
- attr: {
- size: 'mini',
- placeholder: ' ',
- type: "number",
- },
- }
- },
- {
- width: '90px',
- title: '体积/cm³',
- field: 'volume',
- },
- ]
- }
- config : any = {
- search: {
- attr: {
- size: 'mini'
- },
- columns: [
- [
- {
- span: 6,
- label: '物料编码',
- prop: 'skuCode',
- component: 'by-input',
- labelWidth: '70px',
- compConfig: {
- attr: {
- placeholder: '请输入物料编码',
- clearable: true
- }
- }
- },
- {
- span: 6,
- label: '财务编号',
- prop: 'financialCode',
- component: 'by-input',
- compConfig: {
- attr: {
- placeholder: '请输入财务编号',
- clearable: true
- }
- }
- },
- ],
- ]
- },
- tool: {
- tools: {
- search: true,
- refresh: true,
- },
- // customTools: [
- // {
- // name: '同步到财务系统', icon: 'el-icon-top', audit: [''], event: {
- // click: () => {
- // (this as any).syncSystem()
- // }
- // }
- // },
- // ]
- },
- table: {
- attr: {
- size: 'mini',
- align: 'left',
- height: '620'
- },
- columns: [
- {
- width: '200px',
- title: '标题',
- field: 'skuTitle',
- isDetail: true
- },
- {
- width: '200px',
- title: '副标题',
- field: 'skuSubtitle',
- },
- {
- width: '140px',
- title: '物料编码',
- field: 'skuCode',
- },
- {
- width: '140px',
- title: '财务编号',
- field: 'financialCode',
- },
- {
- width: '80px',
- title: '价格',
- field: 'price',
- },
- {
- width: '80px',
- title: '单位',
- field: 'unit',
- },
- {
- width: '80px',
- title: '单位编码',
- field: 'unitCode',
- },
- {
- width: '100px',
- title: '保质期(天)',
- field: 'shelfLife',
- },
- {
- width: '80px',
- title: '重量/g',
- field: 'weight',
- },
- {
- width: '80px',
- title: '长/cm',
- field: 'length',
- },
- {
- width: '80px',
- title: '宽/cm',
- field: 'width',
- },
- {
- width: '80px',
- title: '高/cm',
- field: 'height',
- },
- {
- width: '90px',
- title: '体积/cm³',
- field: 'volume',
- },
- {
- width: 70,
- title: '操作',
- action: true,
- plugins: [{
- icon: 'el-icon-edit',
- name: '编辑',
- audit: '',
- event: {
- click: (item : any) => {
- (this as any).openEdit(item)
- }
- }
- }]
- }]
- },
- }
- mounted() {
- this.timer = setInterval(() => {
- this.getDataList();
- this.initTable();
- }, 300)
- }
- // 计算高度
- initTable() {
- if (!this.$refs.moduleView) {
- this.calculateCount++;
- if (this.calculateCount > 5) return;
- setTimeout(() => {
- this.initTable()
- }, 500)
- return
- }
- let tableId : any = (this as any).$refs.moduleView.tableID;
- this.config.table.attr.height = window.innerHeight - 300;
- (this as any).$refs.moduleView.$refs[tableId].recalculate();
- }
- // 保存
- doFormData() {
- let data : any = (this as any).$refs.addFormId.getValue()
- if (!data[0].financialCode) return this.$message.warning('财务编号不能为空');
- api.updateList(data[0], 'maindataMaterialSku').then((res : any) => {
- if (res.code === 200) {
- this.$message.success('编辑成功');
- this.isShow = 'home';
- this.getDataList();
- } else this.$message.error(res.msg);
- })
- }
- // 获取列表数据
- getDataList() {
- if (!this.$refs.moduleView) {
- if (this.timeNum > 5) {
- clearInterval(this.timer)
- }
- this.timeNum++;
- return
- }
- clearInterval(this.timer)
- let query = (this.$refs.moduleView as any).getQuery();
- // console.log('表单字段 ==> ', query);
- this.getPageList(query)
- }
- getPageList(query : any) {
- let loading = this.$loading({ target: '.main-container' });
- api.pageList(query, 'maindataMaterialSku').then((res : any) => {
- loading.close();
- if (res.code === 200) {
- (this.$refs.moduleView as any).setTableValue(res.data.records);
- let page = {
- pageNo: res.data.current, //当前页
- pageSize: res.data.size, //每页条数
- total: res.data.total //总条数
- };
- (this.$refs.moduleView as any).setPage(page);
- } else this.$message.error(res.msg);
- }).catch(() => loading.close());
- }
- // 打开编辑
- openEdit(e : any) {
- let loading = this.$loading({ target: '.main-container' });
- api.single({ id: e.id }, 'maindataMaterialSku').then((res : any) => {
- loading.close();
- if (res.code === 200) {
- this.isShow = 'add';
- setTimeout(() => { (this as any).$refs.addFormId.setValue([res.data]) }, 0);
- } else loading.close();
- }).catch(() => loading.close());
- }
- // 内页工具栏方法
- insideTools(e : any) {
- if (e === 'onReturn') this.isShow = 'home';
- if (e === 'onSave') this.doFormData();
- }
- // 刷新/重置
- onRefresh() {
- (this as any).$refs.moduleView.clearSearch();
- this.getDataList();
- }
- }
- </script>
- <style lang="scss" scoped>
- .my-container {
- width: 100%;
- box-sizing: border-box;
- display: flex;
- height: 100%;
- .bill-left {
- position: relative;
- border-right: solid #EEE 1px;
- padding-right: 16px;
- flex-shrink: 0;
- .bill-tab {
- width: 150px;
- height: 100%;
- transition: all .5s;
- overflow: hidden;
- }
- .tab-title {
- font-size: 16px;
- padding-bottom: 16px;
- width: 200px;
- }
- }
- .bill-main {
- width: calc(100% - 16px);
- box-sizing: border-box;
- margin-left: 16px;
- position: relative;
- }
- .detil {
- width: 100%;
- .box-shadow {
- box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
- padding: 20px;
- border-radius: 4px;
- border: 1px solid #e6ebf5;
- background-color: #fff;
- overflow: hidden;
- color: #303133;
- -webkit-transition: .3s;
- transition: .3s;
- margin-top: 20px;
- }
- }
- @media screen and (min-width: 1700px) {
- .bill-main {
- min-width: 1450px;
- }
- }
- }
- </style>
|