| | |
| | | const totalRecords = ref(0) |
| | | const configValue = ref('') |
| | | const isEnable = ref('') |
| | | const configValuesearch = ref('') |
| | | const isEnablesearch = ref('') |
| | | const listByUserName = async () => { |
| | | try { |
| | | const response = await request.post('/loadGlass/sys/sysConfig/queryConfigPage',{ |
| | |
| | | pageSize: 10, |
| | | configName: configName.value, |
| | | configCode: configCode.value, |
| | | configValue: configValue.value, |
| | | // isEnable: isEnable.value |
| | | isEnable: isEnable.value !== '' ? isEnable.value : -1, |
| | | configValue: configValuesearch.value, |
| | | isEnable: isEnablesearch.value !== '' ? isEnablesearch.value : -1, |
| | | |
| | | }); |
| | | if (response.code === 200) { |
| | |
| | | <div style="display: flex;width: 1770px;"> |
| | | <el-input v-model="configName" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" :placeholder="$t('productStock.configName')" /> |
| | | <el-input v-model="configCode" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" @input="handleInputa" :placeholder="$t('productStock.configCode')" /> |
| | | <el-input v-model="configValue" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" @input="handleInputb" :placeholder="$t('productStock.configValue')" /> |
| | | <el-select v-model="isEnable" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" :placeholder="$t('sorter.startstatus')"> |
| | | <el-input v-model="configValuesearch" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" @input="handleInputb" :placeholder="$t('productStock.configValue')" /> |
| | | <el-select v-model="isEnablesearch" clearable style="margin-left: 10px;margin-bottom: 10px;width: 200px;" :placeholder="$t('sorter.startstatus')"> |
| | | <el-option :label="$t('sorter.start')" value="1"></el-option> |
| | | <el-option :label="$t('sorter.disable')" value="0"></el-option> |
| | | </el-select> |