ソースを参照

成本模型详情

yuhan 1 年間 前
コミット
07ba2c5069

+ 1 - 1
src/views/module_kzks/costModelClPrice/CostModelClPriceList.vue

@@ -43,7 +43,7 @@
 
     <!-- 操作按钮区域 -->
     <div class="table-operator">
-      <!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> -->
+      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
       <a-button type="primary" icon="download" @click="handleExportXls('材料价格库')">导出</a-button>
       <!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
         <a-button type="primary" icon="import">导入</a-button>

+ 63 - 8
src/views/module_kzks/costModelList/CostModelList.vue

@@ -62,6 +62,10 @@
         class="j-table-force-nowrap"
         @change="handleTableChange">
 
+        <span slot="taskmoney" slot-scope="text, record">
+          <a-button type="link" @click="detailClick(text,record,'taskmoney','已收款')" :style="{color: (record.children || record.id === 'amount') ? 'rgba(0,0,0,.65)' : ''}">{{(Number(text)/10000).toFixed(2)}}</a-button>
+        </span>
+
         <template slot="htmlSlot" slot-scope="text">
           <div v-html="text"></div>
         </template>
@@ -125,6 +129,8 @@
       <j-select-user-by-dep placeholder="请选择消息接收方" v-model="receiver">1111</j-select-user-by-dep>
     </j-modal>
 
+    <cost-model-detail-modal ref="costModelListModal"></cost-model-detail-modal>
+
   </a-card>
 </template>
 
@@ -135,12 +141,14 @@
   import { JeecgListMixin } from '@/mixins/JeecgListMixin'
   import CostModelListModal from './modules/CostModelListModal'
   import { costModelInform, exportXlsCbmxItem } from '@/api/kzksApi.js'
+import CostModelDetailModal from './modulesDetail/CostModelDetailModal.vue'
 
   export default {
     name: 'CostModelListList',
     mixins:[JeecgListMixin, mixinDevice],
     components: {
-      CostModelListModal
+      CostModelListModal,
+      CostModelDetailModal
     },
     data () {
       return {
@@ -184,17 +192,23 @@
               {
                 title:'最大值',
                 align:"center",
-                dataIndex: 'maxWxf'
+                dataIndex: 'maxWxf',
+                scopedSlots: {
+                  customRender: 'maxWxf',
+                },
+                // customCell: this.getClickColumn,
               },
               {
                 title:'最小值',
                 align:"center",
-                dataIndex: 'minWxf'
+                dataIndex: 'minWxf',
+                // customCell: this.getClickColumn,
               },
               {
                 title:'平均值',
                 align:"center",
-                dataIndex: 'aveWxf'
+                dataIndex: 'aveWxf',
+                // customCell: this.getClickColumn,
               },
             ],
           },
@@ -205,22 +219,26 @@
               {
                 title:'最大值',
                 align:"center",
-                dataIndex: 'maxClf'
+                dataIndex: 'maxClf',
+                // customCell: this.getClickColumn,
               },
               {
                 title:'最小值',
                 align:"center",
-                dataIndex: 'minClf'
+                dataIndex: 'minClf',
+                // customCell: this.getClickColumn,
               },
               {
                 title:'平均值',
                 align:"center",
-                dataIndex: 'aveClf'
+                dataIndex: 'aveClf',
+                // customCell: this.getClickColumn,
               },
               {
                 title:'近期值',
                 align:"center",
-                dataIndex: 'recentClf'
+                dataIndex: 'recentClf',
+                // customCell: this.getClickColumn,
               },
             ],
           },
@@ -314,6 +332,43 @@
       },
     },
     methods: {
+      getClickColumn(record, index){
+        return {
+          style: {
+            'color': '#1890ff',
+            'cursor': 'pointer',
+          },
+          on: {
+            click: (event)=> {
+              // 没有值不弹窗
+              if(!event.target.textContent){
+                return
+              }
+              // console.log(record, index, event, event.target.cellIndex)
+              // console.log(this.columns[event.target.cellIndex - 1])
+              // var clickColumn = this.columns[event.target.cellIndex - 1].dataIndex
+              console.log(event.target.cellIndex - 1)
+              // var title = this.columns[event.target.cellIndex - 1].title
+              // this.$refs.proCostDetail.taskno = record.taskno
+              // if(record.status === '1'){
+              //   // 批产参数
+              //   this.$refs.proCostDetail.pichanInfo = {
+              //     pccode: record.pccode,
+              //     proportion: record.proportion,
+              //     columnValue: clickColumn,
+              //   }
+              //   this.$refs.proCostDetail.columnValue = 'pichanTask'
+              //   this.$refs.proCostDetail.title = title + '批产明细'
+              // } else {
+              //   this.$refs.proCostDetail.columnValue = clickColumn
+              //   this.$refs.proCostDetail.title =  title + '明细'
+              // }
+              // console.log(this.$refs.proCostDetail.columnValue)
+              // this.$refs.costModelListModal.show()
+            },
+          }
+        }
+      },
       handleInform(record){
         console.log(record)
         this.inform.id = record.id

+ 51 - 0
src/views/module_kzks/costModelList/modulesDetail/CostModelDetailModal.vue

@@ -0,0 +1,51 @@
+<template>
+  <j-modal
+    :title="title"
+    :width="width"
+    :visible="visible"
+    switchFullscreen
+    :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
+    cancelText="关闭"
+    @cancel="handleCancel">
+    <!-- 合同 -->
+    <!-- <contract-detail-list v-if="columnValue === 'contractfpe'" :taskno="taskno"></contract-detail-list> -->
+
+    <template slot="footer">
+      <a-button @click="handleCancel">关闭</a-button>
+    </template>
+  </j-modal>
+</template>
+
+<script>
+// import ContractDetailList from './ContractDetailList.vue'
+
+  export default {
+    name: 'ProjectCostModal',
+    components: {
+      // ContractDetailList,
+    },
+    data () {
+      return {
+        taskno: '',
+        columnValue: '',
+        pichanInfo: {},
+        title:'',
+        width: '60%',
+        visible: false,
+        disableSubmit: false
+      }
+    },
+    methods: {
+      show() {
+        this.visible = true
+      },
+      close () {
+        this.$emit('close');
+        this.visible = false;
+      },
+      handleCancel () {
+        this.close()
+      },
+    }
+  }
+</script>

+ 321 - 0
src/views/module_kzks/costModelList/modulesDetail/CostModelXmxqClList.vue

@@ -0,0 +1,321 @@
+<template>
+  <a-card :bordered="false">
+    <!-- 查询区域 -->
+    <div class="table-page-search-wrapper">
+      <a-form layout="inline" @keyup.enter.native="searchQuery">
+        <a-row :gutter="24">
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="物料编码">
+              <a-input placeholder="请输入物料编码" v-model="queryParam.wlbm"></a-input>
+            </a-form-item>
+          </a-col>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="规格型号">
+              <a-input placeholder="请输入规格型号" v-model="queryParam.ggxh"></a-input>
+            </a-form-item>
+          </a-col>
+          <template v-if="toggleSearchStatus">
+            <a-col :xl="6" :lg="7" :md="8" :sm="24">
+              <a-form-item label="质量等级">
+                <a-input placeholder="请输入质量等级" v-model="queryParam.zlLevel"></a-input>
+              </a-form-item>
+            </a-col>
+            <a-col :xl="6" :lg="7" :md="8" :sm="24">
+              <a-form-item label="批次">
+                <a-input placeholder="请输入批次" v-model="queryParam.pici"></a-input>
+              </a-form-item>
+            </a-col>
+          </template>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
+              <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
+              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
+              <a @click="handleToggleSearch" style="margin-left: 8px">
+                {{ toggleSearchStatus ? '收起' : '展开' }}
+                <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
+              </a>
+            </span>
+          </a-col>
+        </a-row>
+      </a-form>
+    </div>
+    <!-- 查询区域-END -->
+
+    <!-- 操作按钮区域 -->
+    <div class="table-operator">
+      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
+      <a-button type="primary" icon="download" @click="handleExportXls('项目材料导入详情')">导出</a-button>
+      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
+        <a-button type="primary" icon="import">导入</a-button>
+      </a-upload>
+      <!-- 高级查询区域 -->
+      <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
+      <a-dropdown v-if="selectedRowKeys.length > 0">
+        <a-menu slot="overlay">
+          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
+        </a-menu>
+        <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
+      </a-dropdown>
+    </div>
+
+    <!-- table区域-begin -->
+    <div>
+      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
+        <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
+        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
+      </div>
+
+      <a-table
+        ref="table"
+        size="middle"
+        :scroll="{x:true}"
+        bordered
+        rowKey="id"
+        :columns="columns"
+        :dataSource="dataSource"
+        :pagination="ipagination"
+        :loading="loading"
+        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
+        class="j-table-force-nowrap"
+        @change="handleTableChange">
+
+        <template slot="htmlSlot" slot-scope="text">
+          <div v-html="text"></div>
+        </template>
+        <template slot="imgSlot" slot-scope="text,record">
+          <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
+          <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
+        </template>
+        <template slot="fileSlot" slot-scope="text">
+          <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
+          <a-button
+            v-else
+            :ghost="true"
+            type="primary"
+            icon="download"
+            size="small"
+            @click="downloadFile(text)">
+            下载
+          </a-button>
+        </template>
+
+        <span slot="action" slot-scope="text, record">
+          <a @click="handleEdit(record)">编辑</a>
+
+          <a-divider type="vertical" />
+          <a-dropdown>
+            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
+            <a-menu slot="overlay">
+              <a-menu-item>
+                <a @click="handleDetail(record)">详情</a>
+              </a-menu-item>
+              <a-menu-item>
+                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
+                  <a>删除</a>
+                </a-popconfirm>
+              </a-menu-item>
+            </a-menu>
+          </a-dropdown>
+        </span>
+
+      </a-table>
+    </div>
+
+  </a-card>
+</template>
+
+<script>
+
+  import '@/assets/less/TableExpand.less'
+  import { mixinDevice } from '@/utils/mixin'
+  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+
+  export default {
+    name: 'CostModelXmxqClList',
+    mixins:[JeecgListMixin, mixinDevice],
+    components: {
+      // CostModelXmxqClModal
+    },
+    data () {
+      return {
+        description: '项目材料导入详情管理页面',
+        // 表头
+        columns: [
+          {
+            title: '#',
+            dataIndex: '',
+            key:'rowIndex',
+            width:60,
+            align:"center",
+            customRender:function (t,r,index) {
+              return parseInt(index)+1;
+            }
+          },
+          {
+            title:'项目ID',
+            align:"center",
+            dataIndex: 'xiangmuId'
+          },
+          {
+            title:'项目名称',
+            align:"center",
+            dataIndex: 'xiangmuName'
+          },
+          {
+            title:'物料编码',
+            align:"center",
+            dataIndex: 'wlbm'
+          },
+          {
+            title:'规格型号',
+            align:"center",
+            dataIndex: 'ggxh'
+          },
+          {
+            title:'质量等级',
+            align:"center",
+            dataIndex: 'zlLevel'
+          },
+          {
+            title:'批次',
+            align:"center",
+            dataIndex: 'pici'
+          },
+          {
+            title:'采购日期',
+            align:"center",
+            dataIndex: 'caigouTime',
+            customRender:function (text) {
+              return !text?"":(text.length>10?text.substr(0,10):text)
+            }
+          },
+          {
+            title:'数量',
+            align:"center",
+            dataIndex: 'number'
+          },
+          {
+            title:'单价',
+            align:"center",
+            children: [
+              {
+                title:'最大值',
+                align:"center",
+                dataIndex: 'maxDanjia'
+              },
+              {
+                title:'最小值',
+                align:"center",
+                dataIndex: 'minDanjia'
+              },
+              {
+                title:'平均值',
+                align:"center",
+                dataIndex: 'aveDanjia'
+              },
+              {
+                title:'近期值',
+                align:"center",
+                dataIndex: 'recentDanjia'
+              },
+            ],
+          },
+          {
+            title:'价格',
+            align:"center",
+            children: [
+              {
+                title:'最大值',
+                align:"center",
+                dataIndex: 'maxPrice'
+              },
+              {
+                title:'最小值',
+                align:"center",
+                dataIndex: 'minPrice'
+              },
+              {
+                title:'平均值',
+                align:"center",
+                dataIndex: 'avePrice'
+              },
+              {
+                title:'近期值',
+                align:"center",
+                dataIndex: 'recentPrice'
+              },
+            ],
+          },
+          // {
+          //   title:'单价',
+          //   align:"center",
+          //   dataIndex: 'danjia'
+          // },
+          // {
+          //   title:'数量',
+          //   align:"center",
+          //   dataIndex: 'number'
+          // },
+          // {
+          //   title:'价格(单价*数量)',
+          //   align:"center",
+          //   dataIndex: 'price'
+          // },
+          // {
+          //   title:'材料费类型',
+          //   align:"center",
+          //   dataIndex: 'clfType'
+          // },
+          {
+            title: '操作',
+            dataIndex: 'action',
+            align:"center",
+            fixed:"right",
+            width:147,
+            scopedSlots: { customRender: 'action' }
+          }
+        ],
+        url: {
+          list: "/costModelXmxqCl/costModelXmxqCl/list",
+          delete: "/costModelXmxqCl/costModelXmxqCl/delete",
+          deleteBatch: "/costModelXmxqCl/costModelXmxqCl/deleteBatch",
+          exportXlsUrl: "/costModelXmxqCl/costModelXmxqCl/exportXls",
+          importExcelUrl: "costModelXmxqCl/costModelXmxqCl/importExcel",
+          
+        },
+        dictOptions:{},
+        superFieldList:[],
+      }
+    },
+    created() {
+    this.getSuperFieldList();
+    },
+    computed: {
+      importExcelUrl: function(){
+        return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
+      },
+    },
+    methods: {
+      initDictConfig(){
+      },
+      getSuperFieldList(){
+        let fieldList=[];
+        fieldList.push({type:'string',value:'xiangmuId',text:'项目ID',dictCode:''})
+        fieldList.push({type:'string',value:'xiangmuName',text:'项目名称',dictCode:''})
+        fieldList.push({type:'string',value:'wlbm',text:'物料编码',dictCode:''})
+        fieldList.push({type:'string',value:'ggxh',text:'规格型号',dictCode:''})
+        fieldList.push({type:'string',value:'zlLevel',text:'质量等级',dictCode:''})
+        fieldList.push({type:'string',value:'pici',text:'批次',dictCode:''})
+        fieldList.push({type:'date',value:'caigouTime',text:'采购日期'})
+        fieldList.push({type:'string',value:'danjia',text:'单价',dictCode:''})
+        fieldList.push({type:'string',value:'number',text:'数量',dictCode:''})
+        fieldList.push({type:'string',value:'price',text:'价格(单价*数量)',dictCode:''})
+        fieldList.push({type:'string',value:'clfType',text:'材料费类型',dictCode:''})
+        this.superFieldList = fieldList
+      }
+    }
+  }
+</script>
+<style scoped>
+  @import '~@assets/less/common.less';
+</style>

+ 281 - 0
src/views/module_kzks/costModelList/modulesDetail/CostModelXmxqWxList.vue

@@ -0,0 +1,281 @@
+<template>
+  <a-card :bordered="false">
+    <!-- 查询区域 -->
+    <div class="table-page-search-wrapper">
+      <a-form layout="inline" @keyup.enter.native="searchQuery">
+        <a-row :gutter="24">
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="外协项目">
+              <a-input placeholder="请输入外协项目" v-model="queryParam.wxProject"></a-input>
+            </a-form-item>
+          </a-col>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="外协单位">
+              <a-input placeholder="请输入外协单位" v-model="queryParam.wxCompany"></a-input>
+            </a-form-item>
+          </a-col>
+          <template v-if="toggleSearchStatus">
+            <a-col :xl="6" :lg="7" :md="8" :sm="24">
+              <a-form-item label="计量单位">
+                <a-input placeholder="请输入计量单位" v-model="queryParam.unit"></a-input>
+              </a-form-item>
+            </a-col>
+          </template>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
+              <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
+              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
+              <a @click="handleToggleSearch" style="margin-left: 8px">
+                {{ toggleSearchStatus ? '收起' : '展开' }}
+                <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
+              </a>
+            </span>
+          </a-col>
+        </a-row>
+      </a-form>
+    </div>
+    <!-- 查询区域-END -->
+
+    <!-- 操作按钮区域 -->
+    <div class="table-operator">
+      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
+      <a-button type="primary" icon="download" @click="handleExportXls('项目外协导入详情')">导出</a-button>
+      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
+        <a-button type="primary" icon="import">导入</a-button>
+      </a-upload>
+      <!-- 高级查询区域 -->
+      <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
+      <a-dropdown v-if="selectedRowKeys.length > 0">
+        <a-menu slot="overlay">
+          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
+        </a-menu>
+        <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
+      </a-dropdown>
+    </div>
+
+    <!-- table区域-begin -->
+    <div>
+      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
+        <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
+        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
+      </div>
+
+      <a-table
+        ref="table"
+        size="middle"
+        :scroll="{x:true}"
+        bordered
+        rowKey="id"
+        :columns="columns"
+        :dataSource="dataSource"
+        :pagination="ipagination"
+        :loading="loading"
+        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
+        class="j-table-force-nowrap"
+        @change="handleTableChange">
+
+        <template slot="htmlSlot" slot-scope="text">
+          <div v-html="text"></div>
+        </template>
+        <template slot="imgSlot" slot-scope="text,record">
+          <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
+          <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
+        </template>
+        <template slot="fileSlot" slot-scope="text">
+          <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
+          <a-button
+            v-else
+            :ghost="true"
+            type="primary"
+            icon="download"
+            size="small"
+            @click="downloadFile(text)">
+            下载
+          </a-button>
+        </template>
+
+        <span slot="action" slot-scope="text, record">
+          <a @click="handleEdit(record)">编辑</a>
+
+          <a-divider type="vertical" />
+          <a-dropdown>
+            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
+            <a-menu slot="overlay">
+              <a-menu-item>
+                <a @click="handleDetail(record)">详情</a>
+              </a-menu-item>
+              <a-menu-item>
+                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
+                  <a>删除</a>
+                </a-popconfirm>
+              </a-menu-item>
+            </a-menu>
+          </a-dropdown>
+        </span>
+
+      </a-table>
+    </div>
+
+    <!-- <cost-model-xmxq-wx-modal ref="modalForm" @ok="modalFormOk"></cost-model-xmxq-wx-modal> -->
+  </a-card>
+</template>
+
+<script>
+
+  import '@/assets/less/TableExpand.less'
+  import { mixinDevice } from '@/utils/mixin'
+  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+  // import CostModelXmxqWxModal from './modules/CostModelXmxqWxModal'
+
+  export default {
+    name: 'CostModelXmxqWxList',
+    mixins:[JeecgListMixin, mixinDevice],
+    components: {
+      // CostModelXmxqWxModal
+    },
+    data () {
+      return {
+        description: '项目外协导入详情管理页面',
+        // 表头
+        columns: [
+          {
+            title: '#',
+            dataIndex: '',
+            key:'rowIndex',
+            width:60,
+            align:"center",
+            customRender:function (t,r,index) {
+              return parseInt(index)+1;
+            }
+          },
+          {
+            title:'项目ID',
+            align:"center",
+            dataIndex: 'xiangmuId'
+          },
+          {
+            title:'项目名称',
+            align:"center",
+            dataIndex: 'xiangmuName'
+          },
+          {
+            title:'外协项目',
+            align:"center",
+            dataIndex: 'wxProject'
+          },
+          {
+            title:'外协单位',
+            align:"center",
+            dataIndex: 'wxCompany'
+          },
+          {
+            title:'计量单位',
+            align:"center",
+            dataIndex: 'unit'
+          },
+          {
+            title:'数量',
+            align:"center",
+            dataIndex: 'number'
+          },
+          // {
+          //   title:'价格(单价*数量)',
+          //   align:"center",
+          //   dataIndex: 'price'
+          // },
+          {
+            title:'单价(最大值)',
+            align:"center",
+            dataIndex: 'maxDanjia'
+          },
+          {
+            title:'单价(最小值)',
+            align:"center",
+            dataIndex: 'minDanjia'
+          },
+          {
+            title:'单价(平均值)',
+            align:"center",
+            dataIndex: 'aveDanjia'
+          },
+          {
+            title:'单价(近期值)',
+            align:"center",
+            dataIndex: 'recentDanjia'
+          },
+          {
+            title:'价格(最大值)',
+            align:"center",
+            dataIndex: 'maxPrice'
+          },
+          {
+            title:'价格(最小值)',
+            align:"center",
+            dataIndex: 'minPrice'
+          },
+          {
+            title:'价格(平均值)',
+            align:"center",
+            dataIndex: 'avePrice'
+          },
+          {
+            title:'价格(近期值)',
+            align:"center",
+            dataIndex: 'recentPrice'
+          },
+          {
+            title:'描述',
+            align:"center",
+            dataIndex: 'remark'
+          },
+          {
+            title: '操作',
+            dataIndex: 'action',
+            align:"center",
+            fixed:"right",
+            width:147,
+            scopedSlots: { customRender: 'action' }
+          }
+        ],
+        url: {
+          list: "/costModelXmxqWx/costModelXmxqWx/list",
+          delete: "/costModelXmxqWx/costModelXmxqWx/delete",
+          deleteBatch: "/costModelXmxqWx/costModelXmxqWx/deleteBatch",
+          exportXlsUrl: "/costModelXmxqWx/costModelXmxqWx/exportXls",
+          importExcelUrl: "costModelXmxqWx/costModelXmxqWx/importExcel",
+          
+        },
+        dictOptions:{},
+        superFieldList:[],
+      }
+    },
+    created() {
+    this.getSuperFieldList();
+    },
+    computed: {
+      importExcelUrl: function(){
+        return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
+      },
+    },
+    methods: {
+      initDictConfig(){
+      },
+      getSuperFieldList(){
+        let fieldList=[];
+        fieldList.push({type:'string',value:'xiangmuId',text:'项目ID',dictCode:''})
+        fieldList.push({type:'string',value:'xiangmuName',text:'项目名称',dictCode:''})
+        fieldList.push({type:'string',value:'wxProject',text:'外协项目',dictCode:''})
+        fieldList.push({type:'string',value:'wxCompany',text:'外协单位',dictCode:''})
+        fieldList.push({type:'string',value:'danjia',text:'单价',dictCode:''})
+        fieldList.push({type:'string',value:'unit',text:'计量单位',dictCode:''})
+        fieldList.push({type:'string',value:'number',text:'数量',dictCode:''})
+        fieldList.push({type:'string',value:'price',text:'价格(单价*数量)',dictCode:''})
+        fieldList.push({type:'string',value:'remark',text:'描述',dictCode:''})
+        this.superFieldList = fieldList
+      }
+    }
+  }
+</script>
+<style scoped>
+  @import '~@assets/less/common.less';
+</style>