|
@@ -129,46 +129,45 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ </div>
|
|
|
+ <div class="flex items-center btn-group mb-4 ml-36">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="search"
|
|
|
+ >
|
|
|
+ {{ $t('btn_search') }}
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ @click="create"
|
|
|
+ >
|
|
|
+ {{ $t(prefix + 'btn_new_indent') }}
|
|
|
+ </el-button>
|
|
|
|
|
|
- <div class="flex items-center btn-group">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- @click="search"
|
|
|
- >
|
|
|
- {{ $t('btn_search') }}
|
|
|
- </el-button>
|
|
|
- <el-button
|
|
|
- type="success"
|
|
|
- @click="create"
|
|
|
- >
|
|
|
- {{ $t(prefix + 'btn_new_indent') }}
|
|
|
- </el-button>
|
|
|
-
|
|
|
- <el-button
|
|
|
- :disabled="checkedQuotes.length < 1"
|
|
|
- type="primary"
|
|
|
- @click="quota"
|
|
|
- >
|
|
|
- {{ $t(prefix + 'btn_quote') }}
|
|
|
- </el-button>
|
|
|
- <el-button
|
|
|
- :disabled="checkedIndent.length < 1 && checkedQuotes.length < 1"
|
|
|
- type="danger"
|
|
|
- @click="onDeleteIndent"
|
|
|
- >
|
|
|
- {{ $t('btn_delete') }}
|
|
|
- </el-button>
|
|
|
- <el-button @click="reset">
|
|
|
- {{ $t('btn_reset') }}
|
|
|
- </el-button>
|
|
|
- <span> </span>
|
|
|
- <el-button
|
|
|
- type="warning"
|
|
|
- @click="componentFreightVisible = true"
|
|
|
- >
|
|
|
- {{ $t(prefix + 'btn_set_freight') }}
|
|
|
- </el-button>
|
|
|
- </div>
|
|
|
+ <el-button
|
|
|
+ :disabled="checkedQuotes.length < 1"
|
|
|
+ type="primary"
|
|
|
+ @click="quota"
|
|
|
+ >
|
|
|
+ {{ $t(prefix + 'btn_quote') }}
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ :disabled="checkedIndent.length < 1 && checkedQuotes.length < 1"
|
|
|
+ type="danger"
|
|
|
+ @click="onDeleteIndent"
|
|
|
+ >
|
|
|
+ {{ $t('btn_delete') }}
|
|
|
+ </el-button>
|
|
|
+ <el-button @click="reset">
|
|
|
+ {{ $t('btn_reset') }}
|
|
|
+ </el-button>
|
|
|
+ <span> </span>
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ @click="componentFreightVisible = true"
|
|
|
+ >
|
|
|
+ {{ $t(prefix + 'btn_set_freight') }}
|
|
|
+ </el-button>
|
|
|
</div>
|
|
|
</el-form>
|
|
|
|