|
@@ -30,6 +30,7 @@
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="销售类型" prop="saleType">
|
|
|
<el-radio-group v-model="formData.saleType" disabled>
|
|
|
+ <el-radio :label="1">商城销售</el-radio>
|
|
|
<el-radio :label="2">线下销售</el-radio>
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
@@ -558,9 +559,9 @@ export default {
|
|
|
operation() {
|
|
|
return this.operationBtn({
|
|
|
edit: {
|
|
|
- // conditions: ({ row, index, column }) => {
|
|
|
- // return row.examineStatus != 'OK'
|
|
|
- // },
|
|
|
+ conditions: ({ row, index, column }) => {
|
|
|
+ return row.status == 'IN'
|
|
|
+ },
|
|
|
btnType: 'text',
|
|
|
click: ({ row, index, column }) => {
|
|
|
this.openForm('edit', row.id)
|