Commit 4f74d127 by liangjianmin

feat(orderTrack): add contract type selection and display in goods detail component

- Introduced a new form item for selecting contract type, allowing users to filter by "全部", "人工上传", and "电子签".
- Added a new column to the table to display the selected contract type, enhancing data visibility.
- Updated the data model to include the contract type property for improved tracking and management.
parent fb6e9a8e
Showing with 9 additions and 0 deletions
...@@ -42,6 +42,13 @@ ...@@ -42,6 +42,13 @@
<el-option label="已签署" value="3"></el-option> <el-option label="已签署" value="3"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="合同类型" prop="contract_type">
<el-select v-model="formInline.contract_type" placeholder="请选择">
<el-option label="全部" value=""></el-option>
<el-option label="人工上传" value="1"></el-option>
<el-option label="电子签" value="2"></el-option>
</el-select>
</el-form-item>
<el-form-item label="报价单号" prop="quote_sn"> <el-form-item label="报价单号" prop="quote_sn">
<el-input v-model="formInline.quote_sn" placeholder="请输入报价单号" @keyup.enter.native="submit" style="width: 193px;"></el-input> <el-input v-model="formInline.quote_sn" placeholder="请输入报价单号" @keyup.enter.native="submit" style="width: 193px;"></el-input>
</el-form-item> </el-form-item>
...@@ -133,6 +140,7 @@ ...@@ -133,6 +140,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="sign_status_val" label="电子合同签署状态" width="120" align="center"></el-table-column> <el-table-column prop="sign_status_val" label="电子合同签署状态" width="120" align="center"></el-table-column>
<el-table-column prop="contract_type_val" label="合同类型" width="80" align="center"></el-table-column>
<el-table-column prop="buyer_name" label="订单人员" width="100" align="center"> <el-table-column prop="buyer_name" label="订单人员" width="100" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-popover placement="bottom" title="订单人员" width="200" trigger="hover"> <el-popover placement="bottom" title="订单人员" width="200" trigger="hover">
...@@ -278,6 +286,7 @@ ...@@ -278,6 +286,7 @@
status: '', status: '',
pay_status: '', pay_status: '',
sign_status: '', sign_status: '',
contract_type: '',
inquiry_sn: '', inquiry_sn: '',
quote_sn: '', quote_sn: '',
source_type: '', source_type: '',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment